From 7cdfc180afe6c3c2e6eb61e81ea77f1f0357b2b6 Mon Sep 17 00:00:00 2001 From: jlamanskygitt Date: Thu, 22 Jan 2026 13:54:05 -0500 Subject: [PATCH 01/10] Removed unused Health Metrics js --- dt-groups/groups.js | 140 -------------------------------------------- 1 file changed, 140 deletions(-) diff --git a/dt-groups/groups.js b/dt-groups/groups.js index 33fb9e340f..b9dabb9893 100644 --- a/dt-groups/groups.js +++ b/dt-groups/groups.js @@ -3,146 +3,6 @@ jQuery(document).ready(function ($) { let post_id = window.detailsSettings.post_id; let post_type = window.detailsSettings.post_type; let post = window.detailsSettings.post_fields; - let field_settings = window.detailsSettings.post_settings.fields; - - /* Health Metrics */ - let health_keys = Object.keys(field_settings.health_metrics.default); - - function fillOutChurchHealthMetrics() { - let practiced_items = - window.detailsSettings.post_fields.health_metrics || []; - - /* Make church commitment circle green */ - if (practiced_items.indexOf('church_commitment') !== -1) { - $('#health-items-container').addClass('committed'); - $('#is-church-switch').prop('checked', true); - } - - /* Color church circle items that are being practiced */ - let items = $('div[id^="icon_"]'); - - items.each(function (k, v) { - if ( - practiced_items.indexOf(v.id.replace('icon_', ''), practiced_items) !== - -1 - ) { - $(this).children('img').attr('class', 'practiced-item'); - } - }); - - /* Color group progress buttons */ - let icons = $('.group-progress-button'); - icons.each(function (k, v) { - if (practiced_items.indexOf(v.id, practiced_items) !== -1) { - $(this).addClass('practiced-button'); - } - }); - } - - fillOutChurchHealthMetrics(); - distributeItems(); - - $('.health-item').on('click', function () { - let fieldId = $(this).attr('id').replace('icon_', ''); - let already_set = window.lodash - .get(post, 'health_metrics', []) - .includes(fieldId); - let update = { values: [{ value: fieldId }] }; - if (already_set) { - update.values[0].delete = true; - } - window.API.update_post(post_type, post_id, { health_metrics: update }) - .then((groupData) => { - post = groupData; - /* Update icon */ - if ($(this).attr('id') === 'church_commitment') { - $('#health-items-container').toggleClass('committed'); - $(this).toggleClass('practiced-button'); - return true; - } - /* Toggle church health circle item color */ - $(this).children('img').toggleClass('practiced-item'); - $(this).children('i').toggleClass('practiced-item'); - }) - .catch((err) => { - console.log(err); - }); - }); - - $('#is-church-switch').on('click', function () { - let fieldId = 'church_commitment'; - let already_set = window.lodash - .get(post, 'health_metrics', []) - .includes(fieldId); - let update = { values: [{ value: fieldId }] }; - if (already_set) { - update.values[0].delete = true; - } - window.API.update_post(post_type, post_id, { health_metrics: update }) - .then((groupData) => { - post = groupData; - /* Update commitment circle */ - $('#health-items-container').toggleClass('committed'); - }) - .catch((err) => { - console.log(err); - }); - }); - - /* Dynamically distribute items in Church Health Circle - according to amount of health metric elements */ - function distributeItems() { - let radius = 75; - let items = $('.health-item'), - container = $('#health-items-container'), - item_count = items.length, - fade_delay = 45, - width = container.width(), - height = container.height() + 66, - angle = 0, - step = (2 * Math.PI) / items.length, - y_offset = -35; - - if (item_count >= 5 && item_count < 7) { - radius = 90; - } - - if ((item_count >= 7) & (item_count < 11)) { - radius = 100; - } - - if (item_count >= 11) { - radius = 110; - } - - if (item_count == 3) { - angle = 22.5; - } - - items.each(function () { - let X = Math.round( - width / 2 + radius * Math.cos(angle) - $(this).width() / 2, - ); - let y = - Math.round( - height / 2 + radius * Math.sin(angle) - $(this).height() / 2, - ) + y_offset; - - if (item_count == 1) { - X = 112.5; - y = 68; - } - - $(this).css({ - left: X + 'px', - top: y + 'px', - }); - $(this).delay(fade_delay).fadeIn(1000, 'linear'); - angle += step; - fade_delay += 45; - }); - } - /* End Health Metrics*/ let { template_dir } = window.wpApiShare; From 95690ffc0fc67514f160e65e9a5b9ae784be4368 Mon Sep 17 00:00:00 2001 From: Brady Lamansky Date: Wed, 17 Jun 2026 10:36:45 -0500 Subject: [PATCH 02/10] replaced list fields w dt_components --- archive-template.php | 303 +++++++++++------------------- dt-assets/js/modular-list-bulk.js | 6 +- dt-assets/js/modular-list.js | 174 +---------------- dt-assets/scss/_list.scss | 7 +- 4 files changed, 124 insertions(+), 366 deletions(-) diff --git a/archive-template.php b/archive-template.php index 2fc56d20e5..cad80b338a 100644 --- a/archive-template.php +++ b/archive-template.php @@ -463,10 +463,16 @@ class="second-bar show-for-small-only center list-actions-bar"> -
- -
- -
- $field_values ): - if ( !empty( $field_values['hidden'] ) ){ - continue; - } - $has_icon = !empty( $field_values['icon'] ) || !empty( $field_values['font-icon'] ); - $option_classes = 'field-search-option' . ( $has_icon ? '' : ' no-icon' ); - ?> -
- - -
- -
-
-
+ $field_values ) { + if ( ! empty( $field_values['hidden'] ) ) { + continue; + } + $field_search_options[ $field_key ] = [ + 'label' => $field_values['name'] ?? $field_key, + 'icon' => $field_values['font-icon'] ?? $field_values['icon'] ?? '', + 'color' => $field_values['color'] ?? null, + ]; + } + ?> - -
- -
- - - - - - - - - - - - - - + +
+ +
+ [ + 'name' => 'field_search_input', + 'type' => 'multi_select', + 'display' => 'typeahead', + 'default' => $field_search_options, + ], + ], [ 'field_search_input' => $enabled_fields ], [ + 'hide_label' => true, + 'placeholder' => __( 'Search for fields to add...', 'disciple_tools' ), + ] ); ?> +
-
- - - @@ -972,137 +957,75 @@ class="loading-spinner">
+
- $field ) : - $is_multi_select = isset( $field_options[$field] ) && ( in_array( $field_options[$field]['type'], [ 'multi_select', 'tags' ] ) ); - if ( isset( $field_options[$field] ) && ( $field_options[$field]['type'] === 'connection' || $field_options[$field]['type'] === 'location' || $field_options[$field]['type'] === 'location_meta' || $field_options[$field]['type'] === 'user_select' || $is_multi_select ) ) : ?> -
-
-
- -
-
-
- - - -
-
-
-
- -

- - -

- - -

- -

- -
- - -
-
-
- -
- -
- $option_value ) : - $label = $option_value['label'] ?? ''; - if ( empty( $label ) && ( $option_key === '' || $option_key === 'none' ) ){ - $label = esc_html__( 'None Set', 'disciple_tools' ); - } - ?> -
- -
- - -
- -
-
- -
- - - - -
- - - - - - -

- - - - -

- -

+ $field ) : ?> +

+
+
+ $field_options[$field] ], [], [] ); + break; + case 'multi_select': + DT_Components::render_multi_select( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'tags': + DT_Components::render_tags( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'user_select': + DT_Components::render_user_select( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'connection': + DT_Components::render_connection( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'location': + DT_Components::render_location( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'location_meta': + DT_Components::render_location_meta( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'date': + DT_Components::render_date( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'datetime': + DT_Components::render_datetime( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'boolean': + DT_Components::render_toggle( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'text': + DT_Components::render_text( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'textarea': + DT_Components::render_textarea( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'number': + DT_Components::render_number( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'communication_channel': + DT_Components::render_communication_channel( $field, [ + $field => $field_options[$field] ], [], [] ); + break; + case 'file_upload': + ?>

-

- -
+

Unsupported field type: ' . esc_html( $type ) . '
'; + } + ?>
- - +
diff --git a/dt-assets/js/modular-list-bulk.js b/dt-assets/js/modular-list-bulk.js index ef80392d22..4e4a02f62f 100644 --- a/dt-assets/js/modular-list-bulk.js +++ b/dt-assets/js/modular-list-bulk.js @@ -1617,7 +1617,7 @@ (key) => !selectedFieldKeys.includes(key), ); - // Add newly selected fields + // Add newly selected fields RENDER HERE newlySelected.forEach((fieldKey) => { // Handle special 'comments' field (not a real post field) if (fieldKey === 'comments') { @@ -1805,12 +1805,12 @@ // Build comment HTML with proper spacing let commentHtml = '
'; commentHtml += - ''; + '" style="margin-bottom: 15px;">'; // Add Type selector with proper spacing commentHtml += '
'; diff --git a/dt-assets/js/modular-list.js b/dt-assets/js/modular-list.js index e7961fd3d3..4be2d02c49 100644 --- a/dt-assets/js/modular-list.js +++ b/dt-assets/js/modular-list.js @@ -861,181 +861,10 @@ get_records(0, id); }); - $('#choose_fields_to_show_in_table').on('click', function () { - $('#list_column_picker').toggle(); - }); - // Enhanced Field Selection UI - // Store original dropdown content for restoration after "no results" message - const originalDropdownContent = $('#field_search_dropdown').html(); - - // Show dropdown on focus - $('#field_search_input').on('focus', function () { - showFieldDropdown(); - }); - - // Field search functionality - filters dropdown options based on user input - $('#field_search_input').on('input', function () { - const searchTerm = $(this).val().toLowerCase(); - - if (searchTerm.length === 0) { - // Show all available options when search is empty - showFieldDropdown(); - return; - } - - filterFieldDropdown(searchTerm); - }); - - function showFieldDropdown() { - const dropdown = $('#field_search_dropdown'); - - // Restore original content if it was replaced with "no results" message - if (!dropdown.find('.field-search-option').length) { - dropdown.html(originalDropdownContent); - } - - const options = dropdown.find('.field-search-option'); - const selectedFields = JSON.parse( - $('#selected_fields_input').val() || '[]', - ); - let hasVisibleOptions = false; - - // Show all options that aren't already selected - options.each(function () { - const fieldKey = $(this).data('field-key'); - - if (selectedFields.includes(fieldKey)) { - $(this).hide(); - } else { - $(this).show(); - hasVisibleOptions = true; - } - }); - - if (hasVisibleOptions) { - dropdown.show(); - } else { - dropdown.hide(); - } - } - - function filterFieldDropdown(searchTerm) { - const dropdown = $('#field_search_dropdown'); - - // Restore original content if it was replaced with "no results" message - if (!dropdown.find('.field-search-option').length) { - dropdown.html(originalDropdownContent); - } - - const options = dropdown.find('.field-search-option'); - const selectedFields = JSON.parse( - $('#selected_fields_input').val() || '[]', - ); - let hasVisibleOptions = false; - - options.each(function () { - const fieldName = $(this).data('field-name'); - const fieldKey = $(this).data('field-key'); - - // Hide if already selected - if (selectedFields.includes(fieldKey)) { - $(this).hide(); - return; - } - - // Show/hide based on search term - if ( - fieldName.includes(searchTerm) || - fieldKey.toLowerCase().includes(searchTerm) - ) { - $(this).show(); - hasVisibleOptions = true; - } else { - $(this).hide(); - } - }); - - if (hasVisibleOptions) { - dropdown.show(); - } else { - // Show "no results" message if search term exists but no matches - dropdown - .html('
No fields found
') - .show(); - } - } - - // Handle keyboard navigation - $('#field_search_input').on('keydown', function (e) { - const dropdown = $('#field_search_dropdown'); - if (e.key === 'Escape') { - dropdown.hide(); - $(this).val(''); - } else if (e.key === 'Enter') { - e.preventDefault(); - const firstVisibleOption = dropdown - .find('.field-search-option:visible') - .first(); - if (firstVisibleOption.length) { - firstVisibleOption.click(); - } - } - }); - - // Hide dropdown when clicking outside - $(document).on('click', function (e) { - if ( - !$(e.target).closest('#field_search_input, #field_search_dropdown').length - ) { - $('#field_search_dropdown').hide(); - } - }); - - // Add field when clicking on dropdown option - $(document).on('click', '.field-search-option', function () { - const fieldKey = $(this).data('field-key'); - const fieldName = $(this).find('span').text(); - const fieldIcon = $(this).find('.dt-icon').prop('outerHTML') || ''; - const hasIcon = fieldIcon.length > 0; - const tagClasses = hasIcon - ? 'enabled-field-tag' - : 'enabled-field-tag no-icon'; - - // Add to selected fields - let selectedFields; - try { - selectedFields = JSON.parse($('#selected_fields_input').val() || '[]'); - } catch (e) { - console.error('Error parsing selected fields JSON:', e); - selectedFields = []; - } - if (!selectedFields.includes(fieldKey)) { - selectedFields.push(fieldKey); - $('#selected_fields_input').val(JSON.stringify(selectedFields)); - - // Add visual tag - const tag = ` - ${fieldIcon} - ${window.SHAREDFUNCTIONS.escapeHTML(fieldName)} - - `; - - const container = $('#enabled_fields_container'); - // Remove "no fields selected" message if present - container.find('span:contains("No fields selected")').remove(); - container.append(tag); - } - - // Clear search and close dropdown - $('#field_search_input').val(''); - $('#field_search_dropdown').hide(); - }); - // Remove field when clicking X button $(document).on('click', '.remove-field-btn', function () { const fieldKey = $(this).data('field-key'); - // Remove from selected fields let selectedFields; try { selectedFields = JSON.parse($('#selected_fields_input').val() || '[]'); @@ -1070,7 +899,7 @@ $('#save_column_choices').on('click', function () { let selectedFields; try { - selectedFields = JSON.parse($('#selected_fields_input').val() || '[]'); + selectedFields = $('#field_search_input').val() || '[]'; } catch (e) { console.error('Error parsing selected fields JSON:', e); selectedFields = []; @@ -1084,6 +913,7 @@ window.location.reload(); }); $('#reset_column_choices').on('click', function () { + //sync selected after this, between fields_ and windw. fields_to_show_in_table = []; $('#selected_fields_input').val('[]'); $('#enabled_fields_container').html( diff --git a/dt-assets/scss/_list.scss b/dt-assets/scss/_list.scss index 89f4c40d3d..b11ccab3c8 100644 --- a/dt-assets/scss/_list.scss +++ b/dt-assets/scss/_list.scss @@ -259,9 +259,12 @@ nav.second-bar.show-for-small-only { } .show-closed-switch { - display: inline-block; + display: flex; + justify-content: flex-end; + gap: 0.5rem; .switch { - display: inline-block; + display: flex; + align-items: center; margin-bottom: 0; vertical-align: middle; } From 4259d968c388a5187c1ee7084a16b514d09ebc7b Mon Sep 17 00:00:00 2001 From: Brady Lamansky Date: Wed, 17 Jun 2026 10:43:35 -0500 Subject: [PATCH 03/10] removed unneeded comments --- archive-template.php | 55 ++++++++++++++++++------------- dt-assets/js/modular-list-bulk.js | 2 +- dt-assets/js/modular-list.js | 11 ------- 3 files changed, 33 insertions(+), 35 deletions(-) diff --git a/archive-template.php b/archive-template.php index cad80b338a..2c35a3f6bf 100644 --- a/archive-template.php +++ b/archive-template.php @@ -468,11 +468,7 @@ class="second-bar show-for-small-only center list-actions-bar">
$field ) : ?>
@@ -965,64 +960,78 @@ class="loading-spinner">
$field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'multi_select': DT_Components::render_multi_select( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'tags': DT_Components::render_tags( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'user_select': DT_Components::render_user_select( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'connection': DT_Components::render_connection( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'location': DT_Components::render_location( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'location_meta': DT_Components::render_location_meta( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'date': DT_Components::render_date( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'datetime': DT_Components::render_datetime( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'boolean': DT_Components::render_toggle( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'text': DT_Components::render_text( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'textarea': DT_Components::render_textarea( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'number': DT_Components::render_number( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'communication_channel': DT_Components::render_communication_channel( $field, [ - $field => $field_options[$field] ], [], [] ); + $field => $field_options[$field] + ], [], [] ); break; case 'file_upload': ?>

diff --git a/dt-assets/js/modular-list-bulk.js b/dt-assets/js/modular-list-bulk.js index 4e4a02f62f..60a0c86b5f 100644 --- a/dt-assets/js/modular-list-bulk.js +++ b/dt-assets/js/modular-list-bulk.js @@ -1617,7 +1617,7 @@ (key) => !selectedFieldKeys.includes(key), ); - // Add newly selected fields RENDER HERE + // Add newly selected fields newlySelected.forEach((fieldKey) => { // Handle special 'comments' field (not a real post field) if (fieldKey === 'comments') { diff --git a/dt-assets/js/modular-list.js b/dt-assets/js/modular-list.js index 4be2d02c49..dc2bc52289 100644 --- a/dt-assets/js/modular-list.js +++ b/dt-assets/js/modular-list.js @@ -884,16 +884,6 @@ 'No fields selected', ); } - - // Refresh dropdown if it's currently visible to show the newly available field - if ($('#field_search_dropdown').is(':visible')) { - const searchTerm = $('#field_search_input').val().toLowerCase(); - if (searchTerm.length === 0) { - showFieldDropdown(); - } else { - filterFieldDropdown(searchTerm); - } - } }); $('#save_column_choices').on('click', function () { @@ -913,7 +903,6 @@ window.location.reload(); }); $('#reset_column_choices').on('click', function () { - //sync selected after this, between fields_ and windw. fields_to_show_in_table = []; $('#selected_fields_input').val('[]'); $('#enabled_fields_container').html( From eb85c193504954f617e8cb824a0b55cb52949ed0 Mon Sep 17 00:00:00 2001 From: Brady Lamansky Date: Wed, 17 Jun 2026 10:57:40 -0500 Subject: [PATCH 04/10] misc files --- dt-assets/build/components/index.es.js | 2 +- dt-assets/build/components/index.js | 65 ++++++++++++++---------- dt-assets/build/components/index.umd.cjs | 65 ++++++++++++++---------- dt-assets/build/css/style.min.css | 2 +- dt-assets/build/manifest.json | 48 ++++++++--------- 5 files changed, 100 insertions(+), 82 deletions(-) diff --git a/dt-assets/build/components/index.es.js b/dt-assets/build/components/index.es.js index 30ca6d5751..84237067e4 100644 --- a/dt-assets/build/components/index.es.js +++ b/dt-assets/build/components/index.es.js @@ -1,4 +1,4 @@ -import { F as e, E as s, y as D, C as o, D as l, a as i, b as n, d as r, e as c, f as u, w as p, x as M, B as T, g as x, h as C, i as m, j as S, z as d, k as g, u as B, r as h, t as v, l as A, m as F, n as b, o as L, p as f, A as y, q as G, c as U, v as j } from "./index-DiWMPadv.js"; +import { F as e, E as s, y as D, C as o, D as l, a as i, b as n, d as r, e as c, f as u, w as p, x as M, B as T, g as x, h as C, i as m, j as S, z as d, k as g, u as B, r as h, t as v, l as A, m as F, n as b, o as L, p as f, A as y, q as G, c as U, v as j } from "./index-DuJ43JYq.js"; export { e as ApiService, s as ComponentService, diff --git a/dt-assets/build/components/index.js b/dt-assets/build/components/index.js index 4f8db4a999..45eb5f2751 100644 --- a/dt-assets/build/components/index.js +++ b/dt-assets/build/components/index.js @@ -2747,7 +2747,7 @@ var DtWebComponents=function(x){"use strict";var Mn=Object.defineProperty;var jn var(--dt-form-border-color-alert, var(--alert-color)) ); } - `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` + `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){console.log(this.options);const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` ${this.labelTemplate()}

1||e.key||e.value,()=>h` `,()=>h``)} -
`}renderIcons(){let e=0,t=!1;for(const[a,r]of(this.value||[]).entries())!r.value&&a!==0?e+=1:r.delete&&!t&&(t=!0);let i=.5;t===!1&&(i+=3*e);const o=`padding-block-end: ${i.toString()}rem`;return h` ${this.renderIconInvalid()} ${this.renderError()} @@ -3166,7 +3151,31 @@ var DtWebComponents=function(x){"use strict";var Mn=Object.defineProperty;var jn style="${e}" >`:null}_renderInputFields(){return(!this.value||!this.value.length)&&(this.value=[{verified:!1,value:"",tempKey:Date.now().toString()}]),h` ${H((this.value??[]).filter(e=>!e.delete),e=>e.id,e=>this._inputFieldTemplate(e,this.value.length))} - `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}render(){return h` + `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}labelTemplate(){return this.label?h` + + ${this.icon?null:h``} + ${this.label} + + + + + `:""}render(){return h` ${this.labelTemplate()}
${this._renderInputFields()} ${this.renderIcons()} @@ -4240,4 +4249,4 @@ var DtWebComponents=function(x){"use strict";var Mn=Object.defineProperty;var jn
- `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType,u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const _=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of _)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));return x.ApiService=yi,x.ComponentService=Ie,x.DtAlert=Ao,x.DtBase=N,x.DtButton=_i,x.DtChurchHealthCircle=ho,x.DtConnection=po,x.DtCopyText=bo,x.DtDate=jt,x.DtDatetime=mo,x.DtFileUpload=Eo,x.DtFormBase=P,x.DtIcon=ro,x.DtLabel=no,x.DtLocation=go,x.DtLocationMap=_o,x.DtMapModal=yo,x.DtModal=vo,x.DtMultiSelect=Ze,x.DtMultiSelectButtonGroup=So,x.DtMultiText=zt,x.DtMultiTextGroups=ko,x.DtNumberField=wo,x.DtSingleSelect=$o,x.DtTags=Ce,x.DtText=Ft,x.DtTextArea=xo,x.DtTile=To,x.DtToggle=uo,x.DtUsersConnection=fo,x.version=Va,Object.defineProperty(x,Symbol.toStringTag,{value:"Module"}),x}({}); + `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){console.log("load event");const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{console.log(`Attaching load event to ${i.tagName.toLowerCase()} with name ${i.name||i.getAttribute("name")}`),i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){console.log("get data event");const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType;console.log(t),console.log("Fetching connections with postType:",d,"and query:",o);const u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const _=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of _)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));return x.ApiService=yi,x.ComponentService=Ie,x.DtAlert=Ao,x.DtBase=N,x.DtButton=_i,x.DtChurchHealthCircle=ho,x.DtConnection=po,x.DtCopyText=bo,x.DtDate=jt,x.DtDatetime=mo,x.DtFileUpload=Eo,x.DtFormBase=P,x.DtIcon=ro,x.DtLabel=no,x.DtLocation=go,x.DtLocationMap=_o,x.DtMapModal=yo,x.DtModal=vo,x.DtMultiSelect=Ze,x.DtMultiSelectButtonGroup=So,x.DtMultiText=zt,x.DtMultiTextGroups=ko,x.DtNumberField=wo,x.DtSingleSelect=$o,x.DtTags=Ce,x.DtText=Ft,x.DtTextArea=xo,x.DtTile=To,x.DtToggle=uo,x.DtUsersConnection=fo,x.version=Va,Object.defineProperty(x,Symbol.toStringTag,{value:"Module"}),x}({}); diff --git a/dt-assets/build/components/index.umd.cjs b/dt-assets/build/components/index.umd.cjs index 3a7d9ad02f..6a4100775b 100644 --- a/dt-assets/build/components/index.umd.cjs +++ b/dt-assets/build/components/index.umd.cjs @@ -2747,7 +2747,7 @@ var(--dt-form-border-color-alert, var(--alert-color)) ); } - `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` + `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){console.log(this.options);const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` ${this.labelTemplate()}
1||e.key||e.value,()=>h` `,()=>h``)} -
`}renderIcons(){let e=0,t=!1;for(const[a,r]of(this.value||[]).entries())!r.value&&a!==0?e+=1:r.delete&&!t&&(t=!0);let i=.5;t===!1&&(i+=3*e);const o=`padding-block-end: ${i.toString()}rem`;return h` ${this.renderIconInvalid()} ${this.renderError()} @@ -3166,7 +3151,31 @@ style="${e}" >`:null}_renderInputFields(){return(!this.value||!this.value.length)&&(this.value=[{verified:!1,value:"",tempKey:Date.now().toString()}]),h` ${H((this.value??[]).filter(e=>!e.delete),e=>e.id,e=>this._inputFieldTemplate(e,this.value.length))} - `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}render(){return h` + `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}labelTemplate(){return this.label?h` + + ${this.icon?null:h``} + ${this.label} + + + + + `:""}render(){return h` ${this.labelTemplate()}
${this._renderInputFields()} ${this.renderIcons()} @@ -4240,4 +4249,4 @@
- `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType,u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const w=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of w)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));_.ApiService=yi,_.ComponentService=Ie,_.DtAlert=Ao,_.DtBase=N,_.DtButton=_i,_.DtChurchHealthCircle=ho,_.DtConnection=po,_.DtCopyText=bo,_.DtDate=jt,_.DtDatetime=mo,_.DtFileUpload=Eo,_.DtFormBase=M,_.DtIcon=ro,_.DtLabel=no,_.DtLocation=go,_.DtLocationMap=_o,_.DtMapModal=yo,_.DtModal=vo,_.DtMultiSelect=Ze,_.DtMultiSelectButtonGroup=So,_.DtMultiText=zt,_.DtMultiTextGroups=ko,_.DtNumberField=wo,_.DtSingleSelect=$o,_.DtTags=Ce,_.DtText=Ft,_.DtTextArea=xo,_.DtTile=To,_.DtToggle=uo,_.DtUsersConnection=fo,_.version=Va,Object.defineProperty(_,Symbol.toStringTag,{value:"Module"})}); + `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){console.log("load event");const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{console.log(`Attaching load event to ${i.tagName.toLowerCase()} with name ${i.name||i.getAttribute("name")}`),i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){console.log("get data event");const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType;console.log(t),console.log("Fetching connections with postType:",d,"and query:",o);const u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const w=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of w)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));_.ApiService=yi,_.ComponentService=Ie,_.DtAlert=Ao,_.DtBase=N,_.DtButton=_i,_.DtChurchHealthCircle=ho,_.DtConnection=po,_.DtCopyText=bo,_.DtDate=jt,_.DtDatetime=mo,_.DtFileUpload=Eo,_.DtFormBase=M,_.DtIcon=ro,_.DtLabel=no,_.DtLocation=go,_.DtLocationMap=_o,_.DtMapModal=yo,_.DtModal=vo,_.DtMultiSelect=Ze,_.DtMultiSelectButtonGroup=So,_.DtMultiText=zt,_.DtMultiTextGroups=ko,_.DtNumberField=wo,_.DtSingleSelect=$o,_.DtTags=Ce,_.DtText=Ft,_.DtTextArea=xo,_.DtTile=To,_.DtToggle=uo,_.DtUsersConnection=fo,_.version=Va,Object.defineProperty(_,Symbol.toStringTag,{value:"Module"})}); diff --git a/dt-assets/build/css/style.min.css b/dt-assets/build/css/style.min.css index e02fbf60a2..fc607773b7 100644 --- a/dt-assets/build/css/style.min.css +++ b/dt-assets/build/css/style.min.css @@ -1 +1 @@ -@charset "UTF-8";.image-replacement{overflow:hidden;text-indent:100%;white-space:nowrap}span.amp{font-family:Baskerville,Goudy Old Style,Palatino,Book Antiqua,serif!important;font-style:italic}@media print,screen and (min-width:40em){.reveal,.reveal.large,.reveal.small,.reveal.tiny{left:auto;margin:0 auto;right:auto}}html{line-height:1.15;-webkit-text-size-adjust:100%}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}[data-whatinput=mouse] *,[data-whatinput=mouse] :focus,[data-whatinput=touch] *,[data-whatinput=touch] :focus,[data-whatintent=mouse] *,[data-whatintent=mouse] :focus,[data-whatintent=touch] *,[data-whatintent=touch] :focus{outline:none}[draggable=false]{-webkit-touch-callout:none;-webkit-user-select:none}.foundation-mq{font-family:"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"}html{box-sizing:border-box;font-size:.9375rem}*,:after,:before{box-sizing:inherit}body{background:#fefefe;color:#0a0a0a;font-family:Helvetica,Arial,sans-serif;font-weight:300;line-height:1.5;margin:0;padding:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;height:auto;max-width:100%;vertical-align:middle;-ms-interpolation-mode:bicubic}textarea{border-radius:0;height:auto;min-height:50px}select{box-sizing:border-box;width:100%}.map_canvas embed,.map_canvas img,.map_canvas object,.mqa-display embed,.mqa-display img,.mqa-display object{max-width:none!important}[data-whatinput=mouse] button{outline:0}button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:0;border-radius:0;cursor:auto;line-height:1;padding:0}pre{overflow:auto;-webkit-overflow-scrolling:touch}button,input,optgroup,select,textarea{font-family:inherit}.is-visible{display:block!important}.is-hidden{display:none!important}[type=color],[type=date],[type=datetime-local],[type=datetime],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fefefe;border:1px solid #cacaca;border-radius:0;box-shadow:inset 0 1px 2px #0a0a0a1a;box-sizing:border-box;color:#0a0a0a;display:block;font-family:inherit;font-size:1rem;font-weight:300;height:2.5rem;line-height:1.5;margin:0 0 1.0666666667rem;padding:.5333333333rem;transition:box-shadow .5s,border-color .25s ease-in-out;width:100%}[type=color]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=datetime]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,textarea:focus{background-color:#fefefe;border:1px solid #8a8a8a;box-shadow:0 0 5px #cacaca;outline:none;transition:box-shadow .5s,border-color .25s ease-in-out}textarea{max-width:100%}textarea[rows]{height:auto}input:disabled,input[readonly],textarea:disabled,textarea[readonly]{background-color:#e6e6e6;cursor:not-allowed}[type=button],[type=submit]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:0}input[type=search]{box-sizing:border-box}::-moz-placeholder{color:#cacaca}::placeholder{color:#cacaca}[type=checkbox],[type=file],[type=radio]{margin:0 0 1.0666666667rem}[type=checkbox]+label,[type=radio]+label{display:inline-block;margin-bottom:0;margin-left:.5333333333rem;margin-right:1.0666666667rem;vertical-align:baseline}[type=checkbox]+label[for],[type=radio]+label[for]{cursor:pointer}label>[type=checkbox],label>[type=radio]{margin-right:.5333333333rem}[type=file]{width:100%}label{color:#0a0a0a;display:block;font-size:.9333333333rem;font-weight:300;line-height:1.8;margin:0}label.middle{line-height:1.5;margin:0 0 1.0666666667rem;padding:.6rem 0}.help-text{color:#0a0a0a;font-size:.8666666667rem;font-style:italic;margin-top:-.5333333333rem}.input-group{align-items:stretch;display:flex;margin-bottom:1.0666666667rem;width:100%}.input-group>:first-child,.input-group>:first-child.input-group-button>*,.input-group>:last-child,.input-group>:last-child.input-group-button>*{border-radius:0}.input-group-button,.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label,.input-group-field,.input-group-label{margin:0;white-space:nowrap}.input-group-label{align-items:center;background:#e6e6e6;border:1px solid #cacaca;color:#0a0a0a;display:flex;flex:0 0 auto;padding:0 1rem;text-align:center;white-space:nowrap}.input-group-label:first-child{border-right:0}.input-group-label:last-child{border-left:0}.input-group-field{border-radius:0;flex:1 1 0px;min-width:0}.input-group-button{display:flex;flex:0 0 auto;padding-bottom:0;padding-top:0;text-align:center}.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label{align-self:stretch;font-size:1rem;height:auto;padding-bottom:0;padding-top:0}fieldset{border:0;margin:0;padding:0}legend{margin-bottom:.5333333333rem;max-width:100%}.fieldset{border:1px solid #cacaca;margin:1.2rem 0;padding:1.3333333333rem}.fieldset legend{margin:0 0 0 -.2rem;padding:0 .2rem}select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fefefe;background-image:url('data:image/svg+xml;utf8,');background-origin:content-box;background-position:right -1.0666666667rem center;background-repeat:no-repeat;background-size:9px 6px;border:1px solid #cacaca;border-radius:0;color:#0a0a0a;font-family:inherit;font-size:1rem;font-weight:300;height:2.5rem;line-height:1.5;margin:0 0 1.0666666667rem;padding:.5333333333rem 1.6rem .5333333333rem .5333333333rem;transition:box-shadow .5s,border-color .25s ease-in-out}@media screen and (min-width:0�){select{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==)}}select:focus{background-color:#fefefe;border:1px solid #8a8a8a;box-shadow:0 0 5px #cacaca;outline:none;transition:box-shadow .5s,border-color .25s ease-in-out}select:disabled{background-color:#e6e6e6;cursor:not-allowed}select::-ms-expand{display:none}select[multiple]{background-image:none;height:auto}select:not([multiple]){padding-bottom:0;padding-top:0}.is-invalid-input:not(:focus){background-color:#f9ecea;border-color:#cc4b37}.is-invalid-input:not(:focus)::-moz-placeholder{color:#cc4b37}.is-invalid-input:not(:focus)::placeholder{color:#cc4b37}.form-error,.is-invalid-label{color:#cc4b37}.form-error{display:none;font-size:.8rem;font-weight:700;margin-bottom:1.0666666667rem;margin-top:-.5333333333rem}.form-error.is-visible{display:block}blockquote,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,li,ol,p,pre,td,th,ul{margin:0;padding:0}p{font-size:inherit;line-height:1.6;margin-bottom:1rem;text-rendering:optimizeLegibility}em,i{font-style:italic}b,em,i,strong{line-height:inherit}b,strong{font-weight:700}small{font-size:80%;line-height:inherit}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{color:inherit;font-family:Helvetica,Arial,sans-serif;font-style:normal;font-weight:300;text-rendering:optimizeLegibility}.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#cacaca;line-height:0}.h1,h1{font-size:1.6rem}.h1,.h2,h1,h2{line-height:1.4;margin-bottom:.5rem;margin-top:0}.h2,h2{font-size:1.3333333333rem}.h3,h3{font-size:1.2666666667rem}.h3,.h4,h3,h4{line-height:1.4;margin-bottom:.5rem;margin-top:0}.h4,h4{font-size:1.2rem}.h5,h5{font-size:1.1333333333rem}.h5,.h6,h5,h6{line-height:1.4;margin-bottom:.5rem;margin-top:0}.h6,h6{font-size:1.0666666667rem}@media print,screen and (min-width:40em){.h1,h1{font-size:2rem}.h2,h2{font-size:1.6rem}.h3,h3{font-size:1.3333333333rem}.h4,h4{font-size:1.2rem}.h5,h5{font-size:1.1333333333rem}.h6,h6{font-size:1.0666666667rem}}a{color:#3f729b;cursor:pointer;line-height:inherit;text-decoration:none}a:focus,a:hover{color:#366285}a img,hr{border:0}hr{border-bottom:1px solid #cacaca;clear:both;height:0;margin:1.3333333333rem auto;max-width:100%}dl,ol,ul{line-height:1.6;list-style-position:outside;margin-bottom:1rem}li{font-size:inherit}ul{list-style-type:disc}ol,ul{margin-left:1.25rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0;margin-left:1.25rem}dl{margin-bottom:1rem}dl dt{font-weight:700;margin-bottom:.3rem}blockquote{border-left:1px solid #cacaca;margin:0 0 1rem;padding:.6rem 1.3333333333rem 0 1.2666666667rem}blockquote,blockquote p{color:#8a8a8a;line-height:1.6}abbr,abbr[title]{border-bottom:1px dotted #0a0a0a;cursor:help;text-decoration:none}figure,kbd{margin:0}kbd{background-color:#e6e6e6;color:#0a0a0a;font-family:Consolas,Liberation Mono,Courier,monospace;padding:.1333333333rem .2666666667rem 0}.subheader{color:#8a8a8a;font-weight:300;line-height:1.4;margin-bottom:.5rem;margin-top:.2rem}.lead{font-size:1.171875rem;line-height:1.6}.stat{font-size:2.5rem;line-height:1}p+.stat{margin-top:-1rem}ol.no-bullet,ul.no-bullet{list-style:none;margin-left:0}.cite-block,cite{color:#8a8a8a;display:block;font-size:.8666666667rem}.cite-block:before,cite:before{content:"— "}.code-inline,code{display:inline;max-width:100%;word-wrap:break-word;padding:.1333333333rem .3333333333rem .0666666667rem}.code-block,.code-inline,code{background-color:#e6e6e6;border:1px solid #cacaca;color:#0a0a0a;font-family:Consolas,Liberation Mono,Courier,monospace;font-weight:300}.code-block{display:block;margin-bottom:1.5rem;overflow:auto;padding:1rem;white-space:pre}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}@media print,screen and (min-width:40em){.medium-text-left{text-align:left}.medium-text-right{text-align:right}.medium-text-center{text-align:center}.medium-text-justify{text-align:justify}}@media print,screen and (min-width:64em){.large-text-left{text-align:left}.large-text-right{text-align:right}.large-text-center{text-align:center}.large-text-justify{text-align:justify}}@media screen and (min-width:75em){.xlarge-text-left{text-align:left}.xlarge-text-right{text-align:right}.xlarge-text-center{text-align:center}.xlarge-text-justify{text-align:justify}}@media screen and (min-width:90em){.xxlarge-text-left{text-align:left}.xxlarge-text-right{text-align:right}.xxlarge-text-center{text-align:center}.xxlarge-text-justify{text-align:justify}}.show-for-print{display:none!important}@media print{*{background:transparent!important;box-shadow:none!important;color:#000!important;-webkit-print-color-adjust:economy;print-color-adjust:economy;text-shadow:none!important}.show-for-print{display:block!important}.hide-for-print{display:none!important}table.show-for-print{display:table!important}thead.show-for-print{display:table-header-group!important}tbody.show-for-print{display:table-row-group!important}tr.show-for-print{display:table-row!important}td.show-for-print,th.show-for-print{display:table-cell!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}abbr[title]:after{content:" (" attr(title) ")"}blockquote,pre{border:1px solid #8a8a8a;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.print-break-inside{page-break-inside:auto}}.grid-container{margin-left:auto;margin-right:auto;max-width:80rem;padding-left:.3333333333rem;padding-right:.3333333333rem}@media print,screen and (min-width:40em){.grid-container{padding-left:.7rem;padding-right:.7rem}}@media print,screen and (min-width:64em){.grid-container{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:75em){.grid-container{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:90em){.grid-container{padding-left:.7rem;padding-right:.7rem}}.grid-container.fluid{margin-left:auto;margin-right:auto;max-width:100%;padding-left:.3333333333rem;padding-right:.3333333333rem}@media print,screen and (min-width:40em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}@media print,screen and (min-width:64em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:75em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:90em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}.grid-container.full{margin-left:auto;margin-right:auto;max-width:100%;padding-left:0;padding-right:0}.grid-x{display:flex;flex-flow:row wrap}.cell{flex:0 0 auto;min-height:0;min-width:0;width:100%}.cell.auto{flex:1 1 0}.cell.shrink{flex:0 0 auto}.grid-x>.auto,.grid-x>.shrink{width:auto}.grid-x>.small-1,.grid-x>.small-10,.grid-x>.small-11,.grid-x>.small-12,.grid-x>.small-2,.grid-x>.small-3,.grid-x>.small-4,.grid-x>.small-5,.grid-x>.small-6,.grid-x>.small-7,.grid-x>.small-8,.grid-x>.small-9,.grid-x>.small-full,.grid-x>.small-shrink{flex-basis:auto}@media print,screen and (min-width:40em){.grid-x>.medium-1,.grid-x>.medium-10,.grid-x>.medium-11,.grid-x>.medium-12,.grid-x>.medium-2,.grid-x>.medium-3,.grid-x>.medium-4,.grid-x>.medium-5,.grid-x>.medium-6,.grid-x>.medium-7,.grid-x>.medium-8,.grid-x>.medium-9,.grid-x>.medium-full,.grid-x>.medium-shrink{flex-basis:auto}}@media print,screen and (min-width:64em){.grid-x>.large-1,.grid-x>.large-10,.grid-x>.large-11,.grid-x>.large-12,.grid-x>.large-2,.grid-x>.large-3,.grid-x>.large-4,.grid-x>.large-5,.grid-x>.large-6,.grid-x>.large-7,.grid-x>.large-8,.grid-x>.large-9,.grid-x>.large-full,.grid-x>.large-shrink{flex-basis:auto}}@media screen and (min-width:75em){.grid-x>.xlarge-1,.grid-x>.xlarge-10,.grid-x>.xlarge-11,.grid-x>.xlarge-12,.grid-x>.xlarge-2,.grid-x>.xlarge-3,.grid-x>.xlarge-4,.grid-x>.xlarge-5,.grid-x>.xlarge-6,.grid-x>.xlarge-7,.grid-x>.xlarge-8,.grid-x>.xlarge-9,.grid-x>.xlarge-full,.grid-x>.xlarge-shrink{flex-basis:auto}}@media screen and (min-width:90em){.grid-x>.xxlarge-1,.grid-x>.xxlarge-10,.grid-x>.xxlarge-11,.grid-x>.xxlarge-12,.grid-x>.xxlarge-2,.grid-x>.xxlarge-3,.grid-x>.xxlarge-4,.grid-x>.xxlarge-5,.grid-x>.xxlarge-6,.grid-x>.xxlarge-7,.grid-x>.xxlarge-8,.grid-x>.xxlarge-9,.grid-x>.xxlarge-full,.grid-x>.xxlarge-shrink{flex-basis:auto}}.grid-x>.small-1,.grid-x>.small-10,.grid-x>.small-11,.grid-x>.small-12,.grid-x>.small-2,.grid-x>.small-3,.grid-x>.small-4,.grid-x>.small-5,.grid-x>.small-6,.grid-x>.small-7,.grid-x>.small-8,.grid-x>.small-9{flex:0 0 auto}.grid-x>.small-1{width:8.3333333333%}.grid-x>.small-2{width:16.6666666667%}.grid-x>.small-3{width:25%}.grid-x>.small-4{width:33.3333333333%}.grid-x>.small-5{width:41.6666666667%}.grid-x>.small-6{width:50%}.grid-x>.small-7{width:58.3333333333%}.grid-x>.small-8{width:66.6666666667%}.grid-x>.small-9{width:75%}.grid-x>.small-10{width:83.3333333333%}.grid-x>.small-11{width:91.6666666667%}.grid-x>.small-12{width:100%}@media print,screen and (min-width:40em){.grid-x>.medium-auto{flex:1 1 0;width:auto}.grid-x>.medium-1,.grid-x>.medium-10,.grid-x>.medium-11,.grid-x>.medium-12,.grid-x>.medium-2,.grid-x>.medium-3,.grid-x>.medium-4,.grid-x>.medium-5,.grid-x>.medium-6,.grid-x>.medium-7,.grid-x>.medium-8,.grid-x>.medium-9,.grid-x>.medium-shrink{flex:0 0 auto}.grid-x>.medium-shrink{width:auto}.grid-x>.medium-1{width:8.3333333333%}.grid-x>.medium-2{width:16.6666666667%}.grid-x>.medium-3{width:25%}.grid-x>.medium-4{width:33.3333333333%}.grid-x>.medium-5{width:41.6666666667%}.grid-x>.medium-6{width:50%}.grid-x>.medium-7{width:58.3333333333%}.grid-x>.medium-8{width:66.6666666667%}.grid-x>.medium-9{width:75%}.grid-x>.medium-10{width:83.3333333333%}.grid-x>.medium-11{width:91.6666666667%}.grid-x>.medium-12{width:100%}}@media print,screen and (min-width:64em){.grid-x>.large-auto{flex:1 1 0;width:auto}.grid-x>.large-1,.grid-x>.large-10,.grid-x>.large-11,.grid-x>.large-12,.grid-x>.large-2,.grid-x>.large-3,.grid-x>.large-4,.grid-x>.large-5,.grid-x>.large-6,.grid-x>.large-7,.grid-x>.large-8,.grid-x>.large-9,.grid-x>.large-shrink{flex:0 0 auto}.grid-x>.large-shrink{width:auto}.grid-x>.large-1{width:8.3333333333%}.grid-x>.large-2{width:16.6666666667%}.grid-x>.large-3{width:25%}.grid-x>.large-4{width:33.3333333333%}.grid-x>.large-5{width:41.6666666667%}.grid-x>.large-6{width:50%}.grid-x>.large-7{width:58.3333333333%}.grid-x>.large-8{width:66.6666666667%}.grid-x>.large-9{width:75%}.grid-x>.large-10{width:83.3333333333%}.grid-x>.large-11{width:91.6666666667%}.grid-x>.large-12{width:100%}}@media screen and (min-width:75em){.grid-x>.xlarge-auto{flex:1 1 0;width:auto}.grid-x>.xlarge-1,.grid-x>.xlarge-10,.grid-x>.xlarge-11,.grid-x>.xlarge-12,.grid-x>.xlarge-2,.grid-x>.xlarge-3,.grid-x>.xlarge-4,.grid-x>.xlarge-5,.grid-x>.xlarge-6,.grid-x>.xlarge-7,.grid-x>.xlarge-8,.grid-x>.xlarge-9,.grid-x>.xlarge-shrink{flex:0 0 auto}.grid-x>.xlarge-shrink{width:auto}.grid-x>.xlarge-1{width:8.3333333333%}.grid-x>.xlarge-2{width:16.6666666667%}.grid-x>.xlarge-3{width:25%}.grid-x>.xlarge-4{width:33.3333333333%}.grid-x>.xlarge-5{width:41.6666666667%}.grid-x>.xlarge-6{width:50%}.grid-x>.xlarge-7{width:58.3333333333%}.grid-x>.xlarge-8{width:66.6666666667%}.grid-x>.xlarge-9{width:75%}.grid-x>.xlarge-10{width:83.3333333333%}.grid-x>.xlarge-11{width:91.6666666667%}.grid-x>.xlarge-12{width:100%}}@media screen and (min-width:90em){.grid-x>.xxlarge-auto{flex:1 1 0;width:auto}.grid-x>.xxlarge-1,.grid-x>.xxlarge-10,.grid-x>.xxlarge-11,.grid-x>.xxlarge-12,.grid-x>.xxlarge-2,.grid-x>.xxlarge-3,.grid-x>.xxlarge-4,.grid-x>.xxlarge-5,.grid-x>.xxlarge-6,.grid-x>.xxlarge-7,.grid-x>.xxlarge-8,.grid-x>.xxlarge-9,.grid-x>.xxlarge-shrink{flex:0 0 auto}.grid-x>.xxlarge-shrink{width:auto}.grid-x>.xxlarge-1{width:8.3333333333%}.grid-x>.xxlarge-2{width:16.6666666667%}.grid-x>.xxlarge-3{width:25%}.grid-x>.xxlarge-4{width:33.3333333333%}.grid-x>.xxlarge-5{width:41.6666666667%}.grid-x>.xxlarge-6{width:50%}.grid-x>.xxlarge-7{width:58.3333333333%}.grid-x>.xxlarge-8{width:66.6666666667%}.grid-x>.xxlarge-9{width:75%}.grid-x>.xxlarge-10{width:83.3333333333%}.grid-x>.xxlarge-11{width:91.6666666667%}.grid-x>.xxlarge-12{width:100%}}.grid-margin-x:not(.grid-x)>.cell{width:auto}.grid-margin-y:not(.grid-y)>.cell{height:auto}.grid-margin-x{margin-left:-.3333333333rem;margin-right:-.3333333333rem}@media print,screen and (min-width:40em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}@media print,screen and (min-width:64em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:75em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:90em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}.grid-margin-x>.cell{margin-left:.3333333333rem;margin-right:.3333333333rem;width:calc(100% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - .66667rem)}.grid-margin-x>.small-2{width:calc(16.66667% - .66667rem)}.grid-margin-x>.small-3{width:calc(25% - .66667rem)}.grid-margin-x>.small-4{width:calc(33.33333% - .66667rem)}.grid-margin-x>.small-5{width:calc(41.66667% - .66667rem)}.grid-margin-x>.small-6{width:calc(50% - .66667rem)}.grid-margin-x>.small-7{width:calc(58.33333% - .66667rem)}.grid-margin-x>.small-8{width:calc(66.66667% - .66667rem)}.grid-margin-x>.small-9{width:calc(75% - .66667rem)}.grid-margin-x>.small-10{width:calc(83.33333% - .66667rem)}.grid-margin-x>.small-11{width:calc(91.66667% - .66667rem)}.grid-margin-x>.small-12{width:calc(100% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}.grid-margin-x>.large-auto,.grid-margin-x>.large-shrink{width:auto}.grid-margin-x>.large-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.large-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.large-3{width:calc(25% - 1.4rem)}.grid-margin-x>.large-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.large-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.large-6{width:calc(50% - 1.4rem)}.grid-margin-x>.large-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.large-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.large-9{width:calc(75% - 1.4rem)}.grid-margin-x>.large-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.large-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.large-12{width:calc(100% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}.grid-margin-x>.large-auto,.grid-margin-x>.large-shrink{width:auto}.grid-margin-x>.large-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.large-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.large-3{width:calc(25% - 1.4rem)}.grid-margin-x>.large-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.large-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.large-6{width:calc(50% - 1.4rem)}.grid-margin-x>.large-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.large-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.large-9{width:calc(75% - 1.4rem)}.grid-margin-x>.large-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.large-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.large-12{width:calc(100% - 1.4rem)}.grid-margin-x>.xlarge-auto,.grid-margin-x>.xlarge-shrink{width:auto}.grid-margin-x>.xlarge-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.xlarge-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.xlarge-3{width:calc(25% - 1.4rem)}.grid-margin-x>.xlarge-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.xlarge-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.xlarge-6{width:calc(50% - 1.4rem)}.grid-margin-x>.xlarge-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.xlarge-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.xlarge-9{width:calc(75% - 1.4rem)}.grid-margin-x>.xlarge-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.xlarge-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.xlarge-12{width:calc(100% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}.grid-margin-x>.large-auto,.grid-margin-x>.large-shrink{width:auto}.grid-margin-x>.large-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.large-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.large-3{width:calc(25% - 1.4rem)}.grid-margin-x>.large-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.large-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.large-6{width:calc(50% - 1.4rem)}.grid-margin-x>.large-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.large-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.large-9{width:calc(75% - 1.4rem)}.grid-margin-x>.large-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.large-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.large-12{width:calc(100% - 1.4rem)}.grid-margin-x>.xlarge-auto,.grid-margin-x>.xlarge-shrink{width:auto}.grid-margin-x>.xlarge-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.xlarge-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.xlarge-3{width:calc(25% - 1.4rem)}.grid-margin-x>.xlarge-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.xlarge-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.xlarge-6{width:calc(50% - 1.4rem)}.grid-margin-x>.xlarge-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.xlarge-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.xlarge-9{width:calc(75% - 1.4rem)}.grid-margin-x>.xlarge-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.xlarge-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.xlarge-12{width:calc(100% - 1.4rem)}.grid-margin-x>.xxlarge-auto,.grid-margin-x>.xxlarge-shrink{width:auto}.grid-margin-x>.xxlarge-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.xxlarge-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.xxlarge-3{width:calc(25% - 1.4rem)}.grid-margin-x>.xxlarge-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.xxlarge-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.xxlarge-6{width:calc(50% - 1.4rem)}.grid-margin-x>.xxlarge-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.xxlarge-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.xxlarge-9{width:calc(75% - 1.4rem)}.grid-margin-x>.xxlarge-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.xxlarge-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.xxlarge-12{width:calc(100% - 1.4rem)}}.grid-padding-x .grid-padding-x{margin-left:-.3333333333rem;margin-right:-.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media print,screen and (min-width:64em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:75em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:90em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}.grid-container:not(.full)>.grid-padding-x{margin-left:-.3333333333rem;margin-right:-.3333333333rem}@media print,screen and (min-width:40em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media print,screen and (min-width:64em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:75em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:90em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}.grid-padding-x>.cell{padding-left:.3333333333rem;padding-right:.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}@media print,screen and (min-width:64em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:75em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:90em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}.small-up-1>.cell{width:100%}.small-up-2>.cell{width:50%}.small-up-3>.cell{width:33.3333333333%}.small-up-4>.cell{width:25%}.small-up-5>.cell{width:20%}.small-up-6>.cell{width:16.6666666667%}.small-up-7>.cell{width:14.2857142857%}.small-up-8>.cell{width:12.5%}@media print,screen and (min-width:40em){.medium-up-1>.cell{width:100%}.medium-up-2>.cell{width:50%}.medium-up-3>.cell{width:33.3333333333%}.medium-up-4>.cell{width:25%}.medium-up-5>.cell{width:20%}.medium-up-6>.cell{width:16.6666666667%}.medium-up-7>.cell{width:14.2857142857%}.medium-up-8>.cell{width:12.5%}}@media print,screen and (min-width:64em){.large-up-1>.cell{width:100%}.large-up-2>.cell{width:50%}.large-up-3>.cell{width:33.3333333333%}.large-up-4>.cell{width:25%}.large-up-5>.cell{width:20%}.large-up-6>.cell{width:16.6666666667%}.large-up-7>.cell{width:14.2857142857%}.large-up-8>.cell{width:12.5%}}@media screen and (min-width:75em){.xlarge-up-1>.cell{width:100%}.xlarge-up-2>.cell{width:50%}.xlarge-up-3>.cell{width:33.3333333333%}.xlarge-up-4>.cell{width:25%}.xlarge-up-5>.cell{width:20%}.xlarge-up-6>.cell{width:16.6666666667%}.xlarge-up-7>.cell{width:14.2857142857%}.xlarge-up-8>.cell{width:12.5%}}@media screen and (min-width:90em){.xxlarge-up-1>.cell{width:100%}.xxlarge-up-2>.cell{width:50%}.xxlarge-up-3>.cell{width:33.3333333333%}.xxlarge-up-4>.cell{width:25%}.xxlarge-up-5>.cell{width:20%}.xxlarge-up-6>.cell{width:16.6666666667%}.xxlarge-up-7>.cell{width:14.2857142857%}.xxlarge-up-8>.cell{width:12.5%}}.grid-margin-x.small-up-1>.cell{width:calc(100% - .66667rem)}.grid-margin-x.small-up-2>.cell{width:calc(50% - .66667rem)}.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - .66667rem)}.grid-margin-x.small-up-4>.cell{width:calc(25% - .66667rem)}.grid-margin-x.small-up-5>.cell{width:calc(20% - .66667rem)}.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - .66667rem)}.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - .66667rem)}.grid-margin-x.small-up-8>.cell{width:calc(12.5% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-x.small-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.small-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.small-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.small-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.small-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.medium-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.medium-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.medium-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.medium-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.medium-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.medium-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.medium-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.medium-up-8>.cell{width:calc(12.5% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-x.medium-up-1>.cell,.grid-margin-x.small-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.medium-up-2>.cell,.grid-margin-x.small-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.medium-up-3>.cell,.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.medium-up-4>.cell,.grid-margin-x.small-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.medium-up-5>.cell,.grid-margin-x.small-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.medium-up-6>.cell,.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.medium-up-7>.cell,.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.medium-up-8>.cell,.grid-margin-x.small-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.large-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.large-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.large-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.large-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.large-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.large-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.large-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.large-up-8>.cell{width:calc(12.5% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-x.large-up-1>.cell,.grid-margin-x.medium-up-1>.cell,.grid-margin-x.small-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.large-up-2>.cell,.grid-margin-x.medium-up-2>.cell,.grid-margin-x.small-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.large-up-3>.cell,.grid-margin-x.medium-up-3>.cell,.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.large-up-4>.cell,.grid-margin-x.medium-up-4>.cell,.grid-margin-x.small-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.large-up-5>.cell,.grid-margin-x.medium-up-5>.cell,.grid-margin-x.small-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.large-up-6>.cell,.grid-margin-x.medium-up-6>.cell,.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.large-up-7>.cell,.grid-margin-x.medium-up-7>.cell,.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.large-up-8>.cell,.grid-margin-x.medium-up-8>.cell,.grid-margin-x.small-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.xlarge-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.xlarge-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.xlarge-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.xlarge-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.xlarge-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.xlarge-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.xlarge-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.xlarge-up-8>.cell{width:calc(12.5% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-x.large-up-1>.cell,.grid-margin-x.medium-up-1>.cell,.grid-margin-x.small-up-1>.cell,.grid-margin-x.xlarge-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.large-up-2>.cell,.grid-margin-x.medium-up-2>.cell,.grid-margin-x.small-up-2>.cell,.grid-margin-x.xlarge-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.large-up-3>.cell,.grid-margin-x.medium-up-3>.cell,.grid-margin-x.small-up-3>.cell,.grid-margin-x.xlarge-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.large-up-4>.cell,.grid-margin-x.medium-up-4>.cell,.grid-margin-x.small-up-4>.cell,.grid-margin-x.xlarge-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.large-up-5>.cell,.grid-margin-x.medium-up-5>.cell,.grid-margin-x.small-up-5>.cell,.grid-margin-x.xlarge-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.large-up-6>.cell,.grid-margin-x.medium-up-6>.cell,.grid-margin-x.small-up-6>.cell,.grid-margin-x.xlarge-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.large-up-7>.cell,.grid-margin-x.medium-up-7>.cell,.grid-margin-x.small-up-7>.cell,.grid-margin-x.xlarge-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.large-up-8>.cell,.grid-margin-x.medium-up-8>.cell,.grid-margin-x.small-up-8>.cell,.grid-margin-x.xlarge-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.xxlarge-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.xxlarge-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.xxlarge-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.xxlarge-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.xxlarge-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.xxlarge-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.xxlarge-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.xxlarge-up-8>.cell{width:calc(12.5% - 1.4rem)}}.small-margin-collapse,.small-margin-collapse>.cell{margin-left:0;margin-right:0}.small-margin-collapse>.small-1{width:8.3333333333%}.small-margin-collapse>.small-2{width:16.6666666667%}.small-margin-collapse>.small-3{width:25%}.small-margin-collapse>.small-4{width:33.3333333333%}.small-margin-collapse>.small-5{width:41.6666666667%}.small-margin-collapse>.small-6{width:50%}.small-margin-collapse>.small-7{width:58.3333333333%}.small-margin-collapse>.small-8{width:66.6666666667%}.small-margin-collapse>.small-9{width:75%}.small-margin-collapse>.small-10{width:83.3333333333%}.small-margin-collapse>.small-11{width:91.6666666667%}.small-margin-collapse>.small-12{width:100%}@media print,screen and (min-width:40em){.small-margin-collapse>.medium-1{width:8.3333333333%}.small-margin-collapse>.medium-2{width:16.6666666667%}.small-margin-collapse>.medium-3{width:25%}.small-margin-collapse>.medium-4{width:33.3333333333%}.small-margin-collapse>.medium-5{width:41.6666666667%}.small-margin-collapse>.medium-6{width:50%}.small-margin-collapse>.medium-7{width:58.3333333333%}.small-margin-collapse>.medium-8{width:66.6666666667%}.small-margin-collapse>.medium-9{width:75%}.small-margin-collapse>.medium-10{width:83.3333333333%}.small-margin-collapse>.medium-11{width:91.6666666667%}.small-margin-collapse>.medium-12{width:100%}}@media print,screen and (min-width:64em){.small-margin-collapse>.large-1{width:8.3333333333%}.small-margin-collapse>.large-2{width:16.6666666667%}.small-margin-collapse>.large-3{width:25%}.small-margin-collapse>.large-4{width:33.3333333333%}.small-margin-collapse>.large-5{width:41.6666666667%}.small-margin-collapse>.large-6{width:50%}.small-margin-collapse>.large-7{width:58.3333333333%}.small-margin-collapse>.large-8{width:66.6666666667%}.small-margin-collapse>.large-9{width:75%}.small-margin-collapse>.large-10{width:83.3333333333%}.small-margin-collapse>.large-11{width:91.6666666667%}.small-margin-collapse>.large-12{width:100%}}@media screen and (min-width:75em){.small-margin-collapse>.xlarge-1{width:8.3333333333%}.small-margin-collapse>.xlarge-2{width:16.6666666667%}.small-margin-collapse>.xlarge-3{width:25%}.small-margin-collapse>.xlarge-4{width:33.3333333333%}.small-margin-collapse>.xlarge-5{width:41.6666666667%}.small-margin-collapse>.xlarge-6{width:50%}.small-margin-collapse>.xlarge-7{width:58.3333333333%}.small-margin-collapse>.xlarge-8{width:66.6666666667%}.small-margin-collapse>.xlarge-9{width:75%}.small-margin-collapse>.xlarge-10{width:83.3333333333%}.small-margin-collapse>.xlarge-11{width:91.6666666667%}.small-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.small-margin-collapse>.xxlarge-1{width:8.3333333333%}.small-margin-collapse>.xxlarge-2{width:16.6666666667%}.small-margin-collapse>.xxlarge-3{width:25%}.small-margin-collapse>.xxlarge-4{width:33.3333333333%}.small-margin-collapse>.xxlarge-5{width:41.6666666667%}.small-margin-collapse>.xxlarge-6{width:50%}.small-margin-collapse>.xxlarge-7{width:58.3333333333%}.small-margin-collapse>.xxlarge-8{width:66.6666666667%}.small-margin-collapse>.xxlarge-9{width:75%}.small-margin-collapse>.xxlarge-10{width:83.3333333333%}.small-margin-collapse>.xxlarge-11{width:91.6666666667%}.small-margin-collapse>.xxlarge-12{width:100%}}.small-padding-collapse{margin-left:0;margin-right:0}.small-padding-collapse>.cell{padding-left:0;padding-right:0}@media print,screen and (min-width:40em){.medium-margin-collapse,.medium-margin-collapse>.cell{margin-left:0;margin-right:0}.medium-margin-collapse>.small-1{width:8.3333333333%}.medium-margin-collapse>.small-2{width:16.6666666667%}.medium-margin-collapse>.small-3{width:25%}.medium-margin-collapse>.small-4{width:33.3333333333%}.medium-margin-collapse>.small-5{width:41.6666666667%}.medium-margin-collapse>.small-6{width:50%}.medium-margin-collapse>.small-7{width:58.3333333333%}.medium-margin-collapse>.small-8{width:66.6666666667%}.medium-margin-collapse>.small-9{width:75%}.medium-margin-collapse>.small-10{width:83.3333333333%}.medium-margin-collapse>.small-11{width:91.6666666667%}.medium-margin-collapse>.small-12{width:100%}.medium-margin-collapse>.medium-1{width:8.3333333333%}.medium-margin-collapse>.medium-2{width:16.6666666667%}.medium-margin-collapse>.medium-3{width:25%}.medium-margin-collapse>.medium-4{width:33.3333333333%}.medium-margin-collapse>.medium-5{width:41.6666666667%}.medium-margin-collapse>.medium-6{width:50%}.medium-margin-collapse>.medium-7{width:58.3333333333%}.medium-margin-collapse>.medium-8{width:66.6666666667%}.medium-margin-collapse>.medium-9{width:75%}.medium-margin-collapse>.medium-10{width:83.3333333333%}.medium-margin-collapse>.medium-11{width:91.6666666667%}.medium-margin-collapse>.medium-12{width:100%}}@media print,screen and (min-width:64em){.medium-margin-collapse>.large-1{width:8.3333333333%}.medium-margin-collapse>.large-2{width:16.6666666667%}.medium-margin-collapse>.large-3{width:25%}.medium-margin-collapse>.large-4{width:33.3333333333%}.medium-margin-collapse>.large-5{width:41.6666666667%}.medium-margin-collapse>.large-6{width:50%}.medium-margin-collapse>.large-7{width:58.3333333333%}.medium-margin-collapse>.large-8{width:66.6666666667%}.medium-margin-collapse>.large-9{width:75%}.medium-margin-collapse>.large-10{width:83.3333333333%}.medium-margin-collapse>.large-11{width:91.6666666667%}.medium-margin-collapse>.large-12{width:100%}}@media screen and (min-width:75em){.medium-margin-collapse>.xlarge-1{width:8.3333333333%}.medium-margin-collapse>.xlarge-2{width:16.6666666667%}.medium-margin-collapse>.xlarge-3{width:25%}.medium-margin-collapse>.xlarge-4{width:33.3333333333%}.medium-margin-collapse>.xlarge-5{width:41.6666666667%}.medium-margin-collapse>.xlarge-6{width:50%}.medium-margin-collapse>.xlarge-7{width:58.3333333333%}.medium-margin-collapse>.xlarge-8{width:66.6666666667%}.medium-margin-collapse>.xlarge-9{width:75%}.medium-margin-collapse>.xlarge-10{width:83.3333333333%}.medium-margin-collapse>.xlarge-11{width:91.6666666667%}.medium-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.medium-margin-collapse>.xxlarge-1{width:8.3333333333%}.medium-margin-collapse>.xxlarge-2{width:16.6666666667%}.medium-margin-collapse>.xxlarge-3{width:25%}.medium-margin-collapse>.xxlarge-4{width:33.3333333333%}.medium-margin-collapse>.xxlarge-5{width:41.6666666667%}.medium-margin-collapse>.xxlarge-6{width:50%}.medium-margin-collapse>.xxlarge-7{width:58.3333333333%}.medium-margin-collapse>.xxlarge-8{width:66.6666666667%}.medium-margin-collapse>.xxlarge-9{width:75%}.medium-margin-collapse>.xxlarge-10{width:83.3333333333%}.medium-margin-collapse>.xxlarge-11{width:91.6666666667%}.medium-margin-collapse>.xxlarge-12{width:100%}}@media print,screen and (min-width:40em){.medium-padding-collapse{margin-left:0;margin-right:0}.medium-padding-collapse>.cell{padding-left:0;padding-right:0}}@media print,screen and (min-width:64em){.large-margin-collapse,.large-margin-collapse>.cell{margin-left:0;margin-right:0}.large-margin-collapse>.small-1{width:8.3333333333%}.large-margin-collapse>.small-2{width:16.6666666667%}.large-margin-collapse>.small-3{width:25%}.large-margin-collapse>.small-4{width:33.3333333333%}.large-margin-collapse>.small-5{width:41.6666666667%}.large-margin-collapse>.small-6{width:50%}.large-margin-collapse>.small-7{width:58.3333333333%}.large-margin-collapse>.small-8{width:66.6666666667%}.large-margin-collapse>.small-9{width:75%}.large-margin-collapse>.small-10{width:83.3333333333%}.large-margin-collapse>.small-11{width:91.6666666667%}.large-margin-collapse>.small-12{width:100%}.large-margin-collapse>.medium-1{width:8.3333333333%}.large-margin-collapse>.medium-2{width:16.6666666667%}.large-margin-collapse>.medium-3{width:25%}.large-margin-collapse>.medium-4{width:33.3333333333%}.large-margin-collapse>.medium-5{width:41.6666666667%}.large-margin-collapse>.medium-6{width:50%}.large-margin-collapse>.medium-7{width:58.3333333333%}.large-margin-collapse>.medium-8{width:66.6666666667%}.large-margin-collapse>.medium-9{width:75%}.large-margin-collapse>.medium-10{width:83.3333333333%}.large-margin-collapse>.medium-11{width:91.6666666667%}.large-margin-collapse>.medium-12{width:100%}.large-margin-collapse>.large-1{width:8.3333333333%}.large-margin-collapse>.large-2{width:16.6666666667%}.large-margin-collapse>.large-3{width:25%}.large-margin-collapse>.large-4{width:33.3333333333%}.large-margin-collapse>.large-5{width:41.6666666667%}.large-margin-collapse>.large-6{width:50%}.large-margin-collapse>.large-7{width:58.3333333333%}.large-margin-collapse>.large-8{width:66.6666666667%}.large-margin-collapse>.large-9{width:75%}.large-margin-collapse>.large-10{width:83.3333333333%}.large-margin-collapse>.large-11{width:91.6666666667%}.large-margin-collapse>.large-12{width:100%}}@media screen and (min-width:75em){.large-margin-collapse>.xlarge-1{width:8.3333333333%}.large-margin-collapse>.xlarge-2{width:16.6666666667%}.large-margin-collapse>.xlarge-3{width:25%}.large-margin-collapse>.xlarge-4{width:33.3333333333%}.large-margin-collapse>.xlarge-5{width:41.6666666667%}.large-margin-collapse>.xlarge-6{width:50%}.large-margin-collapse>.xlarge-7{width:58.3333333333%}.large-margin-collapse>.xlarge-8{width:66.6666666667%}.large-margin-collapse>.xlarge-9{width:75%}.large-margin-collapse>.xlarge-10{width:83.3333333333%}.large-margin-collapse>.xlarge-11{width:91.6666666667%}.large-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.large-margin-collapse>.xxlarge-1{width:8.3333333333%}.large-margin-collapse>.xxlarge-2{width:16.6666666667%}.large-margin-collapse>.xxlarge-3{width:25%}.large-margin-collapse>.xxlarge-4{width:33.3333333333%}.large-margin-collapse>.xxlarge-5{width:41.6666666667%}.large-margin-collapse>.xxlarge-6{width:50%}.large-margin-collapse>.xxlarge-7{width:58.3333333333%}.large-margin-collapse>.xxlarge-8{width:66.6666666667%}.large-margin-collapse>.xxlarge-9{width:75%}.large-margin-collapse>.xxlarge-10{width:83.3333333333%}.large-margin-collapse>.xxlarge-11{width:91.6666666667%}.large-margin-collapse>.xxlarge-12{width:100%}}@media print,screen and (min-width:64em){.large-padding-collapse{margin-left:0;margin-right:0}.large-padding-collapse>.cell{padding-left:0;padding-right:0}}@media screen and (min-width:75em){.xlarge-margin-collapse,.xlarge-margin-collapse>.cell{margin-left:0;margin-right:0}.xlarge-margin-collapse>.small-1{width:8.3333333333%}.xlarge-margin-collapse>.small-2{width:16.6666666667%}.xlarge-margin-collapse>.small-3{width:25%}.xlarge-margin-collapse>.small-4{width:33.3333333333%}.xlarge-margin-collapse>.small-5{width:41.6666666667%}.xlarge-margin-collapse>.small-6{width:50%}.xlarge-margin-collapse>.small-7{width:58.3333333333%}.xlarge-margin-collapse>.small-8{width:66.6666666667%}.xlarge-margin-collapse>.small-9{width:75%}.xlarge-margin-collapse>.small-10{width:83.3333333333%}.xlarge-margin-collapse>.small-11{width:91.6666666667%}.xlarge-margin-collapse>.small-12{width:100%}.xlarge-margin-collapse>.medium-1{width:8.3333333333%}.xlarge-margin-collapse>.medium-2{width:16.6666666667%}.xlarge-margin-collapse>.medium-3{width:25%}.xlarge-margin-collapse>.medium-4{width:33.3333333333%}.xlarge-margin-collapse>.medium-5{width:41.6666666667%}.xlarge-margin-collapse>.medium-6{width:50%}.xlarge-margin-collapse>.medium-7{width:58.3333333333%}.xlarge-margin-collapse>.medium-8{width:66.6666666667%}.xlarge-margin-collapse>.medium-9{width:75%}.xlarge-margin-collapse>.medium-10{width:83.3333333333%}.xlarge-margin-collapse>.medium-11{width:91.6666666667%}.xlarge-margin-collapse>.medium-12{width:100%}.xlarge-margin-collapse>.large-1{width:8.3333333333%}.xlarge-margin-collapse>.large-2{width:16.6666666667%}.xlarge-margin-collapse>.large-3{width:25%}.xlarge-margin-collapse>.large-4{width:33.3333333333%}.xlarge-margin-collapse>.large-5{width:41.6666666667%}.xlarge-margin-collapse>.large-6{width:50%}.xlarge-margin-collapse>.large-7{width:58.3333333333%}.xlarge-margin-collapse>.large-8{width:66.6666666667%}.xlarge-margin-collapse>.large-9{width:75%}.xlarge-margin-collapse>.large-10{width:83.3333333333%}.xlarge-margin-collapse>.large-11{width:91.6666666667%}.xlarge-margin-collapse>.large-12{width:100%}.xlarge-margin-collapse>.xlarge-1{width:8.3333333333%}.xlarge-margin-collapse>.xlarge-2{width:16.6666666667%}.xlarge-margin-collapse>.xlarge-3{width:25%}.xlarge-margin-collapse>.xlarge-4{width:33.3333333333%}.xlarge-margin-collapse>.xlarge-5{width:41.6666666667%}.xlarge-margin-collapse>.xlarge-6{width:50%}.xlarge-margin-collapse>.xlarge-7{width:58.3333333333%}.xlarge-margin-collapse>.xlarge-8{width:66.6666666667%}.xlarge-margin-collapse>.xlarge-9{width:75%}.xlarge-margin-collapse>.xlarge-10{width:83.3333333333%}.xlarge-margin-collapse>.xlarge-11{width:91.6666666667%}.xlarge-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.xlarge-margin-collapse>.xxlarge-1{width:8.3333333333%}.xlarge-margin-collapse>.xxlarge-2{width:16.6666666667%}.xlarge-margin-collapse>.xxlarge-3{width:25%}.xlarge-margin-collapse>.xxlarge-4{width:33.3333333333%}.xlarge-margin-collapse>.xxlarge-5{width:41.6666666667%}.xlarge-margin-collapse>.xxlarge-6{width:50%}.xlarge-margin-collapse>.xxlarge-7{width:58.3333333333%}.xlarge-margin-collapse>.xxlarge-8{width:66.6666666667%}.xlarge-margin-collapse>.xxlarge-9{width:75%}.xlarge-margin-collapse>.xxlarge-10{width:83.3333333333%}.xlarge-margin-collapse>.xxlarge-11{width:91.6666666667%}.xlarge-margin-collapse>.xxlarge-12{width:100%}}@media screen and (min-width:75em){.xlarge-padding-collapse{margin-left:0;margin-right:0}.xlarge-padding-collapse>.cell{padding-left:0;padding-right:0}}@media screen and (min-width:90em){.xxlarge-margin-collapse,.xxlarge-margin-collapse>.cell{margin-left:0;margin-right:0}.xxlarge-margin-collapse>.small-1{width:8.3333333333%}.xxlarge-margin-collapse>.small-2{width:16.6666666667%}.xxlarge-margin-collapse>.small-3{width:25%}.xxlarge-margin-collapse>.small-4{width:33.3333333333%}.xxlarge-margin-collapse>.small-5{width:41.6666666667%}.xxlarge-margin-collapse>.small-6{width:50%}.xxlarge-margin-collapse>.small-7{width:58.3333333333%}.xxlarge-margin-collapse>.small-8{width:66.6666666667%}.xxlarge-margin-collapse>.small-9{width:75%}.xxlarge-margin-collapse>.small-10{width:83.3333333333%}.xxlarge-margin-collapse>.small-11{width:91.6666666667%}.xxlarge-margin-collapse>.small-12{width:100%}.xxlarge-margin-collapse>.medium-1{width:8.3333333333%}.xxlarge-margin-collapse>.medium-2{width:16.6666666667%}.xxlarge-margin-collapse>.medium-3{width:25%}.xxlarge-margin-collapse>.medium-4{width:33.3333333333%}.xxlarge-margin-collapse>.medium-5{width:41.6666666667%}.xxlarge-margin-collapse>.medium-6{width:50%}.xxlarge-margin-collapse>.medium-7{width:58.3333333333%}.xxlarge-margin-collapse>.medium-8{width:66.6666666667%}.xxlarge-margin-collapse>.medium-9{width:75%}.xxlarge-margin-collapse>.medium-10{width:83.3333333333%}.xxlarge-margin-collapse>.medium-11{width:91.6666666667%}.xxlarge-margin-collapse>.medium-12{width:100%}.xxlarge-margin-collapse>.large-1{width:8.3333333333%}.xxlarge-margin-collapse>.large-2{width:16.6666666667%}.xxlarge-margin-collapse>.large-3{width:25%}.xxlarge-margin-collapse>.large-4{width:33.3333333333%}.xxlarge-margin-collapse>.large-5{width:41.6666666667%}.xxlarge-margin-collapse>.large-6{width:50%}.xxlarge-margin-collapse>.large-7{width:58.3333333333%}.xxlarge-margin-collapse>.large-8{width:66.6666666667%}.xxlarge-margin-collapse>.large-9{width:75%}.xxlarge-margin-collapse>.large-10{width:83.3333333333%}.xxlarge-margin-collapse>.large-11{width:91.6666666667%}.xxlarge-margin-collapse>.large-12{width:100%}.xxlarge-margin-collapse>.xlarge-1{width:8.3333333333%}.xxlarge-margin-collapse>.xlarge-2{width:16.6666666667%}.xxlarge-margin-collapse>.xlarge-3{width:25%}.xxlarge-margin-collapse>.xlarge-4{width:33.3333333333%}.xxlarge-margin-collapse>.xlarge-5{width:41.6666666667%}.xxlarge-margin-collapse>.xlarge-6{width:50%}.xxlarge-margin-collapse>.xlarge-7{width:58.3333333333%}.xxlarge-margin-collapse>.xlarge-8{width:66.6666666667%}.xxlarge-margin-collapse>.xlarge-9{width:75%}.xxlarge-margin-collapse>.xlarge-10{width:83.3333333333%}.xxlarge-margin-collapse>.xlarge-11{width:91.6666666667%}.xxlarge-margin-collapse>.xlarge-12{width:100%}.xxlarge-margin-collapse>.xxlarge-1{width:8.3333333333%}.xxlarge-margin-collapse>.xxlarge-2{width:16.6666666667%}.xxlarge-margin-collapse>.xxlarge-3{width:25%}.xxlarge-margin-collapse>.xxlarge-4{width:33.3333333333%}.xxlarge-margin-collapse>.xxlarge-5{width:41.6666666667%}.xxlarge-margin-collapse>.xxlarge-6{width:50%}.xxlarge-margin-collapse>.xxlarge-7{width:58.3333333333%}.xxlarge-margin-collapse>.xxlarge-8{width:66.6666666667%}.xxlarge-margin-collapse>.xxlarge-9{width:75%}.xxlarge-margin-collapse>.xxlarge-10{width:83.3333333333%}.xxlarge-margin-collapse>.xxlarge-11{width:91.6666666667%}.xxlarge-margin-collapse>.xxlarge-12{width:100%}.xxlarge-padding-collapse{margin-left:0;margin-right:0}.xxlarge-padding-collapse>.cell{padding-left:0;padding-right:0}}.small-offset-0{margin-left:0}.grid-margin-x>.small-offset-0{margin-left:.33333rem}.small-offset-1{margin-left:8.3333333333%}.grid-margin-x>.small-offset-1{margin-left:calc(8.33333% + .33333rem)}.small-offset-2{margin-left:16.6666666667%}.grid-margin-x>.small-offset-2{margin-left:calc(16.66667% + .33333rem)}.small-offset-3{margin-left:25%}.grid-margin-x>.small-offset-3{margin-left:calc(25% + .33333rem)}.small-offset-4{margin-left:33.3333333333%}.grid-margin-x>.small-offset-4{margin-left:calc(33.33333% + .33333rem)}.small-offset-5{margin-left:41.6666666667%}.grid-margin-x>.small-offset-5{margin-left:calc(41.66667% + .33333rem)}.small-offset-6{margin-left:50%}.grid-margin-x>.small-offset-6{margin-left:calc(50% + .33333rem)}.small-offset-7{margin-left:58.3333333333%}.grid-margin-x>.small-offset-7{margin-left:calc(58.33333% + .33333rem)}.small-offset-8{margin-left:66.6666666667%}.grid-margin-x>.small-offset-8{margin-left:calc(66.66667% + .33333rem)}.small-offset-9{margin-left:75%}.grid-margin-x>.small-offset-9{margin-left:calc(75% + .33333rem)}.small-offset-10{margin-left:83.3333333333%}.grid-margin-x>.small-offset-10{margin-left:calc(83.33333% + .33333rem)}.small-offset-11{margin-left:91.6666666667%}.grid-margin-x>.small-offset-11{margin-left:calc(91.66667% + .33333rem)}@media print,screen and (min-width:40em){.medium-offset-0{margin-left:0}.grid-margin-x>.medium-offset-0{margin-left:.7rem}.medium-offset-1{margin-left:8.3333333333%}.grid-margin-x>.medium-offset-1{margin-left:calc(8.33333% + .7rem)}.medium-offset-2{margin-left:16.6666666667%}.grid-margin-x>.medium-offset-2{margin-left:calc(16.66667% + .7rem)}.medium-offset-3{margin-left:25%}.grid-margin-x>.medium-offset-3{margin-left:calc(25% + .7rem)}.medium-offset-4{margin-left:33.3333333333%}.grid-margin-x>.medium-offset-4{margin-left:calc(33.33333% + .7rem)}.medium-offset-5{margin-left:41.6666666667%}.grid-margin-x>.medium-offset-5{margin-left:calc(41.66667% + .7rem)}.medium-offset-6{margin-left:50%}.grid-margin-x>.medium-offset-6{margin-left:calc(50% + .7rem)}.medium-offset-7{margin-left:58.3333333333%}.grid-margin-x>.medium-offset-7{margin-left:calc(58.33333% + .7rem)}.medium-offset-8{margin-left:66.6666666667%}.grid-margin-x>.medium-offset-8{margin-left:calc(66.66667% + .7rem)}.medium-offset-9{margin-left:75%}.grid-margin-x>.medium-offset-9{margin-left:calc(75% + .7rem)}.medium-offset-10{margin-left:83.3333333333%}.grid-margin-x>.medium-offset-10{margin-left:calc(83.33333% + .7rem)}.medium-offset-11{margin-left:91.6666666667%}.grid-margin-x>.medium-offset-11{margin-left:calc(91.66667% + .7rem)}}@media print,screen and (min-width:64em){.large-offset-0{margin-left:0}.grid-margin-x>.large-offset-0{margin-left:.7rem}.large-offset-1{margin-left:8.3333333333%}.grid-margin-x>.large-offset-1{margin-left:calc(8.33333% + .7rem)}.large-offset-2{margin-left:16.6666666667%}.grid-margin-x>.large-offset-2{margin-left:calc(16.66667% + .7rem)}.large-offset-3{margin-left:25%}.grid-margin-x>.large-offset-3{margin-left:calc(25% + .7rem)}.large-offset-4{margin-left:33.3333333333%}.grid-margin-x>.large-offset-4{margin-left:calc(33.33333% + .7rem)}.large-offset-5{margin-left:41.6666666667%}.grid-margin-x>.large-offset-5{margin-left:calc(41.66667% + .7rem)}.large-offset-6{margin-left:50%}.grid-margin-x>.large-offset-6{margin-left:calc(50% + .7rem)}.large-offset-7{margin-left:58.3333333333%}.grid-margin-x>.large-offset-7{margin-left:calc(58.33333% + .7rem)}.large-offset-8{margin-left:66.6666666667%}.grid-margin-x>.large-offset-8{margin-left:calc(66.66667% + .7rem)}.large-offset-9{margin-left:75%}.grid-margin-x>.large-offset-9{margin-left:calc(75% + .7rem)}.large-offset-10{margin-left:83.3333333333%}.grid-margin-x>.large-offset-10{margin-left:calc(83.33333% + .7rem)}.large-offset-11{margin-left:91.6666666667%}.grid-margin-x>.large-offset-11{margin-left:calc(91.66667% + .7rem)}}@media screen and (min-width:75em){.xlarge-offset-0{margin-left:0}.grid-margin-x>.xlarge-offset-0{margin-left:.7rem}.xlarge-offset-1{margin-left:8.3333333333%}.grid-margin-x>.xlarge-offset-1{margin-left:calc(8.33333% + .7rem)}.xlarge-offset-2{margin-left:16.6666666667%}.grid-margin-x>.xlarge-offset-2{margin-left:calc(16.66667% + .7rem)}.xlarge-offset-3{margin-left:25%}.grid-margin-x>.xlarge-offset-3{margin-left:calc(25% + .7rem)}.xlarge-offset-4{margin-left:33.3333333333%}.grid-margin-x>.xlarge-offset-4{margin-left:calc(33.33333% + .7rem)}.xlarge-offset-5{margin-left:41.6666666667%}.grid-margin-x>.xlarge-offset-5{margin-left:calc(41.66667% + .7rem)}.xlarge-offset-6{margin-left:50%}.grid-margin-x>.xlarge-offset-6{margin-left:calc(50% + .7rem)}.xlarge-offset-7{margin-left:58.3333333333%}.grid-margin-x>.xlarge-offset-7{margin-left:calc(58.33333% + .7rem)}.xlarge-offset-8{margin-left:66.6666666667%}.grid-margin-x>.xlarge-offset-8{margin-left:calc(66.66667% + .7rem)}.xlarge-offset-9{margin-left:75%}.grid-margin-x>.xlarge-offset-9{margin-left:calc(75% + .7rem)}.xlarge-offset-10{margin-left:83.3333333333%}.grid-margin-x>.xlarge-offset-10{margin-left:calc(83.33333% + .7rem)}.xlarge-offset-11{margin-left:91.6666666667%}.grid-margin-x>.xlarge-offset-11{margin-left:calc(91.66667% + .7rem)}}@media screen and (min-width:90em){.xxlarge-offset-0{margin-left:0}.grid-margin-x>.xxlarge-offset-0{margin-left:.7rem}.xxlarge-offset-1{margin-left:8.3333333333%}.grid-margin-x>.xxlarge-offset-1{margin-left:calc(8.33333% + .7rem)}.xxlarge-offset-2{margin-left:16.6666666667%}.grid-margin-x>.xxlarge-offset-2{margin-left:calc(16.66667% + .7rem)}.xxlarge-offset-3{margin-left:25%}.grid-margin-x>.xxlarge-offset-3{margin-left:calc(25% + .7rem)}.xxlarge-offset-4{margin-left:33.3333333333%}.grid-margin-x>.xxlarge-offset-4{margin-left:calc(33.33333% + .7rem)}.xxlarge-offset-5{margin-left:41.6666666667%}.grid-margin-x>.xxlarge-offset-5{margin-left:calc(41.66667% + .7rem)}.xxlarge-offset-6{margin-left:50%}.grid-margin-x>.xxlarge-offset-6{margin-left:calc(50% + .7rem)}.xxlarge-offset-7{margin-left:58.3333333333%}.grid-margin-x>.xxlarge-offset-7{margin-left:calc(58.33333% + .7rem)}.xxlarge-offset-8{margin-left:66.6666666667%}.grid-margin-x>.xxlarge-offset-8{margin-left:calc(66.66667% + .7rem)}.xxlarge-offset-9{margin-left:75%}.grid-margin-x>.xxlarge-offset-9{margin-left:calc(75% + .7rem)}.xxlarge-offset-10{margin-left:83.3333333333%}.grid-margin-x>.xxlarge-offset-10{margin-left:calc(83.33333% + .7rem)}.xxlarge-offset-11{margin-left:91.6666666667%}.grid-margin-x>.xxlarge-offset-11{margin-left:calc(91.66667% + .7rem)}}.grid-y{display:flex;flex-flow:column nowrap}.grid-y>.cell{height:auto;max-height:none}.grid-y>.auto,.grid-y>.shrink{height:auto}.grid-y>.small-1,.grid-y>.small-10,.grid-y>.small-11,.grid-y>.small-12,.grid-y>.small-2,.grid-y>.small-3,.grid-y>.small-4,.grid-y>.small-5,.grid-y>.small-6,.grid-y>.small-7,.grid-y>.small-8,.grid-y>.small-9,.grid-y>.small-full,.grid-y>.small-shrink{flex-basis:auto}@media print,screen and (min-width:40em){.grid-y>.medium-1,.grid-y>.medium-10,.grid-y>.medium-11,.grid-y>.medium-12,.grid-y>.medium-2,.grid-y>.medium-3,.grid-y>.medium-4,.grid-y>.medium-5,.grid-y>.medium-6,.grid-y>.medium-7,.grid-y>.medium-8,.grid-y>.medium-9,.grid-y>.medium-full,.grid-y>.medium-shrink{flex-basis:auto}}@media print,screen and (min-width:64em){.grid-y>.large-1,.grid-y>.large-10,.grid-y>.large-11,.grid-y>.large-12,.grid-y>.large-2,.grid-y>.large-3,.grid-y>.large-4,.grid-y>.large-5,.grid-y>.large-6,.grid-y>.large-7,.grid-y>.large-8,.grid-y>.large-9,.grid-y>.large-full,.grid-y>.large-shrink{flex-basis:auto}}@media screen and (min-width:75em){.grid-y>.xlarge-1,.grid-y>.xlarge-10,.grid-y>.xlarge-11,.grid-y>.xlarge-12,.grid-y>.xlarge-2,.grid-y>.xlarge-3,.grid-y>.xlarge-4,.grid-y>.xlarge-5,.grid-y>.xlarge-6,.grid-y>.xlarge-7,.grid-y>.xlarge-8,.grid-y>.xlarge-9,.grid-y>.xlarge-full,.grid-y>.xlarge-shrink{flex-basis:auto}}@media screen and (min-width:90em){.grid-y>.xxlarge-1,.grid-y>.xxlarge-10,.grid-y>.xxlarge-11,.grid-y>.xxlarge-12,.grid-y>.xxlarge-2,.grid-y>.xxlarge-3,.grid-y>.xxlarge-4,.grid-y>.xxlarge-5,.grid-y>.xxlarge-6,.grid-y>.xxlarge-7,.grid-y>.xxlarge-8,.grid-y>.xxlarge-9,.grid-y>.xxlarge-full,.grid-y>.xxlarge-shrink{flex-basis:auto}}.grid-y>.small-1,.grid-y>.small-10,.grid-y>.small-11,.grid-y>.small-12,.grid-y>.small-2,.grid-y>.small-3,.grid-y>.small-4,.grid-y>.small-5,.grid-y>.small-6,.grid-y>.small-7,.grid-y>.small-8,.grid-y>.small-9{flex:0 0 auto}.grid-y>.small-1{height:8.3333333333%}.grid-y>.small-2{height:16.6666666667%}.grid-y>.small-3{height:25%}.grid-y>.small-4{height:33.3333333333%}.grid-y>.small-5{height:41.6666666667%}.grid-y>.small-6{height:50%}.grid-y>.small-7{height:58.3333333333%}.grid-y>.small-8{height:66.6666666667%}.grid-y>.small-9{height:75%}.grid-y>.small-10{height:83.3333333333%}.grid-y>.small-11{height:91.6666666667%}.grid-y>.small-12{height:100%}@media print,screen and (min-width:40em){.grid-y>.medium-auto{flex:1 1 0;height:auto}.grid-y>.medium-1,.grid-y>.medium-10,.grid-y>.medium-11,.grid-y>.medium-12,.grid-y>.medium-2,.grid-y>.medium-3,.grid-y>.medium-4,.grid-y>.medium-5,.grid-y>.medium-6,.grid-y>.medium-7,.grid-y>.medium-8,.grid-y>.medium-9,.grid-y>.medium-shrink{flex:0 0 auto}.grid-y>.medium-shrink{height:auto}.grid-y>.medium-1{height:8.3333333333%}.grid-y>.medium-2{height:16.6666666667%}.grid-y>.medium-3{height:25%}.grid-y>.medium-4{height:33.3333333333%}.grid-y>.medium-5{height:41.6666666667%}.grid-y>.medium-6{height:50%}.grid-y>.medium-7{height:58.3333333333%}.grid-y>.medium-8{height:66.6666666667%}.grid-y>.medium-9{height:75%}.grid-y>.medium-10{height:83.3333333333%}.grid-y>.medium-11{height:91.6666666667%}.grid-y>.medium-12{height:100%}}@media print,screen and (min-width:64em){.grid-y>.large-auto{flex:1 1 0;height:auto}.grid-y>.large-1,.grid-y>.large-10,.grid-y>.large-11,.grid-y>.large-12,.grid-y>.large-2,.grid-y>.large-3,.grid-y>.large-4,.grid-y>.large-5,.grid-y>.large-6,.grid-y>.large-7,.grid-y>.large-8,.grid-y>.large-9,.grid-y>.large-shrink{flex:0 0 auto}.grid-y>.large-shrink{height:auto}.grid-y>.large-1{height:8.3333333333%}.grid-y>.large-2{height:16.6666666667%}.grid-y>.large-3{height:25%}.grid-y>.large-4{height:33.3333333333%}.grid-y>.large-5{height:41.6666666667%}.grid-y>.large-6{height:50%}.grid-y>.large-7{height:58.3333333333%}.grid-y>.large-8{height:66.6666666667%}.grid-y>.large-9{height:75%}.grid-y>.large-10{height:83.3333333333%}.grid-y>.large-11{height:91.6666666667%}.grid-y>.large-12{height:100%}}@media screen and (min-width:75em){.grid-y>.xlarge-auto{flex:1 1 0;height:auto}.grid-y>.xlarge-1,.grid-y>.xlarge-10,.grid-y>.xlarge-11,.grid-y>.xlarge-12,.grid-y>.xlarge-2,.grid-y>.xlarge-3,.grid-y>.xlarge-4,.grid-y>.xlarge-5,.grid-y>.xlarge-6,.grid-y>.xlarge-7,.grid-y>.xlarge-8,.grid-y>.xlarge-9,.grid-y>.xlarge-shrink{flex:0 0 auto}.grid-y>.xlarge-shrink{height:auto}.grid-y>.xlarge-1{height:8.3333333333%}.grid-y>.xlarge-2{height:16.6666666667%}.grid-y>.xlarge-3{height:25%}.grid-y>.xlarge-4{height:33.3333333333%}.grid-y>.xlarge-5{height:41.6666666667%}.grid-y>.xlarge-6{height:50%}.grid-y>.xlarge-7{height:58.3333333333%}.grid-y>.xlarge-8{height:66.6666666667%}.grid-y>.xlarge-9{height:75%}.grid-y>.xlarge-10{height:83.3333333333%}.grid-y>.xlarge-11{height:91.6666666667%}.grid-y>.xlarge-12{height:100%}}@media screen and (min-width:90em){.grid-y>.xxlarge-auto{flex:1 1 0;height:auto}.grid-y>.xxlarge-1,.grid-y>.xxlarge-10,.grid-y>.xxlarge-11,.grid-y>.xxlarge-12,.grid-y>.xxlarge-2,.grid-y>.xxlarge-3,.grid-y>.xxlarge-4,.grid-y>.xxlarge-5,.grid-y>.xxlarge-6,.grid-y>.xxlarge-7,.grid-y>.xxlarge-8,.grid-y>.xxlarge-9,.grid-y>.xxlarge-shrink{flex:0 0 auto}.grid-y>.xxlarge-shrink{height:auto}.grid-y>.xxlarge-1{height:8.3333333333%}.grid-y>.xxlarge-2{height:16.6666666667%}.grid-y>.xxlarge-3{height:25%}.grid-y>.xxlarge-4{height:33.3333333333%}.grid-y>.xxlarge-5{height:41.6666666667%}.grid-y>.xxlarge-6{height:50%}.grid-y>.xxlarge-7{height:58.3333333333%}.grid-y>.xxlarge-8{height:66.6666666667%}.grid-y>.xxlarge-9{height:75%}.grid-y>.xxlarge-10{height:83.3333333333%}.grid-y>.xxlarge-11{height:91.6666666667%}.grid-y>.xxlarge-12{height:100%}}.grid-padding-y .grid-padding-y{margin-bottom:-.3333333333rem;margin-top:-.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media print,screen and (min-width:64em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:75em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:90em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}.grid-padding-y>.cell{padding-bottom:.3333333333rem;padding-top:.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}@media print,screen and (min-width:64em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}@media screen and (min-width:75em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}@media screen and (min-width:90em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}.grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .grid-frame{width:100%}.cell-block{max-width:100%;overflow-x:auto}.cell-block,.cell-block-y{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.cell-block-y{max-height:100%;min-height:100%;overflow-y:auto}.cell-block-container{display:flex;flex-direction:column;max-height:100%}.cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}@media print,screen and (min-width:40em){.medium-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .medium-grid-frame{width:100%}.medium-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.medium-cell-block-container{display:flex;flex-direction:column;max-height:100%}.medium-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.medium-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}@media print,screen and (min-width:64em){.large-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .large-grid-frame{width:100%}.large-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.large-cell-block-container{display:flex;flex-direction:column;max-height:100%}.large-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.large-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}@media screen and (min-width:75em){.xlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .xlarge-grid-frame{width:100%}.xlarge-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.xlarge-cell-block-container{display:flex;flex-direction:column;max-height:100%}.xlarge-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.xlarge-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}@media screen and (min-width:90em){.xxlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .xxlarge-grid-frame{width:100%}.xxlarge-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.xxlarge-cell-block-container{display:flex;flex-direction:column;max-height:100%}.xxlarge-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.xxlarge-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}.grid-y.grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}@media print,screen and (min-width:40em){.grid-y.medium-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}@media print,screen and (min-width:64em){.grid-y.large-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}@media screen and (min-width:75em){.grid-y.xlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}@media screen and (min-width:90em){.grid-y.xxlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}.cell .grid-y.grid-frame{height:100%}@media print,screen and (min-width:40em){.cell .grid-y.medium-grid-frame{height:100%}}@media print,screen and (min-width:64em){.cell .grid-y.large-grid-frame{height:100%}}@media screen and (min-width:75em){.cell .grid-y.xlarge-grid-frame{height:100%}}@media screen and (min-width:90em){.cell .grid-y.xxlarge-grid-frame{height:100%}}.grid-margin-y{margin-bottom:-.3333333333rem;margin-top:-.3333333333rem}@media print,screen and (min-width:40em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media print,screen and (min-width:64em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:75em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:90em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}.grid-margin-y>.cell{height:calc(100% - .66667rem);margin-bottom:.3333333333rem;margin-top:.3333333333rem}@media print,screen and (min-width:40em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}@media print,screen and (min-width:64em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}@media screen and (min-width:75em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}@media screen and (min-width:90em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - .66667rem)}.grid-margin-y>.small-2{height:calc(16.66667% - .66667rem)}.grid-margin-y>.small-3{height:calc(25% - .66667rem)}.grid-margin-y>.small-4{height:calc(33.33333% - .66667rem)}.grid-margin-y>.small-5{height:calc(41.66667% - .66667rem)}.grid-margin-y>.small-6{height:calc(50% - .66667rem)}.grid-margin-y>.small-7{height:calc(58.33333% - .66667rem)}.grid-margin-y>.small-8{height:calc(66.66667% - .66667rem)}.grid-margin-y>.small-9{height:calc(75% - .66667rem)}.grid-margin-y>.small-10{height:calc(83.33333% - .66667rem)}.grid-margin-y>.small-11{height:calc(91.66667% - .66667rem)}.grid-margin-y>.small-12{height:calc(100% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}.grid-margin-y>.large-auto,.grid-margin-y>.large-shrink{height:auto}.grid-margin-y>.large-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.large-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.large-3{height:calc(25% - 1.4rem)}.grid-margin-y>.large-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.large-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.large-6{height:calc(50% - 1.4rem)}.grid-margin-y>.large-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.large-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.large-9{height:calc(75% - 1.4rem)}.grid-margin-y>.large-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.large-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.large-12{height:calc(100% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}.grid-margin-y>.large-auto,.grid-margin-y>.large-shrink{height:auto}.grid-margin-y>.large-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.large-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.large-3{height:calc(25% - 1.4rem)}.grid-margin-y>.large-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.large-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.large-6{height:calc(50% - 1.4rem)}.grid-margin-y>.large-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.large-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.large-9{height:calc(75% - 1.4rem)}.grid-margin-y>.large-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.large-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.large-12{height:calc(100% - 1.4rem)}.grid-margin-y>.xlarge-auto,.grid-margin-y>.xlarge-shrink{height:auto}.grid-margin-y>.xlarge-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.xlarge-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.xlarge-3{height:calc(25% - 1.4rem)}.grid-margin-y>.xlarge-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.xlarge-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.xlarge-6{height:calc(50% - 1.4rem)}.grid-margin-y>.xlarge-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.xlarge-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.xlarge-9{height:calc(75% - 1.4rem)}.grid-margin-y>.xlarge-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.xlarge-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.xlarge-12{height:calc(100% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}.grid-margin-y>.large-auto,.grid-margin-y>.large-shrink{height:auto}.grid-margin-y>.large-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.large-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.large-3{height:calc(25% - 1.4rem)}.grid-margin-y>.large-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.large-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.large-6{height:calc(50% - 1.4rem)}.grid-margin-y>.large-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.large-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.large-9{height:calc(75% - 1.4rem)}.grid-margin-y>.large-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.large-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.large-12{height:calc(100% - 1.4rem)}.grid-margin-y>.xlarge-auto,.grid-margin-y>.xlarge-shrink{height:auto}.grid-margin-y>.xlarge-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.xlarge-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.xlarge-3{height:calc(25% - 1.4rem)}.grid-margin-y>.xlarge-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.xlarge-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.xlarge-6{height:calc(50% - 1.4rem)}.grid-margin-y>.xlarge-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.xlarge-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.xlarge-9{height:calc(75% - 1.4rem)}.grid-margin-y>.xlarge-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.xlarge-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.xlarge-12{height:calc(100% - 1.4rem)}.grid-margin-y>.xxlarge-auto,.grid-margin-y>.xxlarge-shrink{height:auto}.grid-margin-y>.xxlarge-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.xxlarge-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.xxlarge-3{height:calc(25% - 1.4rem)}.grid-margin-y>.xxlarge-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.xxlarge-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.xxlarge-6{height:calc(50% - 1.4rem)}.grid-margin-y>.xxlarge-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.xxlarge-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.xxlarge-9{height:calc(75% - 1.4rem)}.grid-margin-y>.xxlarge-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.xxlarge-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.xxlarge-12{height:calc(100% - 1.4rem)}}.grid-frame.grid-margin-y{height:calc(100vh + .66667rem)}@media print,screen and (min-width:40em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media print,screen and (min-width:64em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media screen and (min-width:75em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media screen and (min-width:90em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media print,screen and (min-width:40em){.grid-margin-y.medium-grid-frame{height:calc(100vh + 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-y.large-grid-frame{height:calc(100vh + 1.4rem)}}@media screen and (min-width:75em){.grid-margin-y.xlarge-grid-frame{height:calc(100vh + 1.4rem)}}@media screen and (min-width:90em){.grid-margin-y.xxlarge-grid-frame{height:calc(100vh + 1.4rem)}}.button{-webkit-appearance:none;border:1px solid transparent;border-radius:5px;cursor:pointer;display:inline-block;font-family:inherit;font-size:.9rem;line-height:1;margin:0 0 1rem;padding:.85em 1em;text-align:center;transition:background-color .25s ease-out,color .25s ease-out;vertical-align:middle}[data-whatinput=mouse] .button{outline:0}.button.tiny{font-size:.6rem}.button.small{font-size:.75rem}.button.large{font-size:1.25rem}.button.expanded{display:block;margin-left:0;margin-right:0;width:100%}.button,.button.disabled,.button.disabled:focus,.button.disabled:hover,.button[disabled],.button[disabled]:focus,.button[disabled]:hover{background-color:#3f729b;color:#fefefe}.button:focus,.button:hover{background-color:#366184;color:#fefefe}.button.primary,.button.primary.disabled,.button.primary.disabled:focus,.button.primary.disabled:hover,.button.primary[disabled],.button.primary[disabled]:focus,.button.primary[disabled]:hover{background-color:#3f729b;color:#fefefe}.button.primary:focus,.button.primary:hover{background-color:#325b7c;color:#fefefe}.button.secondary,.button.secondary.disabled,.button.secondary.disabled:focus,.button.secondary.disabled:hover,.button.secondary[disabled],.button.secondary[disabled]:focus,.button.secondary[disabled]:hover{background-color:#8bc34a;color:#0a0a0a}.button.secondary:focus,.button.secondary:hover{background-color:#70a236;color:#0a0a0a}.button.success,.button.success.disabled,.button.success.disabled:focus,.button.success.disabled:hover,.button.success[disabled],.button.success[disabled]:focus,.button.success[disabled]:hover{background-color:#4caf50;color:#0a0a0a}.button.success:focus,.button.success:hover{background-color:#3d8c40;color:#0a0a0a}.button.warning,.button.warning.disabled,.button.warning.disabled:focus,.button.warning.disabled:hover,.button.warning[disabled],.button.warning[disabled]:focus,.button.warning[disabled]:hover{background-color:#ffae00;color:#0a0a0a}.button.warning:focus,.button.warning:hover{background-color:#cc8b00;color:#0a0a0a}.button.alert,.button.alert.disabled,.button.alert.disabled:focus,.button.alert.disabled:hover,.button.alert[disabled],.button.alert[disabled]:focus,.button.alert[disabled]:hover{background-color:#cc4b37;color:#fefefe}.button.alert:focus,.button.alert:hover{background-color:#a53b2a;color:#fefefe}.button.hollow,.button.hollow.disabled,.button.hollow.disabled:focus,.button.hollow.disabled:hover,.button.hollow:focus,.button.hollow:hover,.button.hollow[disabled],.button.hollow[disabled]:focus,.button.hollow[disabled]:hover{background-color:transparent}.button.hollow,.button.hollow.disabled,.button.hollow.disabled:focus,.button.hollow.disabled:hover,.button.hollow[disabled],.button.hollow[disabled]:focus,.button.hollow[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button.hollow:focus,.button.hollow:hover{border-color:#20394e;color:#20394e}.button.hollow.primary,.button.hollow.primary.disabled,.button.hollow.primary.disabled:focus,.button.hollow.primary.disabled:hover,.button.hollow.primary[disabled],.button.hollow.primary[disabled]:focus,.button.hollow.primary[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button.hollow.primary:focus,.button.hollow.primary:hover{border-color:#20394e;color:#20394e}.button.hollow.secondary,.button.hollow.secondary.disabled,.button.hollow.secondary.disabled:focus,.button.hollow.secondary.disabled:hover,.button.hollow.secondary[disabled],.button.hollow.secondary[disabled]:focus,.button.hollow.secondary[disabled]:hover{border:1px solid #8bc34a;color:#8bc34a}.button.hollow.secondary:focus,.button.hollow.secondary:hover{border-color:#466521;color:#466521}.button.hollow.success,.button.hollow.success.disabled,.button.hollow.success.disabled:focus,.button.hollow.success.disabled:hover,.button.hollow.success[disabled],.button.hollow.success[disabled]:focus,.button.hollow.success[disabled]:hover{border:1px solid #4caf50;color:#4caf50}.button.hollow.success:focus,.button.hollow.success:hover{border-color:#265828;color:#265828}.button.hollow.warning,.button.hollow.warning.disabled,.button.hollow.warning.disabled:focus,.button.hollow.warning.disabled:hover,.button.hollow.warning[disabled],.button.hollow.warning[disabled]:focus,.button.hollow.warning[disabled]:hover{border:1px solid #ffae00;color:#ffae00}.button.hollow.warning:focus,.button.hollow.warning:hover{border-color:#805700;color:#805700}.button.hollow.alert,.button.hollow.alert.disabled,.button.hollow.alert.disabled:focus,.button.hollow.alert.disabled:hover,.button.hollow.alert[disabled],.button.hollow.alert[disabled]:focus,.button.hollow.alert[disabled]:hover{border:1px solid #cc4b37;color:#cc4b37}.button.hollow.alert:focus,.button.hollow.alert:hover{border-color:#67251a;color:#67251a}.button.clear,.button.clear.disabled,.button.clear.disabled:focus,.button.clear.disabled:hover,.button.clear:focus,.button.clear:hover,.button.clear[disabled],.button.clear[disabled]:focus,.button.clear[disabled]:hover{background-color:transparent;border-color:transparent}.button.clear,.button.clear.disabled,.button.clear.disabled:focus,.button.clear.disabled:hover,.button.clear[disabled],.button.clear[disabled]:focus,.button.clear[disabled]:hover{color:#3f729b}.button.clear:focus,.button.clear:hover{color:#20394e}.button.clear.primary,.button.clear.primary.disabled,.button.clear.primary.disabled:focus,.button.clear.primary.disabled:hover,.button.clear.primary[disabled],.button.clear.primary[disabled]:focus,.button.clear.primary[disabled]:hover{color:#3f729b}.button.clear.primary:focus,.button.clear.primary:hover{color:#20394e}.button.clear.secondary,.button.clear.secondary.disabled,.button.clear.secondary.disabled:focus,.button.clear.secondary.disabled:hover,.button.clear.secondary[disabled],.button.clear.secondary[disabled]:focus,.button.clear.secondary[disabled]:hover{color:#8bc34a}.button.clear.secondary:focus,.button.clear.secondary:hover{color:#466521}.button.clear.success,.button.clear.success.disabled,.button.clear.success.disabled:focus,.button.clear.success.disabled:hover,.button.clear.success[disabled],.button.clear.success[disabled]:focus,.button.clear.success[disabled]:hover{color:#4caf50}.button.clear.success:focus,.button.clear.success:hover{color:#265828}.button.clear.warning,.button.clear.warning.disabled,.button.clear.warning.disabled:focus,.button.clear.warning.disabled:hover,.button.clear.warning[disabled],.button.clear.warning[disabled]:focus,.button.clear.warning[disabled]:hover{color:#ffae00}.button.clear.warning:focus,.button.clear.warning:hover{color:#805700}.button.clear.alert,.button.clear.alert.disabled,.button.clear.alert.disabled:focus,.button.clear.alert.disabled:hover,.button.clear.alert[disabled],.button.clear.alert[disabled]:focus,.button.clear.alert[disabled]:hover{color:#cc4b37}.button.clear.alert:focus,.button.clear.alert:hover{color:#67251a}.button.disabled,.button[disabled]{cursor:not-allowed;opacity:.25}.button.dropdown:after{border-color:#fefefe transparent transparent;border-style:solid;border-width:.4em .4em 0;content:"";display:block;display:inline-block;float:right;height:0;margin-left:1em;position:relative;top:.4em;width:0}.button.dropdown.clear.primary:after,.button.dropdown.clear:after,.button.dropdown.hollow.primary:after,.button.dropdown.hollow:after{border-top-color:#3f729b}.button.dropdown.clear.secondary:after,.button.dropdown.hollow.secondary:after{border-top-color:#8bc34a}.button.dropdown.clear.success:after,.button.dropdown.hollow.success:after{border-top-color:#4caf50}.button.dropdown.clear.warning:after,.button.dropdown.hollow.warning:after{border-top-color:#ffae00}.button.dropdown.clear.alert:after,.button.dropdown.hollow.alert:after{border-top-color:#cc4b37}.button.arrow-only:after{float:none;margin-left:0;top:-.1em}a.button:focus,a.button:hover{text-decoration:none}.button-group{align-items:stretch;display:flex;flex-grow:1;flex-wrap:wrap;margin-bottom:1rem}.button-group:after,.button-group:before{content:" ";display:none;display:table;flex-basis:0;order:1}.button-group:after{clear:both}.button-group .button{flex:0 0 auto;font-size:.9rem;margin:0 1px 1px 0}.button-group .button:last-child{margin-right:0}.button-group.tiny .button{font-size:.6rem}.button-group.small .button{font-size:.75rem}.button-group.large .button{font-size:1.25rem}.button-group.expanded .button{flex:1 1 0px}.button-group.primary .button,.button-group.primary .button.disabled,.button-group.primary .button.disabled:focus,.button-group.primary .button.disabled:hover,.button-group.primary .button[disabled],.button-group.primary .button[disabled]:focus,.button-group.primary .button[disabled]:hover{background-color:#3f729b;color:#fefefe}.button-group.primary .button:focus,.button-group.primary .button:hover{background-color:#325b7c;color:#fefefe}.button-group.secondary .button,.button-group.secondary .button.disabled,.button-group.secondary .button.disabled:focus,.button-group.secondary .button.disabled:hover,.button-group.secondary .button[disabled],.button-group.secondary .button[disabled]:focus,.button-group.secondary .button[disabled]:hover{background-color:#8bc34a;color:#0a0a0a}.button-group.secondary .button:focus,.button-group.secondary .button:hover{background-color:#70a236;color:#0a0a0a}.button-group.success .button,.button-group.success .button.disabled,.button-group.success .button.disabled:focus,.button-group.success .button.disabled:hover,.button-group.success .button[disabled],.button-group.success .button[disabled]:focus,.button-group.success .button[disabled]:hover{background-color:#4caf50;color:#0a0a0a}.button-group.success .button:focus,.button-group.success .button:hover{background-color:#3d8c40;color:#0a0a0a}.button-group.warning .button,.button-group.warning .button.disabled,.button-group.warning .button.disabled:focus,.button-group.warning .button.disabled:hover,.button-group.warning .button[disabled],.button-group.warning .button[disabled]:focus,.button-group.warning .button[disabled]:hover{background-color:#ffae00;color:#0a0a0a}.button-group.warning .button:focus,.button-group.warning .button:hover{background-color:#cc8b00;color:#0a0a0a}.button-group.alert .button,.button-group.alert .button.disabled,.button-group.alert .button.disabled:focus,.button-group.alert .button.disabled:hover,.button-group.alert .button[disabled],.button-group.alert .button[disabled]:focus,.button-group.alert .button[disabled]:hover{background-color:#cc4b37;color:#fefefe}.button-group.alert .button:focus,.button-group.alert .button:hover{background-color:#a53b2a;color:#fefefe}.button-group.hollow .button,.button-group.hollow .button.disabled,.button-group.hollow .button.disabled:focus,.button-group.hollow .button.disabled:hover,.button-group.hollow .button:focus,.button-group.hollow .button:hover,.button-group.hollow .button[disabled],.button-group.hollow .button[disabled]:focus,.button-group.hollow .button[disabled]:hover{background-color:transparent}.button-group.hollow .button,.button-group.hollow .button.disabled,.button-group.hollow .button.disabled:focus,.button-group.hollow .button.disabled:hover,.button-group.hollow .button[disabled],.button-group.hollow .button[disabled]:focus,.button-group.hollow .button[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button-group.hollow .button:focus,.button-group.hollow .button:hover{border-color:#20394e;color:#20394e}.button-group.hollow .button.primary,.button-group.hollow .button.primary.disabled,.button-group.hollow .button.primary.disabled:focus,.button-group.hollow .button.primary.disabled:hover,.button-group.hollow .button.primary[disabled],.button-group.hollow .button.primary[disabled]:focus,.button-group.hollow .button.primary[disabled]:hover,.button-group.hollow.primary .button,.button-group.hollow.primary .button.disabled,.button-group.hollow.primary .button.disabled:focus,.button-group.hollow.primary .button.disabled:hover,.button-group.hollow.primary .button[disabled],.button-group.hollow.primary .button[disabled]:focus,.button-group.hollow.primary .button[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button-group.hollow .button.primary:focus,.button-group.hollow .button.primary:hover,.button-group.hollow.primary .button:focus,.button-group.hollow.primary .button:hover{border-color:#20394e;color:#20394e}.button-group.hollow .button.secondary,.button-group.hollow .button.secondary.disabled,.button-group.hollow .button.secondary.disabled:focus,.button-group.hollow .button.secondary.disabled:hover,.button-group.hollow .button.secondary[disabled],.button-group.hollow .button.secondary[disabled]:focus,.button-group.hollow .button.secondary[disabled]:hover,.button-group.hollow.secondary .button,.button-group.hollow.secondary .button.disabled,.button-group.hollow.secondary .button.disabled:focus,.button-group.hollow.secondary .button.disabled:hover,.button-group.hollow.secondary .button[disabled],.button-group.hollow.secondary .button[disabled]:focus,.button-group.hollow.secondary .button[disabled]:hover{border:1px solid #8bc34a;color:#8bc34a}.button-group.hollow .button.secondary:focus,.button-group.hollow .button.secondary:hover,.button-group.hollow.secondary .button:focus,.button-group.hollow.secondary .button:hover{border-color:#466521;color:#466521}.button-group.hollow .button.success,.button-group.hollow .button.success.disabled,.button-group.hollow .button.success.disabled:focus,.button-group.hollow .button.success.disabled:hover,.button-group.hollow .button.success[disabled],.button-group.hollow .button.success[disabled]:focus,.button-group.hollow .button.success[disabled]:hover,.button-group.hollow.success .button,.button-group.hollow.success .button.disabled,.button-group.hollow.success .button.disabled:focus,.button-group.hollow.success .button.disabled:hover,.button-group.hollow.success .button[disabled],.button-group.hollow.success .button[disabled]:focus,.button-group.hollow.success .button[disabled]:hover{border:1px solid #4caf50;color:#4caf50}.button-group.hollow .button.success:focus,.button-group.hollow .button.success:hover,.button-group.hollow.success .button:focus,.button-group.hollow.success .button:hover{border-color:#265828;color:#265828}.button-group.hollow .button.warning,.button-group.hollow .button.warning.disabled,.button-group.hollow .button.warning.disabled:focus,.button-group.hollow .button.warning.disabled:hover,.button-group.hollow .button.warning[disabled],.button-group.hollow .button.warning[disabled]:focus,.button-group.hollow .button.warning[disabled]:hover,.button-group.hollow.warning .button,.button-group.hollow.warning .button.disabled,.button-group.hollow.warning .button.disabled:focus,.button-group.hollow.warning .button.disabled:hover,.button-group.hollow.warning .button[disabled],.button-group.hollow.warning .button[disabled]:focus,.button-group.hollow.warning .button[disabled]:hover{border:1px solid #ffae00;color:#ffae00}.button-group.hollow .button.warning:focus,.button-group.hollow .button.warning:hover,.button-group.hollow.warning .button:focus,.button-group.hollow.warning .button:hover{border-color:#805700;color:#805700}.button-group.hollow .button.alert,.button-group.hollow .button.alert.disabled,.button-group.hollow .button.alert.disabled:focus,.button-group.hollow .button.alert.disabled:hover,.button-group.hollow .button.alert[disabled],.button-group.hollow .button.alert[disabled]:focus,.button-group.hollow .button.alert[disabled]:hover,.button-group.hollow.alert .button,.button-group.hollow.alert .button.disabled,.button-group.hollow.alert .button.disabled:focus,.button-group.hollow.alert .button.disabled:hover,.button-group.hollow.alert .button[disabled],.button-group.hollow.alert .button[disabled]:focus,.button-group.hollow.alert .button[disabled]:hover{border:1px solid #cc4b37;color:#cc4b37}.button-group.hollow .button.alert:focus,.button-group.hollow .button.alert:hover,.button-group.hollow.alert .button:focus,.button-group.hollow.alert .button:hover{border-color:#67251a;color:#67251a}.button-group.clear .button,.button-group.clear .button.disabled,.button-group.clear .button.disabled:focus,.button-group.clear .button.disabled:hover,.button-group.clear .button:focus,.button-group.clear .button:hover,.button-group.clear .button[disabled],.button-group.clear .button[disabled]:focus,.button-group.clear .button[disabled]:hover{background-color:transparent;border-color:transparent}.button-group.clear .button,.button-group.clear .button.disabled,.button-group.clear .button.disabled:focus,.button-group.clear .button.disabled:hover,.button-group.clear .button[disabled],.button-group.clear .button[disabled]:focus,.button-group.clear .button[disabled]:hover{color:#3f729b}.button-group.clear .button:focus,.button-group.clear .button:hover{color:#20394e}.button-group.clear .button.primary,.button-group.clear .button.primary.disabled,.button-group.clear .button.primary.disabled:focus,.button-group.clear .button.primary.disabled:hover,.button-group.clear .button.primary[disabled],.button-group.clear .button.primary[disabled]:focus,.button-group.clear .button.primary[disabled]:hover,.button-group.clear.primary .button,.button-group.clear.primary .button.disabled,.button-group.clear.primary .button.disabled:focus,.button-group.clear.primary .button.disabled:hover,.button-group.clear.primary .button[disabled],.button-group.clear.primary .button[disabled]:focus,.button-group.clear.primary .button[disabled]:hover{color:#3f729b}.button-group.clear .button.primary:focus,.button-group.clear .button.primary:hover,.button-group.clear.primary .button:focus,.button-group.clear.primary .button:hover{color:#20394e}.button-group.clear .button.secondary,.button-group.clear .button.secondary.disabled,.button-group.clear .button.secondary.disabled:focus,.button-group.clear .button.secondary.disabled:hover,.button-group.clear .button.secondary[disabled],.button-group.clear .button.secondary[disabled]:focus,.button-group.clear .button.secondary[disabled]:hover,.button-group.clear.secondary .button,.button-group.clear.secondary .button.disabled,.button-group.clear.secondary .button.disabled:focus,.button-group.clear.secondary .button.disabled:hover,.button-group.clear.secondary .button[disabled],.button-group.clear.secondary .button[disabled]:focus,.button-group.clear.secondary .button[disabled]:hover{color:#8bc34a}.button-group.clear .button.secondary:focus,.button-group.clear .button.secondary:hover,.button-group.clear.secondary .button:focus,.button-group.clear.secondary .button:hover{color:#466521}.button-group.clear .button.success,.button-group.clear .button.success.disabled,.button-group.clear .button.success.disabled:focus,.button-group.clear .button.success.disabled:hover,.button-group.clear .button.success[disabled],.button-group.clear .button.success[disabled]:focus,.button-group.clear .button.success[disabled]:hover,.button-group.clear.success .button,.button-group.clear.success .button.disabled,.button-group.clear.success .button.disabled:focus,.button-group.clear.success .button.disabled:hover,.button-group.clear.success .button[disabled],.button-group.clear.success .button[disabled]:focus,.button-group.clear.success .button[disabled]:hover{color:#4caf50}.button-group.clear .button.success:focus,.button-group.clear .button.success:hover,.button-group.clear.success .button:focus,.button-group.clear.success .button:hover{color:#265828}.button-group.clear .button.warning,.button-group.clear .button.warning.disabled,.button-group.clear .button.warning.disabled:focus,.button-group.clear .button.warning.disabled:hover,.button-group.clear .button.warning[disabled],.button-group.clear .button.warning[disabled]:focus,.button-group.clear .button.warning[disabled]:hover,.button-group.clear.warning .button,.button-group.clear.warning .button.disabled,.button-group.clear.warning .button.disabled:focus,.button-group.clear.warning .button.disabled:hover,.button-group.clear.warning .button[disabled],.button-group.clear.warning .button[disabled]:focus,.button-group.clear.warning .button[disabled]:hover{color:#ffae00}.button-group.clear .button.warning:focus,.button-group.clear .button.warning:hover,.button-group.clear.warning .button:focus,.button-group.clear.warning .button:hover{color:#805700}.button-group.clear .button.alert,.button-group.clear .button.alert.disabled,.button-group.clear .button.alert.disabled:focus,.button-group.clear .button.alert.disabled:hover,.button-group.clear .button.alert[disabled],.button-group.clear .button.alert[disabled]:focus,.button-group.clear .button.alert[disabled]:hover,.button-group.clear.alert .button,.button-group.clear.alert .button.disabled,.button-group.clear.alert .button.disabled:focus,.button-group.clear.alert .button.disabled:hover,.button-group.clear.alert .button[disabled],.button-group.clear.alert .button[disabled]:focus,.button-group.clear.alert .button[disabled]:hover{color:#cc4b37}.button-group.clear .button.alert:focus,.button-group.clear .button.alert:hover,.button-group.clear.alert .button:focus,.button-group.clear.alert .button:hover{color:#67251a}.button-group.no-gaps .button{margin-right:-.0666666667rem}.button-group.no-gaps .button+.button{border-left-color:transparent}.button-group.stacked,.button-group.stacked-for-medium,.button-group.stacked-for-small{flex-wrap:wrap}.button-group.stacked .button,.button-group.stacked-for-medium .button,.button-group.stacked-for-small .button{flex:0 0 100%}.button-group.stacked .button:last-child,.button-group.stacked-for-medium .button:last-child,.button-group.stacked-for-small .button:last-child{margin-bottom:0}.button-group.stacked-for-medium.expanded .button,.button-group.stacked-for-small.expanded .button,.button-group.stacked.expanded .button{flex:1 1 0px}@media print,screen and (min-width:40em){.button-group.stacked-for-small .button{flex:0 0 auto;margin-bottom:0}}@media print,screen and (min-width:64em){.button-group.stacked-for-medium .button{flex:0 0 auto;margin-bottom:0}}@media print,screen and (max-width:39.99875em){.button-group.stacked-for-small.expanded{display:block}.button-group.stacked-for-small.expanded .button{display:block;margin-right:0}}@media print,screen and (max-width:63.99875em){.button-group.stacked-for-medium.expanded{display:block}.button-group.stacked-for-medium.expanded .button{display:block;margin-right:0}}.close-button{color:#8a8a8a;cursor:pointer;position:absolute;z-index:10}[data-whatinput=mouse] .close-button{outline:0}.close-button:focus,.close-button:hover{color:#0a0a0a}.close-button.small{font-size:1.5em;line-height:1;right:.66rem;top:.33em}.close-button,.close-button.medium{font-size:2em;line-height:1;right:1rem;top:.5rem}.label{border-radius:0;cursor:default;display:inline-block;font-size:.8rem;line-height:1;padding:.33333rem .5rem;white-space:nowrap}.label,.label.primary{background:#3f729b;color:#fefefe}.label.secondary{background:#8bc34a;color:#0a0a0a}.label.success{background:#4caf50;color:#0a0a0a}.label.warning{background:#ffae00;color:#0a0a0a}.label.alert{background:#cc4b37;color:#fefefe}.progress{background-color:#cacaca;border-radius:0;height:1rem;margin-bottom:1rem}.progress.primary .progress-meter{background-color:#3f729b}.progress.secondary .progress-meter{background-color:#8bc34a}.progress.success .progress-meter{background-color:#4caf50}.progress.warning .progress-meter{background-color:#ffae00}.progress.alert .progress-meter{background-color:#cc4b37}.progress-meter{background-color:#3f729b;display:block;height:100%;position:relative;width:0}.progress-meter-text{color:#fefefe;font-size:.75rem;font-weight:700;left:50%;margin:0;position:absolute;top:50%;transform:translate(-50%,-50%);white-space:nowrap}.slider{background-color:#e6e6e6;cursor:pointer;height:.5rem;margin-bottom:2.25rem;margin-top:1.25rem;position:relative;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.slider-fill{background-color:#cacaca;display:inline-block;height:.5rem;left:0;max-width:100%;position:absolute;top:0;transition:all .2s ease-in-out}.slider-fill.is-dragging{transition:all 0s linear}.slider-handle{background-color:#3f729b;border-radius:0;cursor:grab;display:inline-block;height:1.4rem;left:0;position:absolute;top:50%;touch-action:manipulation;transform:translateY(-50%);transition:all .2s ease-in-out;width:1.4rem;z-index:1}[data-whatinput=mouse] .slider-handle{outline:0}.slider-handle:hover{background-color:#366184}.slider-handle.is-dragging{cursor:grabbing;transition:all 0s linear}.slider.disabled,.slider[disabled]{cursor:not-allowed;opacity:.25}.slider.vertical{display:inline-block;height:12.5rem;margin:0 1.25rem;transform:scaleY(-1);width:.5rem}.slider.vertical .slider-fill{max-height:100%;top:0;width:.5rem}.slider.vertical .slider-handle{height:1.4rem;left:50%;position:absolute;top:0;transform:translate(-50%);width:1.4rem}.switch{color:#fefefe;font-size:.9333333333rem;font-weight:700;height:2rem;margin-bottom:1rem;outline:0;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.switch-input{margin-bottom:0;opacity:0;position:absolute}.switch-paddle{background:#cacaca;border-radius:0;color:inherit;cursor:pointer;display:block;font-weight:inherit;height:2rem;position:relative;transition:all .25s ease-out;width:4rem}input+.switch-paddle{margin:0}.switch-paddle:after{background:#fefefe;border-radius:0;content:"";display:block;height:1.5rem;left:.25rem;position:absolute;top:.25rem;transform:translateZ(0);transition:all .25s ease-out;width:1.5rem}input:checked~.switch-paddle{background:#3f729b}input:checked~.switch-paddle:after{left:2.25rem}input:focus-visible~.switch-paddle{background:#b6b6b6}input:focus-visible~.switch-paddle:after{background:#fefefe}input:checked:focus-visible~.switch-paddle{background:#366184}input:disabled~.switch-paddle{cursor:not-allowed;opacity:.5}[data-whatinput=mouse] input:focus~.switch-paddle{outline:0}.switch-active,.switch-inactive{position:absolute;top:50%;transform:translateY(-50%)}.switch-active{display:none;left:8%}input:checked+label>.switch-active{display:block}.switch-inactive{right:15%}input:checked+label>.switch-inactive{display:none}.switch.tiny{height:1.5rem}.switch.tiny .switch-paddle{font-size:.6666666667rem;height:1.5rem;width:3rem}.switch.tiny .switch-paddle:after{height:1rem;left:.25rem;top:.25rem;width:1rem}.switch.tiny input:checked~.switch-paddle:after{left:1.75rem}.switch.small{height:1.75rem}.switch.small .switch-paddle{font-size:.8rem;height:1.75rem;width:3.5rem}.switch.small .switch-paddle:after{height:1.25rem;left:.25rem;top:.25rem;width:1.25rem}.switch.small input:checked~.switch-paddle:after{left:2rem}.switch.large{height:2.5rem}.switch.large .switch-paddle{font-size:1.0666666667rem;height:2.5rem;width:5rem}.switch.large .switch-paddle:after{height:2rem;left:.25rem;top:.25rem;width:2rem}.switch.large input:checked~.switch-paddle:after{left:2.75rem}table{border-collapse:collapse;border-radius:0;margin-bottom:1rem;width:100%}tbody,tfoot,thead{background-color:#fefefe;border:1px solid #f1f1f1}caption{font-weight:700;padding:.5333333333rem .6666666667rem .6666666667rem}thead{background:transparent}tfoot,thead{color:#0a0a0a}tfoot{background:#f1f1f1}tfoot tr,thead tr{background:transparent}tfoot td,tfoot th,thead td,thead th{font-weight:700;text-align:left}tbody td,tbody th,tfoot td,tfoot th,thead td,thead th{padding:.5333333333rem .6666666667rem .6666666667rem}tbody tr{background-color:#fefefe;border-bottom:1px solid #f1f1f1}@media print,screen and (max-width:63.99875em){table.stack tfoot,table.stack thead{display:none}table.stack td,table.stack th,table.stack tr{display:block}table.stack td{border-top:0}}table.scroll{display:block;overflow-x:auto;width:100%}table.hover thead tr:hover{background-color:#05050500}table.hover tfoot tr:hover{background-color:#f6f6f6}table.hover tbody tr:hover{background-color:#fff}.table-scroll{overflow-x:auto}.badge{border-radius:50%;display:inline-block;font-size:.6rem;min-width:2.1em;padding:.3em;text-align:center}.badge,.badge.primary{background:#3f729b;color:#fefefe}.badge.secondary{background:#8bc34a;color:#0a0a0a}.badge.success{background:#4caf50;color:#0a0a0a}.badge.warning{background:#ffae00;color:#0a0a0a}.badge.alert{background:#cc4b37;color:#fefefe}.breadcrumbs{list-style:none;margin:0 0 1rem}.breadcrumbs:after,.breadcrumbs:before{content:" ";display:table;flex-basis:0;order:1}.breadcrumbs:after{clear:both}.breadcrumbs li{color:#0a0a0a;cursor:default;float:left;font-size:.7333333333rem;text-transform:uppercase}.breadcrumbs li:not(:last-child):after{color:#cacaca;content:"/";margin:0 .75rem;opacity:1;position:relative}.breadcrumbs a{color:#3f729b}.breadcrumbs a:hover{text-decoration:underline}.breadcrumbs .disabled{color:#cacaca;cursor:not-allowed}.callout{background-color:#fff;border:1px solid hsla(0,0%,4%,.25);border-radius:0;color:#0a0a0a;margin:0 0 1rem;padding:1rem;position:relative}.callout>:first-child{margin-top:0}.callout>:last-child{margin-bottom:0}.callout.primary{background-color:#e0eaf2;color:#0a0a0a}.callout.secondary{background-color:#eef6e4;color:#0a0a0a}.callout.success{background-color:#e4f3e5;color:#0a0a0a}.callout.warning{background-color:#fff3d9;color:#0a0a0a}.callout.alert{background-color:#f7e4e1;color:#0a0a0a}.callout.small{padding:.5rem}.callout.large{padding:3rem}.card{background:#fefefe;border:1px solid #e6e6e6;border-radius:0;box-shadow:none;color:#0a0a0a;display:flex;flex-direction:column;flex-grow:1;margin-bottom:1rem;overflow:hidden}.card>:last-child{margin-bottom:0}.card-divider{background:#e6e6e6;display:flex;flex:0 1 auto;padding:1rem}.card-divider>:last-child{margin-bottom:0}.card-section{flex:1 0 auto;padding:1rem}.card-section>:last-child{margin-bottom:0}.card-image{min-height:1px}.dropdown-pane{background-color:#fefefe;border:1px solid #cacaca;border-radius:0;display:none;font-size:1rem;padding:1rem;position:absolute;visibility:hidden;width:300px;z-index:10}.dropdown-pane.is-opening{display:block}.dropdown-pane.is-open{display:block;visibility:visible}.dropdown-pane.tiny{width:100px}.dropdown-pane.small{width:200px}.dropdown-pane.large{width:400px}.pagination{margin-bottom:1rem;margin-left:0}.pagination:after,.pagination:before{content:" ";display:table;flex-basis:0;order:1}.pagination:after{clear:both}.pagination li{border-radius:0;display:none;font-size:.9333333333rem;margin-right:.0666666667rem}.pagination li:first-child,.pagination li:last-child{display:inline-block}@media print,screen and (min-width:40em){.pagination li{display:inline-block}}.pagination a,.pagination button{border-radius:0;color:#0a0a0a;display:block;padding:.2rem .6666666667rem}.pagination a:hover,.pagination button:hover{background:#e6e6e6}.pagination .current{background:#3f729b;color:#fefefe;cursor:default;padding:.2rem .6666666667rem}.pagination .disabled{color:#cacaca;cursor:not-allowed;padding:.2rem .6666666667rem}.pagination .disabled:hover{background:transparent}.pagination .ellipsis:after{color:#0a0a0a;content:"…";padding:.2rem .6666666667rem}.pagination-previous a:before,.pagination-previous.disabled:before{content:"«";display:inline-block;margin-right:.5rem}.pagination-next a:after,.pagination-next.disabled:after{content:"»";display:inline-block;margin-left:.5rem}.has-tip{border-bottom:1px dotted #8a8a8a;cursor:help;display:inline-block;font-weight:700;position:relative}.tooltip{background-color:#0a0a0a;border-radius:0;color:#fefefe;font-size:80%;max-width:10rem;padding:.75rem;top:calc(100% + .6495rem);z-index:1200}.tooltip,.tooltip:before{position:absolute}.tooltip.bottom:before{border-color:transparent transparent #0a0a0a;border-style:solid;border-width:0 .75rem .75rem;bottom:100%;content:"";display:block;height:0;width:0}.tooltip.bottom.align-center:before{left:50%;transform:translate(-50%)}.tooltip.top:before{border-color:#0a0a0a transparent transparent;border-style:solid;border-width:.75rem .75rem 0;bottom:auto;content:"";display:block;height:0;top:100%;width:0}.tooltip.top.align-center:before{left:50%;transform:translate(-50%)}.tooltip.left:before{border-color:transparent transparent transparent #0a0a0a;border-style:solid;border-width:.75rem 0 .75rem .75rem;content:"";display:block;height:0;left:100%;width:0}.tooltip.left.align-center:before{bottom:auto;top:50%;transform:translateY(-50%)}.tooltip.right:before{border-color:transparent #0a0a0a transparent transparent;border-style:solid;border-width:.75rem .75rem .75rem 0;content:"";display:block;height:0;left:auto;right:100%;width:0}.tooltip.right.align-center:before{bottom:auto;top:50%;transform:translateY(-50%)}.tooltip.align-top:before{bottom:auto;top:10%}.tooltip.align-bottom:before{bottom:10%;top:auto}.tooltip.align-left:before{left:10%;right:auto}.tooltip.align-right:before{left:auto;right:10%}.accordion{background:#fefefe;list-style-type:none;margin-left:0}.accordion[disabled] .accordion-title{cursor:not-allowed}.accordion-item:first-child>:first-child,.accordion-item:last-child>:last-child{border-radius:0}.accordion-title{border:1px solid #e6e6e6;border-bottom:0;color:#3f729b;display:block;font-size:.8rem;line-height:1;padding:1.25rem 1rem;position:relative}:last-child:not(.is-active)>.accordion-title{border-bottom:1px solid #e6e6e6;border-radius:0}.accordion-title:focus,.accordion-title:hover{background-color:#e6e6e6}.accordion-title:before{content:"+";margin-top:-.5rem;position:absolute;right:1rem;top:50%}.is-active>.accordion-title:before{content:"–"}.accordion-content{background-color:#fefefe;border:1px solid #e6e6e6;border-bottom:0;color:#0a0a0a;display:none;padding:1rem}:last-child>.accordion-content:last-child{border-bottom:1px solid #e6e6e6}.media-object{display:flex;flex-wrap:nowrap;margin-bottom:0}.media-object img{max-width:none}@media print,screen and (max-width:39.99875em){.media-object.stack-for-small{flex-wrap:wrap}}.media-object-section{flex:0 1 auto}.media-object-section:first-child{padding-right:1rem}.media-object-section:last-child:not(:nth-child(2)){padding-left:1rem}.media-object-section>:last-child{margin-bottom:0}@media print,screen and (max-width:39.99875em){.stack-for-small .media-object-section{flex-basis:100%;max-width:100%;padding:0 0 1rem}.stack-for-small .media-object-section img{width:100%}}.media-object-section.main-section{flex:1 1 0px}.orbit,.orbit-container{position:relative}.orbit-container{height:0;list-style:none;margin:0;overflow:hidden}.orbit-slide{position:absolute;width:100%}.orbit-slide.no-motionui.is-active{left:0;top:0}.orbit-figure{margin:0}.orbit-image{margin:0;max-width:100%;width:100%}.orbit-caption{background-color:#0a0a0a80;bottom:0;margin-bottom:0;width:100%}.orbit-caption,.orbit-next,.orbit-previous{color:#fefefe;padding:1rem;position:absolute}.orbit-next,.orbit-previous{top:50%;transform:translateY(-50%);z-index:10}[data-whatinput=mouse] .orbit-next,[data-whatinput=mouse] .orbit-previous{outline:0}.orbit-next:active,.orbit-next:focus,.orbit-next:hover,.orbit-previous:active,.orbit-previous:focus,.orbit-previous:hover{background-color:#0a0a0a80}.orbit-previous{left:0}.orbit-next{left:auto;right:0}.orbit-bullets{margin-bottom:.8rem;margin-top:.8rem;position:relative;text-align:center}[data-whatinput=mouse] .orbit-bullets{outline:0}.orbit-bullets button{background-color:#cacaca;border-radius:50%;height:1.2rem;margin:.1rem;width:1.2rem}.orbit-bullets button.is-active,.orbit-bullets button:hover{background-color:#8a8a8a}.flex-video,.responsive-embed{height:0;margin-bottom:1.0666666667rem;overflow:hidden;padding-bottom:75%;position:relative}.flex-video embed,.flex-video iframe,.flex-video object,.flex-video video,.responsive-embed embed,.responsive-embed iframe,.responsive-embed object,.responsive-embed video{height:100%;left:0;position:absolute;top:0;width:100%}.flex-video.widescreen,.responsive-embed.widescreen{padding-bottom:56.25%}.tabs{background:#fefefe;border:1px solid #e6e6e6;list-style-type:none;margin:0}.tabs:after,.tabs:before{content:" ";display:table;flex-basis:0;order:1}.tabs:after{clear:both}.tabs.vertical>li{display:block;float:none;width:auto}.tabs.simple>li>a{padding:0}.tabs.simple>li>a:hover{background:transparent}.tabs.primary{background:#3f729b}.tabs.primary>li>a{color:#fefefe}.tabs.primary>li>a:focus,.tabs.primary>li>a:hover{background:#3c6c93}.tabs-title{float:left}.tabs-title>a{color:#3f729b;display:block;font-size:.9333333333rem;line-height:1;padding:1.25rem 1.5rem}[data-whatinput=mouse] .tabs-title>a{outline:0}.tabs-title>a:hover{background:#fefefe;color:#366285}.tabs-title>a:focus,.tabs-title>a[aria-selected=true]{background:#3f729b;color:#fefefe}.tabs-content{background:#fefefe;border:1px solid #e6e6e6;border-top:0;color:#0a0a0a;transition:all .5s ease}.tabs-content.vertical{border:1px solid #e6e6e6;border-left:0}.tabs-panel{display:none;padding:1rem}.tabs-panel.is-active{display:block}.thumbnail{border:4px solid #fefefe;border-radius:0;box-shadow:0 0 0 1px #0a0a0a33;display:inline-block;line-height:0;margin-bottom:1rem;max-width:100%}a.thumbnail{transition:box-shadow .2s ease-out}a.thumbnail:focus,a.thumbnail:hover{box-shadow:0 0 6px 1px #3f729b80}a.thumbnail image{box-shadow:none}.menu{display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0;position:relative}[data-whatinput=mouse] .menu li{outline:0}.menu .button,.menu a{display:block;line-height:1;padding:.7rem 1rem;text-decoration:none}.menu a,.menu button,.menu input,.menu select{margin-bottom:0}.menu input{display:inline-block}.menu,.menu.horizontal{flex-direction:row;flex-wrap:wrap}.menu.vertical{flex-direction:column;flex-wrap:nowrap}.menu.vertical.icon-bottom li a i,.menu.vertical.icon-bottom li a img,.menu.vertical.icon-bottom li a svg,.menu.vertical.icon-top li a i,.menu.vertical.icon-top li a img,.menu.vertical.icon-top li a svg{text-align:left}.menu.expanded li{flex:1 1 0px}.menu.expanded.icon-bottom li a i,.menu.expanded.icon-bottom li a img,.menu.expanded.icon-bottom li a svg,.menu.expanded.icon-top li a i,.menu.expanded.icon-top li a img,.menu.expanded.icon-top li a svg{text-align:left}.menu.simple{align-items:center}.menu.simple li+li{margin-left:1rem}.menu.simple a{padding:0}@media print,screen and (min-width:40em){.menu.medium-horizontal{flex-direction:row;flex-wrap:wrap}.menu.medium-vertical{flex-direction:column;flex-wrap:nowrap}.menu.medium-expanded li,.menu.medium-simple li{flex:1 1 0px}}@media print,screen and (min-width:64em){.menu.large-horizontal{flex-direction:row;flex-wrap:wrap}.menu.large-vertical{flex-direction:column;flex-wrap:nowrap}.menu.large-expanded li,.menu.large-simple li{flex:1 1 0px}}@media screen and (min-width:75em){.menu.xlarge-horizontal{flex-direction:row;flex-wrap:wrap}.menu.xlarge-vertical{flex-direction:column;flex-wrap:nowrap}.menu.xlarge-expanded li,.menu.xlarge-simple li{flex:1 1 0px}}@media screen and (min-width:90em){.menu.xxlarge-horizontal{flex-direction:row;flex-wrap:wrap}.menu.xxlarge-vertical{flex-direction:column;flex-wrap:nowrap}.menu.xxlarge-expanded li,.menu.xxlarge-simple li{flex:1 1 0px}}.menu.nested{margin-left:1rem;margin-right:0}.menu.icon-bottom a,.menu.icon-left a,.menu.icon-right a,.menu.icon-top a,.menu.icons a{display:flex}.menu.icon-left li a,.menu.nested.icon-left li a{flex-flow:row nowrap}.menu.icon-left li a i,.menu.icon-left li a img,.menu.icon-left li a svg,.menu.nested.icon-left li a i,.menu.nested.icon-left li a img,.menu.nested.icon-left li a svg{margin-right:.25rem}.menu.icon-right li a,.menu.nested.icon-right li a{flex-flow:row nowrap}.menu.icon-right li a i,.menu.icon-right li a img,.menu.icon-right li a svg,.menu.nested.icon-right li a i,.menu.nested.icon-right li a img,.menu.nested.icon-right li a svg{margin-left:.25rem}.menu.icon-top li a,.menu.nested.icon-top li a{flex-flow:column nowrap}.menu.icon-top li a i,.menu.icon-top li a img,.menu.icon-top li a svg,.menu.nested.icon-top li a i,.menu.nested.icon-top li a img,.menu.nested.icon-top li a svg{align-self:stretch;margin-bottom:.25rem;text-align:center}.menu.icon-bottom li a,.menu.nested.icon-bottom li a{flex-flow:column nowrap}.menu.icon-bottom li a i,.menu.icon-bottom li a img,.menu.icon-bottom li a svg,.menu.nested.icon-bottom li a i,.menu.nested.icon-bottom li a img,.menu.nested.icon-bottom li a svg{align-self:stretch;margin-bottom:.25rem;text-align:center}.menu .active>a,.menu .is-active>a{background:#3f729b;color:#fefefe}.menu.align-left{justify-content:flex-start}.menu.align-right li{display:flex;justify-content:flex-end}.menu.align-right li .submenu li{justify-content:flex-start}.menu.align-right.vertical li{display:block;text-align:right}.menu.align-right.icon-bottom li a i,.menu.align-right.icon-bottom li a img,.menu.align-right.icon-bottom li a svg,.menu.align-right.icon-top li a i,.menu.align-right.icon-top li a img,.menu.align-right.icon-top li a svg,.menu.align-right.vertical li .submenu li{text-align:right}.menu.align-right .nested{margin-left:0;margin-right:1rem}.menu.align-center li{display:flex;justify-content:center}.menu.align-center li .submenu li{justify-content:flex-start}.menu .menu-text{color:inherit;font-weight:700;line-height:1;padding:.7rem 1rem}.menu-centered>.menu{justify-content:center}.menu-centered>.menu li{display:flex;justify-content:center}.menu-centered>.menu li .submenu li{justify-content:flex-start}.no-js [data-responsive-menu] ul{display:none}.menu-icon{cursor:pointer;display:inline-block;height:16px;position:relative;vertical-align:middle;width:20px}.menu-icon:after{background:#fefefe;box-shadow:0 7px #fefefe,0 14px #fefefe;content:"";display:block;height:2px;left:0;position:absolute;top:0;width:100%}.menu-icon:hover:after{background:#cacaca;box-shadow:0 7px #cacaca,0 14px #cacaca}.menu-icon.dark{cursor:pointer;display:inline-block;height:16px;position:relative;vertical-align:middle;width:20px}.menu-icon.dark:after{background:#0a0a0a;box-shadow:0 7px #0a0a0a,0 14px #0a0a0a;content:"";display:block;height:2px;left:0;position:absolute;top:0;width:100%}.menu-icon.dark:hover:after{background:#8a8a8a;box-shadow:0 7px #8a8a8a,0 14px #8a8a8a}.accordion-menu li{width:100%}.accordion-menu .is-accordion-submenu a,.accordion-menu a{padding:.7rem 1rem}.accordion-menu .nested.is-accordion-submenu{margin-left:1rem;margin-right:0}.accordion-menu.align-right .nested.is-accordion-submenu{margin-left:0;margin-right:1rem}.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a{position:relative}.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;margin-top:-3px;position:absolute;right:1rem;top:50%;width:0}.accordion-menu.align-left .is-accordion-submenu-parent>a:after{left:auto;right:1rem}.accordion-menu.align-right .is-accordion-submenu-parent>a:after{left:1rem;right:auto}.accordion-menu .is-accordion-submenu-parent[aria-expanded=true]>a:after{transform:rotate(180deg);transform-origin:50% 50%}.is-accordion-submenu-parent{position:relative}.has-submenu-toggle>a{margin-right:40px}.submenu-toggle{cursor:pointer;height:40px;position:absolute;right:0;top:0;width:40px}.submenu-toggle:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;bottom:0;content:"";display:block;height:0;margin:auto;top:0;width:0}.submenu-toggle[aria-expanded=true]:after{transform:scaleY(-1);transform-origin:50% 50%}.submenu-toggle-text{height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;clip:rect(0,0,0,0)!important;border:0!important;white-space:nowrap!important}.is-drilldown{overflow:hidden;position:relative}.is-drilldown li{display:block}.is-drilldown.animate-height{transition:height .5s}.drilldown a{background:#fefefe;padding:.7rem 1rem}.drilldown .is-drilldown-submenu{background:#fefefe;left:100%;position:absolute;top:0;transition:transform .15s linear;width:100%;z-index:-1}.drilldown .is-drilldown-submenu.is-active{display:block;transform:translate(-100%);z-index:1}.drilldown .is-drilldown-submenu.is-closing{transform:translate(100%)}.drilldown .is-drilldown-submenu a{padding:.7rem 1rem}.drilldown .nested.is-drilldown-submenu{margin-left:0;margin-right:0}.drilldown .drilldown-submenu-cover-previous{min-height:100%}.drilldown .is-drilldown-submenu-parent>a{position:relative}.drilldown .is-drilldown-submenu-parent>a:after{margin-top:-6px;position:absolute;top:50%}.drilldown .is-drilldown-submenu-parent>a:after,.drilldown.align-left .is-drilldown-submenu-parent>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;right:1rem;width:0}.drilldown.align-left .is-drilldown-submenu-parent>a:after{left:auto}.drilldown.align-right .is-drilldown-submenu-parent>a:after{left:1rem;right:auto}.drilldown .js-drilldown-back>a:before,.drilldown.align-right .is-drilldown-submenu-parent>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;width:0}.drilldown .js-drilldown-back>a:before{display:inline-block;margin-right:.75rem;vertical-align:middle}.dropdown.menu>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}[data-whatinput=mouse] .dropdown.menu a{outline:0}.dropdown.menu>li>a{background:#fefefe;padding:.7rem 1rem}.dropdown.menu>li.is-active>a{background:transparent;color:#3f729b}.no-js .dropdown.menu ul{display:none}.dropdown.menu .nested.is-dropdown-submenu{margin-left:0;margin-right:0}.dropdown.menu.vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.vertical>li>a:after{right:14px}.dropdown.menu.vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}@media print,screen and (min-width:40em){.dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.medium-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.medium-vertical>li>a:after{right:14px}.dropdown.menu.medium-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.medium-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}@media print,screen and (min-width:64em){.dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.large-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.large-vertical>li>a:after{right:14px}.dropdown.menu.large-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.large-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}@media screen and (min-width:75em){.dropdown.menu.xlarge-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.xlarge-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.xlarge-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.xlarge-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.xlarge-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.xlarge-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.xlarge-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.xlarge-vertical>li>a:after{right:14px}.dropdown.menu.xlarge-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.xlarge-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}@media screen and (min-width:90em){.dropdown.menu.xxlarge-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.xxlarge-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.xxlarge-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.xxlarge-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.xxlarge-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.xxlarge-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.xxlarge-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.xxlarge-vertical>li>a:after{right:14px}.dropdown.menu.xxlarge-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.xxlarge-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}.dropdown.menu.align-right .is-dropdown-submenu.first-sub{left:auto;right:0;top:100%}.is-dropdown-menu.vertical{width:100px}.is-dropdown-menu.vertical.align-right{float:right}.is-dropdown-submenu-parent{position:relative}.is-dropdown-submenu-parent a:after{left:auto;margin-top:-6px;position:absolute;right:5px;top:50%}.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu{left:auto;top:100%}.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu{left:auto;right:100%}.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu{left:100%;right:auto}.is-dropdown-submenu{background:#fefefe;border:1px solid #cacaca;display:none;left:100%;min-width:200px;position:absolute;top:0;z-index:1}.dropdown .is-dropdown-submenu a{padding:.7rem 1rem}.is-dropdown-submenu .is-dropdown-submenu-parent>a:after{right:14px}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}.is-dropdown-submenu .is-dropdown-submenu{margin-top:-1px}.is-dropdown-submenu>li{width:100%}.is-dropdown-submenu.js-dropdown-active{display:block}.is-off-canvas-open{overflow:hidden}.js-off-canvas-overlay{background:#ffffff40;height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity .5s ease,visibility .5s ease;visibility:hidden;width:100%;z-index:11}.js-off-canvas-overlay.is-visible{opacity:1;visibility:visible}.js-off-canvas-overlay.is-closable{cursor:pointer}.js-off-canvas-overlay.is-overlay-absolute{position:absolute}.js-off-canvas-overlay.is-overlay-fixed{position:fixed}.off-canvas-wrapper{overflow:hidden;position:relative}.off-canvas{backface-visibility:hidden;background:#e6e6e6;position:fixed;transition:transform .5s ease;z-index:12}[data-whatinput=mouse] .off-canvas{outline:0}.off-canvas.is-transition-push{z-index:12}.off-canvas.is-closed{visibility:hidden}.off-canvas.is-transition-overlap{z-index:13}.off-canvas.is-transition-overlap.is-open{box-shadow:0 0 10px #0a0a0ab3}.off-canvas.is-open{transform:translate(0)}.off-canvas-absolute{backface-visibility:hidden;background:#e6e6e6;position:absolute;transition:transform .5s ease;z-index:12}[data-whatinput=mouse] .off-canvas-absolute{outline:0}.off-canvas-absolute.is-transition-push{z-index:12}.off-canvas-absolute.is-closed{visibility:hidden}.off-canvas-absolute.is-transition-overlap{z-index:13}.off-canvas-absolute.is-transition-overlap.is-open{box-shadow:0 0 10px #0a0a0ab3}.off-canvas-absolute.is-open{transform:translate(0)}.position-left{height:100%;left:0;overflow-y:auto;top:0;-webkit-overflow-scrolling:touch;width:250px}.off-canvas-content .off-canvas.position-left,.position-left{transform:translate(-250px)}.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-left.has-transition-push{transform:translate(250px)}.position-left.is-transition-push{box-shadow:inset -13px 0 20px -13px #0a0a0a40}.position-right{height:100%;overflow-y:auto;right:0;top:0;-webkit-overflow-scrolling:touch;width:250px}.off-canvas-content .off-canvas.position-right,.position-right{transform:translate(250px)}.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-right.has-transition-push{transform:translate(-250px)}.position-right.is-transition-push{box-shadow:inset 13px 0 20px -13px #0a0a0a40}.position-top{left:0;overflow-x:auto;top:0;width:100%;-webkit-overflow-scrolling:touch;height:250px}.off-canvas-content .off-canvas.position-top,.position-top{transform:translateY(-250px)}.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-top.has-transition-push{transform:translateY(250px)}.position-top.is-transition-push{box-shadow:inset 0 -13px 20px -13px #0a0a0a40}.position-bottom{bottom:0;left:0;overflow-x:auto;width:100%;-webkit-overflow-scrolling:touch;height:250px}.off-canvas-content .off-canvas.position-bottom,.position-bottom{transform:translateY(250px)}.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-bottom.has-transition-push{transform:translateY(-250px)}.position-bottom.is-transition-push{box-shadow:inset 0 13px 20px -13px #0a0a0a40}.off-canvas-content{backface-visibility:hidden;transform:none}.off-canvas-content.has-transition-overlap,.off-canvas-content.has-transition-push{transition:transform .5s ease}.off-canvas-content .off-canvas.is-open,.off-canvas-content.has-transition-push{transform:translate(0)}@media print,screen and (min-width:40em){.position-left.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-medium .close-button{display:none}.off-canvas-content .position-left.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-medium~.off-canvas-content{margin-left:250px}.position-right.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-medium .close-button{display:none}.off-canvas-content .position-right.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-medium~.off-canvas-content{margin-right:250px}.position-top.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-medium .close-button{display:none}.off-canvas-content .position-top.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-medium~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-medium .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-medium~.off-canvas-content{margin-bottom:250px}}@media print,screen and (min-width:64em){.position-left.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-large .close-button{display:none}.off-canvas-content .position-left.reveal-for-large{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-large~.off-canvas-content{margin-left:250px}.position-right.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-large .close-button{display:none}.off-canvas-content .position-right.reveal-for-large{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-large~.off-canvas-content{margin-right:250px}.position-top.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-large .close-button{display:none}.off-canvas-content .position-top.reveal-for-large{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-large~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-large .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-large{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-large~.off-canvas-content{margin-bottom:250px}}@media screen and (min-width:75em){.position-left.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-left.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-xlarge~.off-canvas-content{margin-left:250px}.position-right.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-right.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-xlarge~.off-canvas-content{margin-right:250px}.position-top.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-top.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-xlarge~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-xlarge~.off-canvas-content{margin-bottom:250px}}@media screen and (min-width:90em){.position-left.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-left.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-xxlarge~.off-canvas-content{margin-left:250px}.position-right.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-right.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-xxlarge~.off-canvas-content{margin-right:250px}.position-top.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-top.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-xxlarge~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-xxlarge~.off-canvas-content{margin-bottom:250px}}@media print,screen and (min-width:40em){.off-canvas.in-canvas-for-medium{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-medium.position-bottom,.off-canvas.in-canvas-for-medium.position-left,.off-canvas.in-canvas-for-medium.position-right,.off-canvas.in-canvas-for-medium.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-medium .close-button{display:none}}@media print,screen and (min-width:64em){.off-canvas.in-canvas-for-large{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-large.position-bottom,.off-canvas.in-canvas-for-large.position-left,.off-canvas.in-canvas-for-large.position-right,.off-canvas.in-canvas-for-large.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-large .close-button{display:none}}@media screen and (min-width:75em){.off-canvas.in-canvas-for-xlarge{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-xlarge.position-bottom,.off-canvas.in-canvas-for-xlarge.position-left,.off-canvas.in-canvas-for-xlarge.position-right,.off-canvas.in-canvas-for-xlarge.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-xlarge .close-button{display:none}}@media screen and (min-width:90em){.off-canvas.in-canvas-for-xxlarge{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-xxlarge.position-bottom,.off-canvas.in-canvas-for-xxlarge.position-left,.off-canvas.in-canvas-for-xxlarge.position-right,.off-canvas.in-canvas-for-xxlarge.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-xxlarge .close-button{display:none}}html.is-reveal-open{overflow-y:hidden;position:fixed;width:100%}html.is-reveal-open.zf-has-scroll{overflow-y:scroll;-webkit-overflow-scrolling:touch}html.is-reveal-open body{overflow-y:hidden}.reveal-overlay{background-color:#0a0a0a73;inset:0;position:fixed;z-index:1005}.reveal,.reveal-overlay{display:none;overflow-y:auto;-webkit-overflow-scrolling:touch}.reveal{backface-visibility:hidden;background-color:#fefefe;border:1px solid #cacaca;border-radius:10px;margin-left:auto;margin-right:auto;padding:1rem;position:relative;top:100px;z-index:1006}[data-whatinput=mouse] .reveal{outline:0}@media print,screen and (min-width:40em){.reveal{min-height:0}}.reveal .column{min-width:0}.reveal>:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.reveal{max-width:80rem;width:600px}}.reveal.collapse{padding:0}@media print,screen and (min-width:40em){.reveal.tiny{max-width:80rem;width:30%}.reveal.small{max-width:80rem;width:50%}.reveal.large{max-width:80rem;width:90%}}.reveal.full{border:0;border-radius:0;height:100%;inset:0;margin-left:0;max-width:none;min-height:100%;width:100%}@media print,screen and (max-width:39.99875em){.reveal{border:0;border-radius:0;height:100%;inset:0;margin-left:0;max-width:none;min-height:100%;width:100%}}.reveal.without-overlay{position:fixed}.sticky,.sticky-container{position:relative}.sticky{transform:translateZ(0);z-index:0}.sticky.is-stuck{position:fixed;width:100%;z-index:5}.sticky.is-stuck.is-at-top{top:0}.sticky.is-stuck.is-at-bottom{bottom:0}.sticky.is-anchored{left:auto;position:relative;right:auto}.sticky.is-anchored.is-at-bottom{bottom:0}.title-bar{align-items:center;background:#3f729b;color:#fefefe;display:flex;justify-content:flex-start;padding:.5rem}.title-bar .menu-icon{margin-left:.25rem;margin-right:.25rem}.title-bar-left,.title-bar-right{flex:1 1 0px}.title-bar-right{text-align:right}.title-bar-title{display:inline-block;font-weight:700;vertical-align:middle}.top-bar{align-items:center;display:flex;justify-content:space-between;padding:.5rem}.top-bar,.top-bar ul{background-color:#fefefe}.top-bar input{margin-right:1rem;max-width:200px}.top-bar .input-group-field{margin-right:0;width:100%}.top-bar input.button{width:auto}.top-bar{flex-wrap:wrap}.top-bar .top-bar-left,.top-bar .top-bar-right{flex:0 0 100%;max-width:100%}.top-bar{flex-wrap:nowrap}.top-bar .top-bar-left{flex:1 1 auto;margin-right:auto}.top-bar .top-bar-right{flex:0 1 auto;margin-left:auto}@media print,screen and (max-width:63.99875em){.top-bar.stacked-for-medium{flex-wrap:wrap}.top-bar.stacked-for-medium .top-bar-left,.top-bar.stacked-for-medium .top-bar-right{flex:0 0 100%;max-width:100%}}@media print,screen and (max-width:74.99875em){.top-bar.stacked-for-large{flex-wrap:wrap}.top-bar.stacked-for-large .top-bar-left,.top-bar.stacked-for-large .top-bar-right{flex:0 0 100%;max-width:100%}}@media print,screen and (max-width:89.99875em){.top-bar.stacked-for-xlarge{flex-wrap:wrap}.top-bar.stacked-for-xlarge .top-bar-left,.top-bar.stacked-for-xlarge .top-bar-right{flex:0 0 100%;max-width:100%}}.top-bar.stacked-for-xxlarge{flex-wrap:wrap}.top-bar.stacked-for-xxlarge .top-bar-left,.top-bar.stacked-for-xxlarge .top-bar-right{flex:0 0 100%;max-width:100%}.top-bar-title{flex:0 0 auto;margin:.45rem 1rem 0}.top-bar-left,.top-bar-right{flex:0 0 auto}.float-left{float:left!important}.float-right{float:right!important}.float-center{display:block;margin-left:auto;margin-right:auto}.clearfix:after,.clearfix:before{content:" ";display:table;flex-basis:0;order:1}.clearfix:after{clear:both}.align-left{justify-content:flex-start}.align-right{justify-content:flex-end}.align-center{justify-content:center}.align-justify{justify-content:space-between}.align-spaced{justify-content:space-around}.align-left.vertical.menu>li>a{justify-content:flex-start}.align-right.vertical.menu>li>a{justify-content:flex-end}.align-center.vertical.menu>li>a{justify-content:center}.align-top{align-items:flex-start}.align-self-top{align-self:flex-start}.align-bottom{align-items:flex-end}.align-self-bottom{align-self:flex-end}.align-middle{align-items:center}.align-self-middle{align-self:center}.align-stretch{align-items:stretch}.align-self-stretch{align-self:stretch}.align-center-middle{align-content:center;align-items:center;justify-content:center}.small-order-1{order:1}.small-order-2{order:2}.small-order-3{order:3}.small-order-4{order:4}.small-order-5{order:5}.small-order-6{order:6}@media print,screen and (min-width:40em){.medium-order-1{order:1}.medium-order-2{order:2}.medium-order-3{order:3}.medium-order-4{order:4}.medium-order-5{order:5}.medium-order-6{order:6}}@media print,screen and (min-width:64em){.large-order-1{order:1}.large-order-2{order:2}.large-order-3{order:3}.large-order-4{order:4}.large-order-5{order:5}.large-order-6{order:6}}@media screen and (min-width:75em){.xlarge-order-1{order:1}.xlarge-order-2{order:2}.xlarge-order-3{order:3}.xlarge-order-4{order:4}.xlarge-order-5{order:5}.xlarge-order-6{order:6}}@media screen and (min-width:90em){.xxlarge-order-1{order:1}.xxlarge-order-2{order:2}.xxlarge-order-3{order:3}.xxlarge-order-4{order:4}.xxlarge-order-5{order:5}.xxlarge-order-6{order:6}}.flex-container{display:flex}.flex-child-auto{flex:1 1 auto}.flex-child-grow{flex:1 0 auto}.flex-child-shrink{flex:0 1 auto}.flex-dir-row{flex-direction:row}.flex-dir-row-reverse{flex-direction:row-reverse}.flex-dir-column{flex-direction:column}.flex-dir-column-reverse{flex-direction:column-reverse}@media print,screen and (min-width:40em){.medium-flex-container{display:flex}.medium-flex-child-auto{flex:1 1 auto}.medium-flex-child-grow{flex:1 0 auto}.medium-flex-child-shrink{flex:0 1 auto}.medium-flex-dir-row{flex-direction:row}.medium-flex-dir-row-reverse{flex-direction:row-reverse}.medium-flex-dir-column{flex-direction:column}.medium-flex-dir-column-reverse{flex-direction:column-reverse}}@media print,screen and (min-width:64em){.large-flex-container{display:flex}.large-flex-child-auto{flex:1 1 auto}.large-flex-child-grow{flex:1 0 auto}.large-flex-child-shrink{flex:0 1 auto}.large-flex-dir-row{flex-direction:row}.large-flex-dir-row-reverse{flex-direction:row-reverse}.large-flex-dir-column{flex-direction:column}.large-flex-dir-column-reverse{flex-direction:column-reverse}}@media screen and (min-width:75em){.xlarge-flex-container{display:flex}.xlarge-flex-child-auto{flex:1 1 auto}.xlarge-flex-child-grow{flex:1 0 auto}.xlarge-flex-child-shrink{flex:0 1 auto}.xlarge-flex-dir-row{flex-direction:row}.xlarge-flex-dir-row-reverse{flex-direction:row-reverse}.xlarge-flex-dir-column{flex-direction:column}.xlarge-flex-dir-column-reverse{flex-direction:column-reverse}}@media screen and (min-width:90em){.xxlarge-flex-container{display:flex}.xxlarge-flex-child-auto{flex:1 1 auto}.xxlarge-flex-child-grow{flex:1 0 auto}.xxlarge-flex-child-shrink{flex:0 1 auto}.xxlarge-flex-dir-row{flex-direction:row}.xxlarge-flex-dir-row-reverse{flex-direction:row-reverse}.xxlarge-flex-dir-column{flex-direction:column}.xxlarge-flex-dir-column-reverse{flex-direction:column-reverse}}.hide{display:none!important}.invisible{visibility:hidden}.visible{visibility:visible}@media print,screen and (max-width:39.99875em){.hide-for-small-only{display:none!important}}@media screen and (max-width:0em),screen and (min-width:40em){.show-for-small-only{display:none!important}}@media print,screen and (min-width:40em){.hide-for-medium{display:none!important}}@media screen and (max-width:39.99875em){.show-for-medium{display:none!important}}@media print,screen and (min-width:40em)and (max-width:63.99875em){.hide-for-medium-only{display:none!important}}@media screen and (max-width:39.99875em),screen and (min-width:64em){.show-for-medium-only{display:none!important}}@media print,screen and (min-width:64em){.hide-for-large{display:none!important}}@media screen and (max-width:63.99875em){.show-for-large{display:none!important}}@media print,screen and (min-width:64em)and (max-width:74.99875em){.hide-for-large-only{display:none!important}}@media screen and (max-width:63.99875em),screen and (min-width:75em){.show-for-large-only{display:none!important}}@media screen and (min-width:75em){.hide-for-xlarge{display:none!important}}@media screen and (max-width:74.99875em){.show-for-xlarge{display:none!important}}@media screen and (min-width:75em)and (max-width:89.99875em){.hide-for-xlarge-only{display:none!important}}@media screen and (max-width:74.99875em),screen and (min-width:90em){.show-for-xlarge-only{display:none!important}}@media screen and (min-width:90em){.hide-for-xxlarge{display:none!important}}@media screen and (max-width:89.99875em){.show-for-xxlarge{display:none!important}}@media screen and (min-width:90em){.hide-for-xxlarge-only{display:none!important}}@media screen and (max-width:89.99875em){.show-for-xxlarge-only{display:none!important}}.show-for-sr,.show-on-focus{height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;clip:rect(0,0,0,0)!important;border:0!important;white-space:nowrap!important}.show-on-focus:active,.show-on-focus:focus{height:auto!important;overflow:visible!important;position:static!important;width:auto!important;clip:auto!important;white-space:normal!important}.hide-for-portrait,.show-for-landscape{display:block!important}@media screen and (orientation:landscape){.hide-for-portrait,.show-for-landscape{display:block!important}}@media screen and (orientation:portrait){.hide-for-portrait,.show-for-landscape{display:none!important}}.hide-for-landscape,.show-for-portrait{display:none!important}@media screen and (orientation:landscape){.hide-for-landscape,.show-for-portrait{display:none!important}}@media screen and (orientation:portrait){.hide-for-landscape,.show-for-portrait{display:block!important}}.show-for-dark-mode{display:none}.hide-for-dark-mode{display:block}@media screen and (prefers-color-scheme:dark){.show-for-dark-mode{display:block!important}.hide-for-dark-mode{display:none!important}}.show-for-ie{display:none}@media(-ms-high-contrast:active),(-ms-high-contrast:none){.show-for-ie{display:block!important}.hide-for-ie{display:none!important}}.show-for-sticky{display:none}.is-stuck .show-for-sticky{display:block}.is-stuck .hide-for-sticky{display:none}.grey{color:#8a8a8a;font-weight:400}.txt-gray-light{color:#e6e6e6}.txt-gray-mid{color:#cacaca}.txt-gray-dark{color:#8a8a8a}.primary-color{color:#3f729b}.padding-bottom{padding-bottom:1rem}.center{text-align:center}.float-right{float:right}.full-width{width:100%}.small-text{font-size:.8rem}html{--primary-color:#3f729b;--secondary-color:#8bc34a;--success-color:#4caf50;--warning-color:#ffae00;--alert-color:#cc4b37}body{background-color:#e2e2e2}footer .copyright{padding-left:1em}.top-border{border-top:1px solid #ccc}.bottom-border{border-bottom:1px solid #ccc}.tall-4{height:4em}.pin-to-bottom{bottom:0;position:absolute;width:95%}object{height:100%;width:100%}.vertical-line{display:inline-block;height:15px;margin-right:5px}.no-margin{margin:0}.button.icon-button{align-items:center;display:flex}.dt-tooltip{display:inline-block;position:relative}.dt-action-button{background-color:#eee;color:#000;margin:0}.dt-action-button:focus,.dt-action-button:hover{background-color:#7a7a7a;color:#000}.dt-tooltip .tooltiptext{background-color:#555;border-radius:6px;bottom:130%;color:#fff;left:50%;margin-left:-75px;opacity:1;padding:5px;position:absolute;text-align:center;transition:opacity .3s;visibility:hidden;width:140px;z-index:1}.dt-tooltip .tooltiptext:after{border:5px solid transparent;border-top-color:#555;content:"";left:50%;margin-left:-5px;position:absolute;top:100%}.dt-tooltip:hover .tooltiptext{opacity:1;overflow-wrap:break-word;transition:opacity .3s;visibility:visible}a:link,a:visited:link{-webkit-tap-highlight-color:rgba(0,0,0,.3)}.top-bar{border-bottom:1px solid #e6e6e6}.top-bar,.top-bar ul{background-color:#3f729b}.top-bar a{color:#fff}.top-bar .active a{background:#224f72}.top-bar .logo{height:20px;margin-inline-end:2vw}#top-bar-menu{border:none;margin-top:0!important;padding:0 20px;z-index:999}#top-bar-menu .logo-link{padding-inline-start:0;padding:0;vertical-align:middle}#top-bar-menu .top-bar-right .dropdown.menu{justify-content:flex-end}#top-bar-menu .top-bar-right .dropdown.menu>li{margin:0 10px}@media screen and (max-width:775px){#top-bar-menu .top-bar-right .dropdown.menu li{margin-bottom:.5rem}#top-bar-menu .top-bar-right .dropdown.menu li:first-of-type{text-align:end;width:100%}}#top-bar-menu .dropdown.menu a{background-color:#3f729b}#top-bar-menu .dropdown.menu li.active>a{background:#005a87}#top-bar-menu .top-bar-left .dropdown.menu{flex-wrap:nowrap}#top-bar-menu .top-bar-left .dropdown.menu a:hover{background-color:#224f72}#top-bar-menu .top-bar-left .dropdown.menu>li.is-dropdown-submenu-parent>a:after{border-color:#fefefe transparent transparent}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:none}@media screen and (max-width:1040px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+4){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+3){display:none}}@media screen and (min-width:1041px)and (max-width:1140px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+6){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+5){display:none}}@media screen and (min-width:1141px)and (max-width:1240px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+7){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+6){display:none}}@media screen and (min-width:1241px)and (max-width:1300px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+8){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+7){display:none}}@media screen and (min-width:1301px)and (max-width:1400px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+9){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+8){display:none}}@media screen and (min-width:1401px)and (max-width:1600px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+9){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+8){display:none}}#top-bar-menu a{color:#fefefe;font-weight:700;padding:1rem}#top-bar-menu .image-menu-nav img{height:24px}#top-bar-menu .image-menu-nav a{font-weight:700;padding:4px 5px;vertical-align:middle}#top-bar-menu .image-menu-nav a span{vertical-align:middle}#top-bar-menu .submenu.menu.vertical{display:none}#top-bar-menu .submenu.menu.vertical.is-dropdown-submenu.js-dropdown-active{display:block}html[dir=rtl] #top-bar-menu .dropdown.menu>li.is-dropdown-submenu-parent>a:after{left:5px;right:auto}.notifications-menu-item .notification-count{display:none;margin-left:-15px;position:relative;top:-5px;vertical-align:top}.notification-count-offcanvas{display:none;margin-left:10px;position:relative;top:0;vertical-align:middle}.release-notification-icon-link{align-items:center;display:flex;justify-content:center;padding:.5rem}.release-notification-icon-link .release-notification-icon{color:#fff;font-size:28px;line-height:1;position:relative}.release-notification-icon-link .release-notification-icon:after{background-color:#e74c3c;border-radius:50%;content:"";height:10px;position:absolute;right:-4px;top:1px;width:10px}.release-notification-icon-link:hover .release-notification-icon{color:#f0f0f0}.top-bar .is-submenu-item{background-color:#3f729b;text-align:left}.top-bar .is-submenu-item a{color:#fff;font-weight:700;vertical-align:middle}.top-bar .is-submenu-item a img{margin:0 10px 0 0;width:25px}.mobile-add-buttons{display:inline-block;margin-left:5px;position:relative;vertical-align:top}.title-bar-right{float:right;text-align:left}.title-bar-right>*{float:right;margin-left:10px}#mobile-add-new-dropdown{background-color:#3f729b;border:1px solid #999;border-radius:4px;max-width:180px;min-width:160px;padding:4px 0}#mobile-add-new-dropdown .menu.vertical,#mobile-add-new-dropdown .menu.vertical li{margin:0}#mobile-add-new-dropdown .menu.vertical li .add-new-menu-item{align-items:center;color:#fff;display:flex;font-size:14px;font-weight:700;padding:12px 16px;text-decoration:none;transition:background-color .2s}#mobile-add-new-dropdown .menu.vertical li .add-new-menu-item:hover{background-color:#4a7fa8}#mobile-add-new-dropdown .menu.vertical li .add-new-menu-item img{flex-shrink:0;height:20px;margin-right:12px;width:20px}nav.second-bar{background-color:#fff;padding:.5em;top:auto;transform:translate(0);width:100%}nav.second-bar .title{font-weight:700}nav.second-bar .breadcrumbs{margin-bottom:0}nav.second-bar{box-shadow:0 4px 4px #00000040}nav.second-bar .buttons-row{-moz-column-gap:.3rem;column-gap:.3rem;display:flex;justify-content:center}nav.second-bar .button img{height:17px;padding-right:5px}nav.second-bar .button{padding:.4em .75em}@media screen and (max-width:639px){nav.second-bar .button.follow{padding:0 .75em}nav.second-bar .button.follow .fi-eye{font-size:22px;line-height:16px}nav.second-bar .button img{padding-right:0}}nav.second-bar .button.favorite{background:none;padding:0}nav.second-bar .button.favorite .icon-star{fill:#c7c6c1;height:1.8em;width:auto}nav.second-bar .button.favorite.selected .icon-star{fill:#ffc105}nav.second-bar .dropdown.menu>li>a{padding-bottom:.4em;padding-top:.4em}nav.second-bar input{max-height:30px}nav.second-bar a,nav.second-bar button,nav.second-bar input{margin:0;vertical-align:middle}nav.second-bar a span,nav.second-bar button span,nav.second-bar input span{vertical-align:middle}.advancedSearch-count{font-size:.45em;font-weight:700;left:1.15rem;position:absolute;top:0;vertical-align:top}.off-canvas-list ul{margin-left:0}.off-canvas-list ul li a{border-bottom:0}.off-canvas-list ul .dropdown{margin-left:20px}.off-canvas-list ul .off-canvas-padding{padding:0 1rem}#off-canvas span.title{font-size:1.3rem;font-weight:800;padding:2rem 1rem 2rem 0;text-align:center}#off-canvas ul.is-at-top{padding-top:10px}#off-canvas ul.is-at-top li.nav-title div,.menu input{margin-left:1rem}.menu input{margin-right:1rem;width:80%}.center-items{align-items:center;display:flex}div.sticky-container{z-index:1}.title-bar{padding:.7rem}.title-bar .logo-link{padding-inline-start:0;vertical-align:middle}.title-bar .logo{height:20px;margin:0}.title-bar img{vertical-align:middle}.is-dropdown-submenu{z-index:5}#content #inner-content{margin-left:5px;margin-right:5px;min-height:100vh;padding:1rem 0}#content article{margin-bottom:10px}#content article header,#content article section{padding:10px}#content article footer{padding:10px;text-align:center}#content article a.button{float:left}#content article .article-header .title{text-transform:uppercase}.bordered-box{background-color:#fefefe;border:1px solid #e6e6e6;border-radius:10px;box-shadow:0 2px 4px #00000040;padding:1rem}.bordered-box table.dataTable{margin:.5em -1rem!important;width:calc(100% + 2rem)}i.large{font-size:50px;line-height:50px}i.medium{display:inline-block;font-size:25px;line-height:25px;transform:translateY(2px)}button{cursor:pointer}button.clear{background-color:#fff;border:1px solid #ccc;color:#000}img{vertical-align:inherit}.input-height,.typeahead__field .typeahead__filter input.typeahead__filter-button,.typeahead__field .typeahead__filter textarea.typeahead__filter-button .typeahead__field button.input-height,.typeahead__field .typeahead__filter textarea.typeahead__filter-button .typeahead__field button.typeahead__filter-button,.typeahead__field .typeahead__hint,.typeahead__field [contenteditable],.typeahead__field input.input-height,.typeahead__field textarea.input-height .typeahead__field .typeahead__filter button.typeahead__filter-button,.typeahead__field textarea.input-height .typeahead__field button.input-height,.typeahead__filter .typeahead__field input.typeahead__filter-button,.typeahead__filter .typeahead__field textarea.input-height .typeahead__field button.typeahead__filter-button,.typeahead__filter .typeahead__field textarea.typeahead__filter-button .typeahead__field button.input-height,.typeahead__filter .typeahead__field textarea.typeahead__filter-button .typeahead__field button.typeahead__filter-button,.typeahead__filter .typeahead__filter-button{min-height:2.5rem}.tabs-panel .outer-container{padding:0!important}.tabs a.maginifying-glass{display:block;font-size:1.5rem;line-height:1;padding:.75rem}.section-header{color:#3f729b;font-size:1.5rem}.section-subheader{font-size:14px;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active{background:#3f729b;border-color:#3f729b}button.loader:not(.disabled):before{animation-duration:1s;animation-iteration-count:infinite;animation-name:rotate;animation-timing-function:linear;border:4px solid;border-left:4px solid transparent;border-radius:50%;content:"";display:none;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);height:20px;margin-top:-11px;opacity:0;position:absolute;right:10px;top:50%;transition-duration:.5s;transition-property:opacity;width:20px}button.loader:not(.disabled):after{content:"";height:100%;transition-delay:.5s;transition-duration:.75s;transition-property:width;width:0}button.loader:not(.disabled).loading{cursor:not-allowed;padding-right:35px;pointer-events:none;position:relative}button.loader:not(.disabled).loading:not(.expand){text-align:left}button.loader:not(.disabled).loading:before{display:block;filter:progid:DXImageTransform.Microsoft.Alpha(enabled=false);opacity:1;transition-delay:.5s;transition-duration:1s}button.loader:not(.disabled).loading:after{transition-delay:0s;width:20px}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.loading-spinner.active{animation:spin 1s linear infinite;border:.25rem solid #919191;border-radius:50%;border-top-color:#000;display:inline-block;height:24px;width:24px}select.select-field{margin:0}.scrollable-typeahead .typeahead__list{max-height:300px;overflow-x:hidden;overflow-y:auto}.typeahead__container.result .typeahead__list{box-shadow:5px 6px 5px #0006}.typeahead-margin-when-active .typeahead__container.result .typeahead__result{margin-bottom:350px}.typeahead__container .typeahead__image_button{padding-bottom:3px;padding-top:3px;vertical-align:middle}.typeahead__container .typeahead__image_button img{height:20px;min-height:15px;min-width:15px;width:20px}.last-typeahead-in-section{margin-bottom:150px}.typeahead__dropdown>li>a,.typeahead__list>li>a{clear:both;color:#333;display:block;padding:.5rem .75rem;text-decoration:none}.typeahead__item .typeahead-user-row img{border-radius:3px;padding:1px;vertical-align:text-bottom;width:20px}.typeahead__label{max-width:-webkit-fill-available;max-width:-moz-available}.typeahead__label a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.avatar img{height:16px}.clearfix{clear:both}.header{position:relative;z-index:10}.profile-input{margin:0}.half-opacity{opacity:.5}.typeahead__cancel-button{padding:4px 6px!important}html[dir=rtl] .typeahead__label{margin-left:4px;margin-right:0;padding-left:0;padding-right:4px}html[dir=rtl] .typeahead__label .typeahead__cancel-button{border-left:none;border-right:1px solid #c2e0ff;margin-left:0;margin-right:4px}html[dir=rtl] .typeahead__cancel-button{left:0;right:auto}html[dir=rtl] .typeahead__container .typeahead__field .typeahead__hint,html[dir=rtl] .typeahead__container .typeahead__field .typeahead__label-container,html[dir=rtl] .typeahead__container .typeahead__field [contenteditable],html[dir=rtl] .typeahead__container .typeahead__field input,html[dir=rtl] .typeahead__container .typeahead__field textarea{padding-left:32px;padding-right:6px}html[dir=rtl] .float-right{float:left!important}html[dir=rtl] .float-left{float:right!important}html[dir=rtl] .notifications-menu-item .notification-count{left:0;margin-left:-15px;right:-15px}html[dir=rtl] .notification-count-offcanvas{left:0;margin-left:10px;right:0}html[dir=rtl] .title-bar-right{text-align:left}.empty-notification-message{font-weight:700;margin:20px}.dt-green,a.dt-green:hover{background-color:#4caf50}#content,.container-width{margin-left:auto;margin-right:auto;max-width:1440px}#notification-list .new-button,#notification-list .read-button{padding:.85em}#notification-list .unread-notification-row{background-color:#3f729b30}#notification-list .notification-group-header{background-color:#3f729b;color:#fff;font-weight:600;padding:.7rem}#notification-dropdown{background-color:unset;border:none;padding:0;width:500px}#notification-dropdown .sized-box{height:6px}#notification-dropdown .bordered-box{border-top-left-radius:0;border-top-right-radius:0;padding:1rem 0}#notification-dropdown .header{margin-bottom:1rem;padding:0 1rem}#notification-dropdown .button-group{margin-bottom:0}#notification-dropdown .button-group .button{font-size:1rem;padding:.5em 1em}#notification-dropdown #notification-list{margin:0}#notification-dropdown .notification-group-header{padding:.3rem .7rem}.new-notification-label{margin-left:5px}@media screen and (max-width:1024px){#notification-dropdown .sized-box{height:16px}}@media screen and (max-width:640px){#notification-dropdown{width:300px}#notification-dropdown .button-group .button{font-size:.75rem;padding:.75em 1em}#notification-dropdown .notification-row .cell{margin-left:.7rem;margin-right:0}#notification-dropdown #notification-list{margin-right:-1px}}.notifications-page #notification-list{margin:0 -10px}.notifications-page div.button-group{text-align:center}.notifications-page div.button-group .button{margin-right:.25rem}.help-icon{filter:invert(69%) sepia(1%) saturate(0) hue-rotate(239deg) brightness(94%) contrast(86%);height:15px}.help-button{margin-left:3px;margin-right:3px}.help-button-tile{margin-left:6px;margin-right:6px}.help-button-field{margin-left:3px;margin-right:3px}.help-section h3{font-size:1.6rem}.help-section h4{font-size:1.2rem}.help-modal-icon ul{margin-left:5%}.help-modal-icon li{list-style:none;margin-bottom:3%}.help-modal-icon img{height:40px;margin-right:5%;width:40px}div.help-more{float:right}div.help-more h5{font-size:1rem}.dropdown.menu>li.is-dropdown-submenu-parent>a.menu-white-dropdown-arrow:after{border-color:#fff transparent transparent}.dropdown.menu .is-submenu-item:hover{background-color:#3f729b;color:#fff}.dropdown.menu .is-submenu-item a:hover{color:#fff}.dropdown.menu .is-submenu-item a:hover img{filter:invert(100%) sepia(100%) saturate(6%) hue-rotate(105deg) brightness(102%) contrast(102%)}@media screen and (max-width:640px){table.js-list tbody tr:nth-child(2n){background-color:#f1f1f1;border-bottom:0}#content #inner-content{margin:0}.bordered-box.list-box{padding-left:2px;padding-right:2px}}@media screen and (min-width:640px){.left-border-grey{border-left:1px solid #e6e6e6}}.dt_caret{border:solid #000;border-width:0 2px 2px 0;display:inline-block;padding:3px}.dt_caret.down{transform:rotate(45deg);-webkit-transform:rotate(45deg)}.dt_caret.right{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.dt_caret.left{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.dt_caret.up{transform:rotate(-135deg);-webkit-transform:rotate(-135deg)}.scrolling-wrapper{overflow-x:scroll;overflow-y:hidden;white-space:nowrap}#generation_map ul{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAKAQMAAABPHKYJAAAAA1BMVEWIiIhYZW6zAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1ggGExMZBky19AAAAAtJREFUCNdjYMAEAAAUAAHlhrBKAAAAAElFTkSuQmCC) repeat-y;list-style:none;margin:0 0 0 50px;padding:0}#generation_map ul.ul-gen-0{margin-left:0}#generation_map li{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAUAQMAAACK1e4oAAAABlBMVEUAAwCIiIgd2JB2AAAAAXRSTlMAQObYZgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YIBhQIJYVaFGwAAAARSURBVAjXY2hgQIf/GTDFGgDSkwqATqpCHAAAAABJRU5ErkJggg==) no-repeat;color:#369;font-weight:700;line-height:20px;margin:0;padding:0 12px}#generation_map ul li.last{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAUAQMAAACK1e4oAAAABlBMVEUAAwCIiIgd2JB2AAAAAXRSTlMAQObYZgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YIBhQIIhs+gc8AAAAQSURBVAjXY2hgQIf/GbAAAKCTBYBUjWvCAAAAAElFTkSuQmCC) no-repeat}#generation_map .first-section{margin-top:.5em}.inactive-gray,.inactive-gray a,.not-church-gray,.not-church-gray a{color:#d3d3d3}.accordion-menu .is-accordion-submenu-parent[aria-expanded=true]>a:after{transform:none!important;transform-origin:50% 50%!important}.accordion-menu .is-accordion-submenu-parent[aria-expanded=false]>a:after{transform:rotate(90deg)!important;transform-origin:50% 50%!important}.date_range_picker{background:#fff;border:1px solid #ccc;cursor:pointer;display:inline-block;padding:5px 10px;width:250px}.date_range_picker .dt_caret{float:right;margin:5px}.daterangepicker td,.daterangepicker th{padding:0}#metrics-sidemenu ul.menu.vertical.nested{display:none}.drill_down{list-style-type:none;margin-bottom:0}.drill_down li{display:inline;margin-right:3px}.drill_down li select{width:150px}input.dt-switch[type=checkbox]{display:none;height:0;visibility:hidden;width:0}label.dt-switch{background:gray;border-radius:100px;cursor:pointer;display:inline-block;height:20px;margin:0;position:relative;text-indent:-9999px;width:41px}label.dt-switch:after{background:#fff;border-radius:90px;content:"";height:16px;left:3px;position:absolute;top:2px;transition:.3s;width:16px}input.dt-switch:checked+label{background:#3f729b}input.dt-switch:checked+label:after{left:calc(100% - 3px);transform:translate(-100%)}label.dt-switch:active:after{width:20px}.ul-no-bullets{list-style-type:none;margin:0}#user_modal_content .bordered-box{margin-bottom:20px}#user_modal_content #hero_stats .bordered-box{flex-basis:19%}#user_modal_content .user_modal_column{flex-basis:50%}@media screen and (max-width:640px){#user_modal_content #hero_stats .bordered-box{flex-grow:1;margin:5px}#user_modal_content #hero_stats{margin-bottom:20px}#user_modal_content .user_modal_column{flex-basis:100%;padding:0!important}}.template-settings #multiplier .section-subheader img{height:15px}.template-settings #multiplier .section-subheader{margin-bottom:4px}.template-settings #multiplier dt-location,.template-settings #multiplier dt-location-map{display:block;margin-bottom:2rem}.template-settings #multiplier .settings-user-languages-multiselect{display:block;--success-color:var(--primary-color);margin-bottom:2rem}.template-settings #multiplier .settings-people-groups-connection{display:block}.template-settings #apps{overflow-x:auto;-webkit-overflow-scrolling:touch}.template-settings #apps .form-table{max-width:100%;width:100%}.template-settings #apps .form-table tbody td{vertical-align:middle}.template-settings #apps .form-table tbody td:nth-child(3),.template-settings #apps .form-table tbody td:nth-child(4),.template-settings #apps .form-table thead td:nth-child(3),.template-settings #apps .form-table thead td:nth-child(4){text-align:center}.template-settings #apps .form-table tbody td:nth-child(3) .app-copy,.template-settings #apps .form-table tbody td:nth-child(3) .app-link{align-items:center;box-sizing:border-box;display:flex;height:2.5rem;justify-content:center;line-height:1;margin-inline:auto;margin-bottom:.35rem;min-height:2.5rem;min-width:2.5rem;padding:0;width:2.5rem}.template-settings #apps .form-table tbody td:nth-child(3) .app-copy:last-child,.template-settings #apps .form-table tbody td:nth-child(3) .app-link:last-child{margin-bottom:0}.template-settings #apps .form-table tbody td:nth-child(4) dt-toggle.settings-app-toggle{display:block;margin-inline:auto;max-width:100%;width:-moz-fit-content;width:fit-content}.template-settings #apps .form-table tbody td dt-toggle.settings-app-toggle::part(label-container){display:none}.template-settings #apps .form-table tbody td dt-toggle.settings-app-toggle::part(root){margin-bottom:0}.template-settings #notifications{overflow-x:auto;-webkit-overflow-scrolling:touch}.template-settings #notifications .form-table{max-width:100%;width:100%}.template-settings #notifications .form-table tbody td{vertical-align:middle}.template-settings #notifications .form-table tbody td:not(:first-child),.template-settings #notifications .form-table thead td:not(:first-child){text-align:center;white-space:nowrap;width:1%}.template-settings #notifications .form-table thead td:first-child{text-align:start}.template-settings #notifications .form-table tbody td:not(:first-child) dt-toggle{display:block;margin-inline:auto;max-width:100%;width:-moz-fit-content;width:fit-content}.template-settings #notifications .form-table tbody td:first-child{word-break:break-word}.template-settings #notifications .form-table tbody td dt-toggle.settings-notification-toggle:not(.settings-follow-all-toggle)::part(label-container){display:none}.template-settings #notifications .form-table tbody td dt-toggle.settings-notification-toggle:not(.settings-follow-all-toggle)::part(root){margin-bottom:0}.template-settings #notifications .settings-follow-all-toggle{margin-top:.5rem}.dt-status-square{border-radius:2px;display:inline-block;height:13px;width:13px}img.dt-icon{height:15px;width:15px}i.dt-icon,img.dt-icon{filter:invert(18%) sepia(0) saturate(19%) hue-rotate(170deg) brightness(108%) contrast(98%)}i.dt-icon{font-size:15px}i.dt-blue-icon,img.dt-blue-icon{filter:invert(41%) sepia(42%) saturate(518%) hue-rotate(164deg) brightness(94%) contrast(100%)}i.dt-white-icon,img.dt-white-icon{filter:invert(100%) sepia(100%) saturate(6%) hue-rotate(105deg) brightness(102%) contrast(102%)}i.dt-green-icon,img.dt-green-icon{filter:invert(52%) sepia(77%) saturate(383%) hue-rotate(73deg) brightness(98%) contrast(83%)}i.dt-red-icon,img.dt-red-icon{filter:invert(23%) sepia(34%) saturate(4972%) hue-rotate(343deg) brightness(121%) contrast(92%)}i.dt-black-icon,img.dt-black-icon{filter:invert(0) sepia(0) saturate(17%) hue-rotate(193deg) brightness(99%) contrast(101%)}.dt-metrics-plus-count{font-size:12px;font-weight:700;vertical-align:text-bottom}.dt-metrics-node-icon-small{font-size:15px;max-height:15px;max-width:15px;min-height:15px;min-width:15px}.error-text{color:red}.template-new-post .type-options{display:flex;flex-wrap:wrap;margin-bottom:15px}.template-new-post .type-option.selected .type-option-border,.template-new-post .type-option:hover .type-option-border{background-color:#ecf5fc;border:1px solid #c2e0ff;border-radius:15px}.template-new-post .type-option{display:flex;flex-basis:25%;padding-right:10px}.template-new-post .type-option .type-option-border{border:1px solid #c2e0ff;border-radius:15px;padding:5px 10px;width:100%}.template-new-post .type-option input{align-self:center;margin-bottom:0;margin-right:5px}.template-new-post .type-option .type-option-title{color:#3f729b;font-size:larger}.template-new-post .type-option .type-option-rows{display:inline-block}.template-new-post .type-option .type-option-rows div{display:block;margin-bottom:5px}.template-new-post .error-text{text-align:center}@media screen and (max-width:640px){.template-new-post .type-option{flex-basis:100%;margin-bottom:1.25em}}#record_history_activities{max-height:500px;min-height:500px;overflow-y:auto;padding-right:20px}.record-history-activity-block{border:1px solid #e8e8e8;border-radius:5px;margin-bottom:10px;max-height:70px;min-height:70px;padding:10px}.record-history-activity-block .record-history-activity-block-body{font-family:Arial,Helvetica,sans-serif}.record-history-activity-block .record-history-activity-block-body .record-history-activity-heading{font-size:14px;font-weight:700}.record-history-activity-block .record-history-activity-block-body .record-history-activity-gravatar{align-items:center;display:flex}.record-history-activity-block .record-history-activity-block-body .record-history-activity-gravatar img{margin-right:10px}.record-history-activity-block .record-history-activity-block-body .record-history-activity-owner{font-size:13px;font-weight:700}.record-history-activity-block .record-history-activity-block-body .record-history-activity-date{color:#989898;font-size:13px;font-weight:400}.record-history-activity-block:hover{border:1px solid #000;color:#989898;cursor:pointer}.advanced-search-modal-form table tbody,.advanced-search-modal-form table tbody tr{border:none}.advanced-search-modal-form table tbody tr td{vertical-align:middle}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:450px}.advanced-search-modal-form-button{max-height:40px;max-width:40px;min-height:40px;min-width:40px;padding:10px 5px 5px}.advanced-search-modal-form-button img{max-height:20px;max-width:20px;min-height:20px;min-width:20px}.advanced-search-modal-results-div{display:none}.advanced-search-modal-results-div table,.advanced-search-modal-results-div table tbody,.advanced-search-modal-results-div table tbody tr{border:none}.advanced-search-modal-results-div-col-results-list{max-width:450px;min-width:450px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:150px;min-width:150px;alignment:right;vertical-align:top}.advanced-search-modal-results-div-col-post-type label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results{height:400px;overflow-x:hidden;overflow-y:scroll;text-align:center}.advanced-search-modal-results-table,.advanced-search-modal-results-table tbody{border:none}.advanced-search-modal-results-table tbody tr{background:#fff;cursor:pointer;padding:0}.advanced-search-modal-results-table tbody tr:hover{background-color:#f5f5f5}.advanced-search-modal-results-table-section-head-options{background-color:#f5f5f5;cursor:default;padding:10px;text-align:left}.advanced-search-modal-results-table-section-head-options a{margin:0;max-height:20px;min-height:20px;padding:2px 5px}.advanced-search-modal-results-table-section-head-post-type{background-color:#f5f5f5;cursor:default;text-align:right}.advanced-search-modal-results-table-col-hits{min-width:250px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:none}.advanced-search-modal-results-post-types-view-at-side{display:inline}@media screen and (max-width:840px){.advanced-search-modal-form td{padding:1px}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-results-div td{padding:4px}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:250px}.advanced-search-modal-results-div-col-results-list{max-width:300px;min-width:300px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:0;min-width:0}.advanced-search-modal-results-table-col-hits{min-width:250px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:inline}.advanced-search-modal-results-post-types-view-at-top label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button{max-width:345px;min-width:345px}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button img{float:right;padding:5px 5px 2px}.advanced-search-modal-results-post-types-view-at-side,.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-content{display:none}}@media screen and (max-width:375px){.advanced-search-modal-form td{padding:1px}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-results-div td{padding:4px}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:150px}.advanced-search-modal-results-div-col-results-list{max-width:250px;min-width:250px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:0;min-width:0}.advanced-search-modal-results-table-col-hits{min-width:200px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:inline}.advanced-search-modal-results-post-types-view-at-top label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button{max-width:300px;min-width:300px}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button img{float:right;padding:5px 5px 2px}.advanced-search-modal-results-post-types-view-at-side,.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-content{display:none}}@media screen and (max-width:340px){.advanced-search-modal-form td{padding:1px}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-results-div td{padding:4px}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:150px}.advanced-search-modal-results-div-col-results-list{max-width:290px;min-width:290px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:0;min-width:0}.advanced-search-modal-results-table-col-hits{min-width:190px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:inline}.advanced-search-modal-results-post-types-view-at-top label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button{max-width:270px;min-width:270px}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button img{float:right;padding:5px 5px 2px}.advanced-search-modal-results-post-types-view-at-side,.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-content{display:none}}#release-modal p img{display:block;margin:auto}#release-modal{outline:transparent}#release-modal .release-banner{background:linear-gradient(0deg,#79a2c2,#3e729a);border-bottom:1px solid #cacaca;color:#fff;display:block;left:0;position:absolute;top:0;width:100%}#release-modal .release-banner-text{margin:8px}#release-modal #release-modal-content{margin-top:75px}#release-modal .white-button{color:#f4f4f4}.dt-tab-wrapper{border-bottom:1px solid #d3d3d3}.dt-tab{background-color:#fff;border:1px solid #d3d3d3;line-height:1.71428571;padding:5px 10px}.dt-tab:hover{background-color:#d3d3d3}.dt-tab-active{border-bottom:1px solid #fff;border-top:1px solid gray}.dt-tab-active:hover{background-color:#fff}.dt-tab-content{margin:20px 10px 0}.dt-tab-content-heading{font-weight:bolder}.dt-hide-content{display:none}.side-menu-item-highlight{font-weight:700}.communication-channel-error{color:red;font-style:italic;margin:-12px 0 12px}#form_fields_records{overflow-x:auto!important}#form_fields_records .form-fields-record{display:flex}#form_fields_records .record-divider{background-color:#ecf5fc;display:none;margin:3px -15px 15px;text-align:center}#form_fields_records .record-divider span{margin:0;padding:0}#form_fields_records .record-removal-button{margin:5px;min-width:25px!important}#form_fields_records .landscape-record-removal-button{display:block}#form_fields_records .landscape-record-removal-button .record-removal-button{margin:10px 0 0}#form_fields_records .form-field{flex-basis:200px;flex-grow:0;flex-shrink:0;margin-inline-end:10px}#form_fields_records .form-fields-record-subsequent .field-value-copy-controls,#form_fields_records .form-fields-record-subsequent .help-text,#form_fields_records .form-fields-record-subsequent .section-subheader{display:none!important}#form_fields_records .dt_location_grid .typeahead__container button{overflow:hidden;white-space:nowrap;width:65px}@media only screen and (max-width:782px){#form_fields_records .form-fields-record{flex-direction:column}#form_fields_records .form-field{flex-basis:50px}#form_fields_records .record-divider{display:block}#form_fields_records .landscape-record-removal-button{display:none}#form_fields_records .form-fields-record-subsequent .help-text,#form_fields_records .form-fields-record-subsequent .section-subheader{display:block!important}#form_fields_records .form-fields-record-subsequent .field-value-copy-controls{display:none!important}#form_fields_records .dt_location_grid .typeahead__container button{width:auto}}.button.select-button{border-radius:5px;margin-bottom:5px;margin-right:5px}.button.select-button:hover{background-color:#4caf50;color:#fff;opacity:.5}.button.select-button.empty-select-button,.button.select-button.empty-select-button:focus,.button.select-button[disabled]{background-color:#eee;color:#000}.button.select-button.selected-select-button,.button.select-button.selected-select-button:focus{background-color:#4caf50;color:#fff}.dt_multi_select .dt-icon{filter:none;margin-right:5px}.submitting-select-button{opacity:.5}.button.clear-date-button{background:#eee;border:1px solid #cacaca;border-left:0;color:#cc4b37}.button.clear-date-button:hover{background-color:#cc4b37;color:#fefefe}html[dir=rtl] .button.clear-date-button{border:1px solid #cacaca;border-right:0}.button.delete-button-style{background:#eee;border:1px solid #cacaca;border-left:0;border-radius:0;color:#cc4b37}.button.delete-button-style:hover{background-color:#cc4b37;color:#fefefe}html[dir=rtl] .button.delete-button-style{border:1px solid #cacaca;border-radius:0;border-right:0}.item-details-header{font-size:1.7rem}.item-details-header-row{margin-bottom:15px}.item-details-header-row .button{padding:.45em 1em}.item-details-header-row .label{font-size:.9rem}.contact-quick-button-number{background-color:#3f729b;border-radius:20px;color:#fff;font-size:10px;margin-left:3px;padding:2px 4px;position:absolute;top:0}.contact-quick-buttons{display:flex;flex-wrap:wrap;justify-content:center;width:100%}.contact-quick-buttons img{height:20px;width:20px}.contact-quick-button{flex:0 1 100px;margin:5px 0 10px;position:relative;width:-moz-min-content;width:min-content}.contact-quick-button p{font-size:12px;margin-bottom:0;word-spacing:100vw}.quick-action-menu a{vertical-align:middle}.quick-action-menu a img{height:20px;width:20px}#comment-activity-section{scroll-margin-top:60px;scroll-snap-margin-top:60px}#comment-activity-section .button.select-button:hover,#comment-activity-section .selected-select-button,#comment-activity-section .selected-select-button :focus{background-color:#3f729b}#comment-activity-section li{list-style-type:none}#comment-activity-section .tabs-title{margin-right:10px}#comment-activity-section .tabs-title input{margin:0}#comment-activity-section .tabs-title button{color:#3f729b;font-size:12px}#comment-activity-section .tabs-content{border:none}#comment-activity-section p{line-height:1.4}#comment-activity-section .gravatar{align-self:center;display:flex}#comment-activity-section .gravatar img{height:16px}#comment-activity-section .activity-block .comment-header{align-items:baseline;display:flex;grid-gap:5px}#comment-activity-section #add-comment-button{height:3rem;margin-bottom:0}#comment-activity-section #add-comment-button-container{display:flex;flex-direction:row;justify-content:flex-end}#comment-activity-section .comment-bubble{word-wrap:break-word;padding-bottom:2px}#comment-activity-section .comment-bubble .comment-text{min-height:1em}#comment-activity-section .comment-bubble .comment-text ul li{list-style:disc!important}#comment-activity-section .comment-bubble .comment-text ol br,#comment-activity-section .comment-bubble .comment-text ul br{display:none}#comment-activity-section .emoji{height:1.4rem;width:1.4rem}#comment-activity-section .edit-comment-controls a{font-size:12px}#comment-activity-section .edit-comment-controls img{height:10px}#comment-activity-section .edit-comment-controls object path{fill:red}#comment-activity-section .comment-reactions{display:flex;flex-wrap:wrap}#comment-activity-section .comment-reaction,#comment-activity-section .reactions__button{align-items:center;background-color:#f8f8f8;border:1px solid transparent;border-radius:100px;cursor:pointer;display:flex;margin-right:4px;margin-top:4px;padding:.1rem .5rem}#comment-activity-section .comment-reaction:hover,#comment-activity-section .reactions__button:hover{border-color:#8a8a8a}#comment-activity-section .comment-reaction{align-items:center;background-color:#f8f8f8;border:1px solid transparent;border-radius:100px;cursor:pointer;display:flex;font-size:.9rem;height:1.6rem;line-height:.9rem;padding:.1rem .5rem}#comment-activity-section .comment-reaction *{pointer-events:none}#comment-activity-section .comment-reaction .emoji{height:1rem;width:1rem}#comment-activity-section .comment-reaction span+span{font-size:.8rem;padding-left:4px}#comment-activity-section .comment-reaction[data-own-reaction=true]{background-color:#def1ff;border-color:#3f729b}#comment-activity-section .comment-reaction[data-own-reaction=true]:hover{border-color:#3f729b}#comment-activity-section .comment-reaction:active{transform:scale(.9)}#comment-activity-section .reaction-controls{align-items:center;display:flex;position:relative}#comment-activity-section .add-reaction-svg{display:flex;position:relative}#comment-activity-section .add-reaction-svg:before{background-color:#fff;border-radius:100px;content:"+";font-size:.8rem;font-weight:600;line-height:.8rem;padding:0 .1rem;pointer-events:none;position:absolute;right:-7px;text-align:center;top:3px}#comment-activity-section .reactions__button{color:#8a8a8a;height:100%;padding-right:.7rem}#comment-activity-section .reactions__button[open]:before{background:transparent;content:" ";cursor:default;display:block;inset:0;position:fixed;z-index:8}#comment-activity-section .reactions__dropdown{border-radius:6px;bottom:35px;box-shadow:0 8px 24px #969ea633;left:8px;transform:translate(-20px,5px);width:215px;z-index:9}#comment-activity-section .reactions__dropdown:after{border:7px solid transparent;border-top-color:#fff;bottom:-14px;content:"";left:20px;position:absolute}#comment-activity-section .reactions__dropdown:before{border:8px solid transparent;border-top-color:#cacaca;bottom:-16px;content:"";left:19px;position:absolute}#comment-activity-section .add-reaction{margin:0 .2rem}#comment-activity-section .add-reaction:hover{transform:scale(1.2);transition:all .1s ease}#comment-activity-section .comment-controls{display:flex;flex-wrap:wrap;justify-content:space-between}#comment-activity-section .comment-controls>audio{width:100%}#comment-activity-section .edit-comment-controls{margin-right:10px;margin-top:4px}#comment-activity-section .comment-bubble,#comment-activity-section .comment-controls{margin:0 0 0 2em;padding:0 0 0 15px;text-align:left}#comment-activity-section html[dir=rtl] .comment-bubble,#comment-activity-section html[dir=rtl] .comment-controls{margin:0 2em 0 0;padding:0 15px 0 0;text-align:right}#comment-activity-section .comment-date{font-size:12px;margin-right:20px}#comment-activity-section .translation-bubble{border:0;border-left:2px solid #8a8a8a;margin:0 0 0 2em;padding-left:1em}#comment-activity-section .translate-button{font-size:.85em;margin:0 0 0 2em;padding:0 0 0 15px}#comment-activity-section html[dir=rtl] .translation-bubble{border:0;border-right:2px solid #8a8a8a;margin:0 2em 0 0;padding-right:1em}#comment-activity-section html[dir=rtl] .translate-button{margin:0 2em 0 0;padding:0 15px 0 0}#comment-activity-section .activity-block{margin-top:15px}#comment-activity-section .activity-bubble{word-wrap:break-word;border-inline-start:3px solid #dcdcdc;color:gray;font-style:italic;margin:0;margin-inline-start:2em;padding-bottom:2px;padding-inline-start:15px}#comment-activity-section .revert-activity{float:right}#comment-activity-section .revert-arrow-img{height:17px;margin-right:15px;padding-top:2px}#comment-activity-section .mentions-input-box textarea.loading-gif{background:url(data:image/gif;base64,R0lGODlhEAAQAPYAAP///wAAANTU1JSUlGBgYEBAQERERG5ubqKiotzc3KSkpCQkJCgoKDAwMDY2Nj4+Pmpqarq6uhwcHHJycuzs7O7u7sLCwoqKilBQUF5eXr6+vtDQ0Do6OhYWFoyMjKqqqlxcXHx8fOLi4oaGhg4ODmhoaJycnGZmZra2tkZGRgoKCrCwsJaWlhgYGAYGBujo6PT09Hh4eISEhPb29oKCgqioqPr6+vz8/MDAwMrKyvj4+NbW1q6urvDw8NLS0uTk5N7e3s7OzsbGxry8vODg4NjY2PLy8tra2np6erS0tLKyskxMTFJSUlpaWmJiYkJCQjw8PMTExHZ2djIyMurq6ioqKo6OjlhYWCwsLB4eHqCgoE5OThISEoiIiGRkZDQ0NMjIyMzMzObm5ri4uH5+fpKSkp6enlZWVpCQkEpKSkhISCIiIqamphAQEAwMDKysrAQEBJqamiYmJhQUFDg4OHR0dC4uLggICHBwcCAgIFRUVGxsbICAgAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAAHjYAAgoOEhYUbIykthoUIHCQqLoI2OjeFCgsdJSsvgjcwPTaDAgYSHoY2FBSWAAMLE4wAPT89ggQMEbEzQD+CBQ0UsQA7RYIGDhWxN0E+ggcPFrEUQjuCCAYXsT5DRIIJEBgfhjsrFkaDERkgJhswMwk4CDzdhBohJwcxNB4sPAmMIlCwkOGhRo5gwhIGAgAh+QQJCgAAACwAAAAAEAAQAAAHjIAAgoOEhYU7A1dYDFtdG4YAPBhVC1ktXCRfJoVKT1NIERRUSl4qXIRHBFCbhTKFCgYjkII3g0hLUbMAOjaCBEw9ukZGgidNxLMUFYIXTkGzOmLLAEkQCLNUQMEAPxdSGoYvAkS9gjkyNEkJOjovRWAb04NBJlYsWh9KQ2FUkFQ5SWqsEJIAhq6DAAIBACH5BAkKAAAALAAAAAAQABAAAAeJgACCg4SFhQkKE2kGXiwChgBDB0sGDw4NDGpshTheZ2hRFRVDUmsMCIMiZE48hmgtUBuCYxBmkAAQbV2CLBM+t0puaoIySDC3VC4tgh40M7eFNRdH0IRgZUO3NjqDFB9mv4U6Pc+DRzUfQVQ3NzAULxU2hUBDKENCQTtAL9yGRgkbcvggEq9atUAAIfkECQoAAAAsAAAAABAAEAAAB4+AAIKDhIWFPygeEE4hbEeGADkXBycZZ1tqTkqFQSNIbBtGPUJdD088g1QmMjiGZl9MO4I5ViiQAEgMA4JKLAm3EWtXgmxmOrcUElWCb2zHkFQdcoIWPGK3Sm1LgkcoPrdOKiOCRmA4IpBwDUGDL2A5IjCCN/QAcYUURQIJIlQ9MzZu6aAgRgwFGAFvKRwUCAAh+QQJCgAAACwAAAAAEAAQAAAHjIAAgoOEhYUUYW9lHiYRP4YACStxZRc0SBMyFoVEPAoWQDMzAgolEBqDRjg8O4ZKIBNAgkBjG5AAZVtsgj44VLdCanWCYUI3txUPS7xBx5AVDgazAjC3Q3ZeghUJv5B1cgOCNmI/1YUeWSkCgzNUFDODKydzCwqFNkYwOoIubnQIt244MzDC1q2DggIBACH5BAkKAAAALAAAAAAQABAAAAeJgACCg4SFhTBAOSgrEUEUhgBUQThjSh8IcQo+hRUbYEdUNjoiGlZWQYM2QD4vhkI0ZWKCPQmtkG9SEYJURDOQAD4HaLuyv0ZeB4IVj8ZNJ4IwRje/QkxkgjYz05BdamyDN9uFJg9OR4YEK1RUYzFTT0qGdnduXC1Zchg8kEEjaQsMzpTZ8avgoEAAIfkECQoAAAAsAAAAABAAEAAAB4iAAIKDhIWFNz0/Oz47IjCGADpURAkCQUI4USKFNhUvFTMANxU7KElAhDA9OoZHH0oVgjczrJBRZkGyNpCCRCw8vIUzHmXBhDM0HoIGLsCQAjEmgjIqXrxaBxGCGw5cF4Y8TnybglprLXhjFBUWVnpeOIUIT3lydg4PantDz2UZDwYOIEhgzFggACH5BAkKAAAALAAAAAAQABAAAAeLgACCg4SFhjc6RhUVRjaGgzYzRhRiREQ9hSaGOhRFOxSDQQ0uj1RBPjOCIypOjwAJFkSCSyQrrhRDOYILXFSuNkpjggwtvo86H7YAZ1korkRaEYJlC3WuESxBggJLWHGGFhcIxgBvUHQyUT1GQWwhFxuFKyBPakxNXgceYY9HCDEZTlxA8cOVwUGBAAA7AAAAAAAAAAAA) no-repeat 99% 6px}#comment-activity-section .mentions-input-box .mentions strong span{font-weight:300}#comment-activity-section #add-comment-section{border:1px solid #dcdcdc;border-radius:3px;margin:0 0 1.06667rem}#comment-activity-section #add-comment-section select,#comment-activity-section #add-comment-section textarea{border:none;margin-bottom:0}#comment-activity-section #add-comment-section select{box-shadow:none}#comment-activity-section #add-comment-section .section-subheader{padding-left:.5rem;padding-right:.15rem;padding-top:.53333rem}#comment-activity-section .audio-comment{margin:10px 0;width:100%}#comment-activity-section .image-comment{border-radius:25px;margin:10px 0;max-height:400px}#comment-activity-section .image-comment-btn,#comment-activity-section .voice-record-btn{align-items:center;background:transparent;border:none;border-radius:6px;color:#667;cursor:pointer;display:flex;flex-shrink:0;height:44px;justify-content:center;margin-right:10px;transition:all .2s ease;width:44px}#comment-activity-section .image-comment-btn:hover,#comment-activity-section .voice-record-btn:hover{background:#f0f0f0;border:1px solid #ddd}#comment-activity-section .image-comment-btn i,#comment-activity-section .voice-record-btn i{font-size:24px}#comment-activity-section .voice-record-btn.recording{animation:pulse 1.5s infinite;background:#f44;border:1px solid #f44;color:#fff}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}#comment-activity-section .audio-recording-controls{background:linear-gradient(135deg,#f8f9fa,#e9ecef);border:1px solid #dee2e6;border-radius:12px;box-shadow:0 4px 12px #0000001a;margin:20px 0;max-height:0;opacity:0;overflow:hidden;padding:25px;transition:all .6s ease-in-out}#comment-activity-section .audio-recording-controls.show{margin:20px 0;max-height:600px;opacity:1}#comment-activity-section .audio-recording-controls.hide{margin:0;max-height:0;opacity:0;padding:0 25px}#comment-activity-section .recording-header{margin-bottom:20px}#comment-activity-section .recording-status{align-items:center;display:flex;justify-content:space-between;margin-bottom:15px}#comment-activity-section .recording-timer{background:#fffc;border:1px solid #dee2e6;border-radius:6px;color:#495057;font-family:Courier New,monospace;font-size:1.4em;font-weight:700;padding:8px 12px}#comment-activity-section .audio-visualization-container{background:#fff;border:1px solid #dee2e6;border-radius:8px;box-shadow:inset 0 2px 4px #0000000d;margin-bottom:20px;padding:20px;position:relative}#comment-activity-section #audio-visualizer{background:#f8f9fa;border-radius:4px;height:80px;width:100%}#comment-activity-section .recording-controls{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}#comment-activity-section .recording-btn{align-items:center;border-radius:8px;display:flex;font-weight:500;gap:8px;justify-content:center;min-width:140px;padding:12px 20px;transition:all .2s ease}#comment-activity-section .recording-btn:hover{box-shadow:0 4px 8px #00000026;transform:translateY(-1px)}#comment-activity-section .start-btn{background:#00897b;border:1px solid #00897b;color:#fff}#comment-activity-section .start-btn:hover{background:#218838;border-color:#1e7e34}#comment-activity-section .stop-btn{background:#dc3545;border:1px solid #dc3545;color:#fff}#comment-activity-section .stop-btn:hover{background:#c82333;border-color:#bd2130}#comment-activity-section .play-btn{background:#007bff;border:1px solid #007bff;color:#fff}#comment-activity-section .play-btn:hover{background:#0056b3;border-color:#004085}#comment-activity-section .save-btn{background:#00897b;border:1px solid #00897b;color:#fff}#comment-activity-section .save-btn:hover{background:#218838;border-color:#1e7e34}#comment-activity-section .save-btn-success{background:#28a745;border:1px solid #28a745;color:#fff}#comment-activity-section .save-btn-success:hover{background:#218838;border-color:#1e7e34}#comment-activity-section .cancel-btn{background:#6c757d;border:1px solid #6c757d;color:#fff}#comment-activity-section .cancel-btn:hover{background:#5a6268;border-color:#545b62}#comment-activity-section .audio-preview-container{background:#fff;border:1px solid #dee2e6;border-radius:8px;box-shadow:inset 0 2px 4px #0000000d;margin-bottom:20px;padding:20px;position:relative}#comment-activity-section #recording-preview{height:40px;width:100%}@media(max-width:768px){#comment-activity-section .voice-record-btn{height:40px;margin-right:8px;width:40px}#comment-activity-section .voice-record-btn i{font-size:20px}#comment-activity-section .audio-recording-controls{margin:15px 0;padding:20px}#comment-activity-section .recording-controls{flex-direction:column}#comment-activity-section .recording-btn{min-width:auto;width:100%}#comment-activity-section .audio-preview-container,#comment-activity-section .audio-visualization-container{padding:15px}#comment-activity-section #audio-visualizer{height:60px}}#comment-activity-section .upload-error-message{animation:slideDown .3s ease-out;margin-top:15px}#comment-activity-section .upload-error-message .callout{align-items:flex-start;border-radius:6px;display:flex;font-size:14px;gap:8px;line-height:1.4;padding:12px 16px;word-wrap:break-word;-webkit-hyphens:auto;hyphens:auto;overflow-wrap:break-word}#comment-activity-section .upload-error-message .callout i{flex-shrink:0;font-size:18px;margin-top:2px}#comment-activity-section .upload-error-message .callout .error-text{flex:1;min-width:0;word-wrap:break-word;-webkit-hyphens:auto;hyphens:auto;overflow-wrap:break-word;white-space:pre-wrap}#comment-activity-section .upload-error-message .callout.alert{background-color:#f8d7da;border:1px solid #f5c6cb;color:#721c24}#comment-activity-section .upload-error-message .callout.alert i{color:#dc3545}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.display-fields ul{list-style-type:none;margin-left:0}.display-fields img{height:15px}#details-tile .detail-snippet-row{display:flex;flex-wrap:wrap}#details-tile .detail-snippet{display:none;margin-bottom:5px;overflow:hidden;padding-right:15px;text-overflow:ellipsis;white-space:nowrap}#details-tile .detail-snippet img{height:15px;margin-right:3px;vertical-align:middle;width:15px}#details-tile .detail-snippet .snippet-field-name{font-size:small}@media screen and (max-width:640px){#details-tile .detail-snippet{max-width:100%}}#details-tile .phone-open-with-container{background:#fefefe;border:1px solid #cacaca;border-radius:5px;padding:.5em}#details-tile .phone-open-with-container ul{margin:0}#details-tile .phone-open-with-container ul li{list-style:none}html[dir=rtl] .input-group-field{text-align:right}.group-progress-button-wrapper{flex:1 0 80px;text-align:center}.group-progress-button{background-color:#3f729b;border-radius:5px;height:60px;opacity:.5;padding:10px;text-align:center;width:65px}.members-section{border:1px solid #ccc}.members-section #empty-members-list-message{padding:10px}.members-section .member-row{display:flex;padding:10px}.members-section .member-row:hover{background-color:#cccccc80}.members-section .member-row .member-row-actions{color:gray;margin:0;padding:0 5px}.members-section .member-row i{padding:0 2px}.members-section .member-row .dt-icon{margin-right:5px;vertical-align:text-top}.members-header button{border:1px solid #ccc;border-bottom:2px solid #fff;height:36px;margin-bottom:-1px;padding:5px 10px;vertical-align:bottom;width:-moz-max-content;width:max-content}.members-header button img{margin-left:2px}.detail-notification-box{border:none;color:#fff;text-align:center}.detail-notification-box h4{font-weight:700}.detail-notification-box img{margin:0 10px}.accept-contact .bordered-box{background-color:#3f729b}.accept-contact .bordered-box .accept-button{background-color:#4caf50}.accept-contact .bordered-box .decline-button{background-color:#f43636}.accept-contact .bordered-box .button{margin:0 10px}select.color-select{border-radius:10px;color:#fff;font-weight:700}select.color-select option{background-color:#fff;color:#000}select.color-select{background-image:url("data:image/svg+xml;utf8,");text-shadow:rgba(0,0,0,.45) 0 0 6px}.bordered-box .grid-margin-y .cell{margin-block-end:.66rem;margin-block-start:0}.bordered-box .section-header{display:flex}.bordered-box .section-chevron{margin-inline-end:0;margin-inline-start:auto}.bordered-box .section-chevron img{vertical-align:middle;width:20px}.bordered-box .chevron_down{display:none}.bordered-box .section-body{display:flex;flex-direction:column}.bordered-box.collapsed .chevron_up{display:none}.bordered-box.collapsed .chevron_down{display:block}.bordered-box.collapsed .section-body{display:none}.single-template .section-body{gap:.8rem}.hidden-grid-item{display:none}.typeahead__query{z-index:1!important}.assigned-to-row{align-items:center;display:flex;flex-wrap:wrap}.assigned-to-row .status-square{border-radius:2px;display:inline-block;height:13px;width:13px}.assigned-to-row>span{margin-right:10px}.dt_user_select .typeahead__cancel-button{line-height:1.5;visibility:inherit}#tasks-modal .existing-task-action{color:#3f729b;font-size:10px;margin:0 5px}.details-second-bar a,.details-second-bar button,.details-second-bar span{font-size:12px}.details-second-bar .title{font-size:15px}.details-second-bar .record-name-tagline{display:inline-block;font-size:10px}.details-second-bar .record-name-tagline a,.details-second-bar .record-name-tagline span{font-size:10px;margin:0;vertical-align:baseline}.details-second-bar .dt-record-type-icon{height:10px;vertical-align:baseline;width:10px}.details-second-bar .control-buttons{grid-gap:.3em}.details-second-bar .details-bar-picture{cursor:pointer;vertical-align:middle}.details-second-bar img.details-bar-picture{border-radius:5px;height:55px;min-width:55px;-o-object-fit:cover;object-fit:cover;width:55px}.details-second-bar i.details-bar-picture{display:flex;font-size:55px;height:40px;opacity:.3}.details-second-bar i.details-bar-picture:before{align-self:center}.is-stuck #second-bar-small img.details-bar-picture{height:40px;min-width:40px;width:40px}.is-stuck #second-bar-small i.details-bar-picture{font-size:40px;height:40px}.is-stuck #second-bar-small{border-top:.5rem solid #3f729b}.is-stuck #second-bar-small .mobile-nav-actions{display:none}.is-stuck #second-bar-small #record-tagline{display:none;height:0;opacity:0}.is-stuck .hide-on-scroll{display:none}#second-bar-small{border-top:none}#second-bar-small #record-tagline{opacity:1;transition:all .3s}#second-bar-small .mobile-nav-actions{margin-bottom:5px;grid-gap:5px}.add-link-dropdown{display:inline-block;margin:0 5px;position:absolute}.add-link-dropdown:before{content:"";cursor:pointer;height:25px;position:absolute;transform:translate(-18px,-3px);width:50px}.add-link-dropdown__content{background-color:#fff;border:1px solid #cacaca;box-shadow:0 8px 16px #0003;display:none;min-width:160px;position:absolute;transform:translate(-15%);z-index:1}html[dir=rtl] .add-link-dropdown__content{transform:translate(15%)}.add-link-dropdown:hover .add-link-dropdown__content,.add-link-dropdown__content:hover{display:block}.add-link__option{cursor:pointer;padding:5px 10px}.add-link__option:hover{background-color:#3f729b;color:#fff}.link-section .section-subheader{display:none}.link-section .section-subheader:has(+div){display:block}.link-section .input-group{margin-bottom:5px}#assigned_to_user_modal #filter-tabs img{display:inline-block;height:20px;margin-right:2px;vertical-align:middle;width:20px}.dispatcher-tile .populated-list .assigned-to-row>span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dispatcher-tile .populated-list .assigned-to-row:hover{background-color:#f2f2f2}.dispatcher-tile .populated-list .assigned-to-row{border-bottom:1px solid hsla(0,0%,50%,.31);padding:5px 5px 0}.dispatcher-tile .populated-list{max-height:250px;overflow-y:scroll}.health-item{border-radius:100%;color:#000;cursor:pointer;display:none;font-size:16px;font-style:italic;height:50px;margin:auto;position:absolute;text-align:center;width:50px}.health-item img{filter:grayscale(1) opacity(.75);height:50px;width:50px}.health-item i{filter:grayscale(1) opacity(.2);font-size:50px}.practiced-item{filter:none!important}.practiced-button{background-color:#3f729b!important;opacity:unset!important}.practiced-button img{filter:none!important}.health-circle{border:3px dashed #a9a9a9;border-radius:100%;display:block;height:280px;margin:auto;width:280px}.health-grid{display:inline-block;height:100%;margin-left:auto;margin-right:auto;position:relative;width:100%}.committed{border:3px solid #4caf50!important}.group-progress-button img{filter:grayscale(1) contrast(1.35)}.empty-health{height:35px;margin-left:auto;margin-right:auto;margin-top:40%;width:35px}.empty-health-text{font-style:italic;margin-left:-15%;margin-top:-15%;text-align:center}#content.template-merge-post-details table,#content.template-merge-post-details tbody,#content.template-merge-post-details td,#content.template-merge-post-details tr{border:none}#content.template-merge-post-details #main_header{margin-bottom:10px}#content.template-merge-post-details #main_header .bordered-box{text-align:center}#content.template-merge-post-details #main_header #select_current_primary_record{max-width:60%;min-width:60%}#content.template-merge-post-details #main_archiving{margin-bottom:10px}#content.template-merge-post-details #main_archiving .main-archiving-primary-switch-but-div{text-align:center}#content.template-merge-post-details #main_archiving #main_archiving_fields_div{max-height:800px!important;min-height:500px!important;overflow:auto}#content.template-merge-post-details #main_primary{margin-bottom:10px}#content.template-merge-post-details #main_primary #main_primary_fields_div{max-height:800px!important;min-height:500px!important;overflow:auto}#content.template-merge-post-details #main_updated{margin-bottom:10px}#content.template-merge-post-details #main_updated #main_updated_fields_div{max-height:800px!important;min-height:500px!important;overflow:auto}#content.template-merge-post-details #main_footer .bordered-box{text-align:center}.merge-modal{border:1px solid #3f729b;border-radius:10px;padding:0}.merge-modal-header{background-color:#3f729b;color:#fff;text-align:center}.merge-modal-heading{font-size:1.5rem;padding:10px 0}.merge-modal-subheading{display:inline-block;font-size:1.25rem;font-weight:700;margin-bottom:0;padding:10px 0;text-align:center;width:100%}.merge-modal-spinner{display:inline-block}.merge-modal-no-dups-message{display:none;margin-top:20px;text-align:center}.merge-modal-close{float:right;margin-top:15px}.merge-modal-contact-row{background-color:#f2f2f2;overflow:hidden;padding:2%}.merge-modal-contact-name{color:#3f729b;font-weight:700}.merge-modal-contact-info{font-size:16px;font-weight:400}.merge-modal-contact-row img{max-height:1em;max-width:1em}.merge-modal-button{float:right;padding-left:10%}.duplicates-detected-button{margin-bottom:0;padding:.5em}#content.template-new-post .form-fields{display:flex;flex-direction:column;gap:1rem}#content.template-new-post .form-fields .form-field>*{margin-block-end:0}#content.template-new-post .form-fields #show-shield-banner{order:2}#content.template-new-post .form-fields .form-field.hidden,#content.template-new-post .form-fields .form-field.other-fields{order:3}#content.template-new-post .form-fields :not(.form-field){order:5}#content.template-new-post .help-text{margin-top:0}#list-actions .bordered-box{background-color:#ecf5fc}#list-actions .bordered-box .section-header{align-items:center;justify-content:space-between}#list-actions .bordered-box .section-header .list-action-close-button{color:currentColor;font-size:2rem;font-weight:lighter;position:relative;right:revert;top:revert}#list-actions .bordered-box .section-body .list_action_section,#list-actions .bordered-box .section-body .list_action_section>.close-button{display:none}#list-actions .bordered-box .section-body .grid-x{flex-wrap:wrap}#list-actions .bordered-box .section-body .grid-x:not(.grid-margin-x){gap:1rem}#list-actions .bordered-box .section-body .grid-x>.cell{flex:1 1 200px;min-width:200px;overflow-x:clip}#list-actions .bordered-box .section-body .grid-x>.cell.medium-12{flex:1 1 100%;min-width:100%}#bulk_edit_master input,.bulk_edit_checkbox input{display:none;margin:auto}@media screen and (max-width:1023px){#bulk_edit_master input,.bulk_edit_checkbox input{height:1.5rem;width:1.5rem}}table.js-list.bulk_edit_on td.index .record_picture{display:none}table.js-list.bulk_edit_on #bulk_edit_master input,table.js-list.bulk_edit_on .bulk_edit_checkbox input{display:block}table.js-list.bulk_edit_on [data-id=name]{left:32px}#bulk_edit_picker .cell{margin-block-end:.66rem}#bulk_edit_picker .button-group.small .button{border:1px solid #ccc}#bulk_edit_picker .button-group.small .button.selected-select-button{border:none}#bulk_add-comment-section{background:#fefefe;border:1px solid #dcdcdc;border-radius:3px;margin:0 0 1.06667rem}#bulk_add-comment-section select,#bulk_add-comment-section textarea{border:none;margin-bottom:0}#bulk_add-comment-section select{box-shadow:none}#bulk_add-comment-section .section-subheader{padding-left:.5rem;padding-right:.15rem;padding-top:.53333rem}#bulk_comment-input{margin:0}#bulk_edit_delete_submit,#bulk_edit_submit{width:100%}.list_field_picker ul{-moz-column-width:160px;column-width:160px;margin-bottom:10px}.list_field_picker ul li{padding-inline-start:1.2rem;text-align:start;text-indent:-1.2rem}.field-search-option{align-items:center;display:flex}.field-search-option:hover{background-color:#f0f0f0}.field-search-option:last-child{border-bottom:none}.field-search-option .dt-icon,.field-search-option i,.field-search-option img,.field-search-option svg{display:block;flex-shrink:0;height:16px;margin-right:8px;width:16px}.field-search-option.no-icon:before{content:"";display:inline-block;flex-shrink:0;height:16px;margin-right:8px;width:16px}.field-search-option>span{align-items:center;display:flex;flex:1}.enabled-field-tag{align-items:center;display:inline-flex;height:28px;line-height:1;vertical-align:top}.enabled-field-tag .dt-icon,.enabled-field-tag i,.enabled-field-tag img,.enabled-field-tag svg{display:block;flex-shrink:0;height:14px;margin-right:8px;width:14px}.enabled-field-tag img{filter:invert(100%) sepia(100%) saturate(6%) hue-rotate(105deg) brightness(102%) contrast(102%)}.enabled-field-tag i{color:#fff}.enabled-field-tag>span{align-items:center;display:flex;flex-shrink:0;height:100%;white-space:nowrap}.enabled-field-tag .remove-field-btn{align-items:center;background:none;border:none;color:#fff;cursor:pointer;display:flex;flex-shrink:0;font-size:16px;height:18px;justify-content:center;line-height:1;margin-left:8px;padding:0;width:18px}.enabled-field-tag .remove-field-btn:hover{background-color:#fff3;border-radius:2px}.field-selection-ui .field-search-label{display:block;font-weight:700;margin-bottom:5px}.field-selection-ui .field-search-container{position:relative}.field-selection-ui .field-search-input{border:1px solid #ccc;border-radius:4px;padding:8px;width:100%}.field-selection-ui .field-search-dropdown{background:#fff;border:1px solid #ccc;border-radius:0 0 4px 4px;border-top:none;display:none;left:0;max-height:200px;overflow-y:auto;position:absolute;right:0;top:100%;z-index:1000}.field-selection-ui .field-search-option-inline{border-bottom:1px solid #f0f0f0;cursor:pointer;padding:8px 12px}.field-selection-ui .no-fields-found{color:#666;font-style:italic;padding:8px 12px}.field-selection-ui .enabled-fields-section{margin-bottom:15px}.field-selection-ui .enabled-fields-label{display:block;font-weight:700;margin-bottom:5px}.field-selection-ui .enabled-fields-container{background:#f9f9f9;border:1px solid #ddd;border-radius:4px;min-height:40px;padding:8px}.field-selection-ui .no-fields-message{color:#666;font-style:italic}.field-selection-ui .enabled-field-tag-inline{background:#3f729b;border-radius:3px;color:#fff;font-size:12px;margin:2px;padding:0 8px}.field-selection-ui .remove-field-btn-inline{background:none;border:none;color:#fff;cursor:pointer}.dt-radio.button-group label{background-color:transparent;color:#000;display:inline;padding:0 20px 0 5px}#list-filters{display:flex;flex-direction:column;gap:var(--grid-gap)}@media screen and (max-width:1023px){#list-filters #tile-list-exports{display:none!important}}#list-filter-tabs{margin-top:10px;margin-inline:-1rem}#list-filter-tabs .is-active a,#list-filter-tabs .is-active a:focus{background-color:#3f729b;color:#fff}#list-filter-tabs .accordion-title{font-size:inherit;font-weight:700}#list-filter-tabs .accordion-title .tab-count-span{font-size:12px;font-weight:100}#list-filter-tabs .accordion-title{padding:.75rem 1rem}#list-filter-tabs .accordion-content,#list-filter-tabs .accordion-title{border-inline:0}.filter{border-bottom:1px solid #e2e2e2;border-top:1px solid #e2e2e2;margin:0 -1rem;padding:0 1rem 10px;width:calc(100% + 2rem)}.filter--closed{padding-bottom:0}.filter__title:hover{color:#2196f3}.filter__title:before{content:"▼";float:right}.filter--closed .filter__title:before{content:"▶";float:right}.filter--closed :not(.filter__title){display:none}.filter__title{cursor:pointer}.filter input,.list-views input{margin:0 .2rem 0 0}.typeahead__query.disabled{position:relative}.typeahead__query.disabled:after{content:"";inset:0;position:absolute;z-index:100}.filter label:hover,.list-views label:hover{color:#2196f3}.list-views{margin-bottom:.5rem}.list-views__sub{margin-left:20px}.list-view{-moz-column-gap:.2rem;column-gap:.2rem;cursor:pointer;display:flex}.list-view__count{float:right}.filter-list-name,.list-view__text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.accordion-item[data-id=split_by] .accordion{margin-block-start:.5rem}.accordion-item[data-id=split_by] .field-select-wrapper{display:flex;gap:1rem}@media screen and (max-width:639px){#content.archive-template #inner-content #list-filters{background:#00000080;display:none;inset-block:0;inset-inline:0;justify-content:end;opacity:0;overscroll-behavior-y:none;position:fixed;transition:opacity .5s ease-in-out,display .5s step-end;transition-behavior:allow-discrete;z-index:5}#content.archive-template #inner-content #list-filters:has(.bordered-box:not(.collapsed)){display:flex;opacity:1}@starting-style{#content.archive-template #inner-content #list-filters:has(.bordered-box:not(.collapsed)){opacity:0}#content.archive-template #inner-content #list-filters:has(.bordered-box:not(.collapsed)) .bordered-box{transform:translateY(100%)}}#content.archive-template #inner-content #list-filters .bordered-box{border:0;border-bottom-left-radius:0;border-bottom-right-radius:0;height:calc(100vh - 200px);overflow-y:auto;overscroll-behavior-y:contain;transition:transform .5s ease-in-out}#content.archive-template #inner-content #list-filters .bordered-box.collapsed{transform:translateY(100%)}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron{background:none;border:none;color:inherit;cursor:pointer;height:30px;padding:0;position:relative;width:30px}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron img{display:none}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:after,#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:before{background-color:currentcolor;content:"";height:2px;left:50%;position:absolute;top:50%;transform-origin:center;width:20px}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:before{transform:translate(-50%,-50%) rotate(45deg)}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:after{transform:translate(-50%,-50%) rotate(-45deg)}}#content.archive-template{max-width:100%}#content.archive-template #inner-content{--grid-gap:.75rem;display:grid;grid-template-areas:"filters" "actions" "list";grid-template-columns:1fr;grid-template-rows:min-content 0fr max-content;padding:var(--grid-gap) .33rem;transition:grid-template-columns .5s ease-in-out,grid-template-rows .5s ease-in-out,margin .5s ease-in-out}#content.archive-template #inner-content #list-filters{grid-area:filters}#content.archive-template #inner-content main{grid-area:list}#content.archive-template #inner-content #list-actions{grid-area:actions}#content.archive-template #inner-content #list-actions,#content.archive-template #inner-content #list-filters{margin:-3px;overflow:hidden;padding:3px}#content.archive-template #inner-content #list-actions>*,#content.archive-template #inner-content #list-filters>*{min-height:60px;transition:opacity .5s ease-in-out,display .5s step-end;transition-behavior:allow-discrete}#content.archive-template #inner-content.show-actions,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]){grid-template-rows:0fr 1fr max-content}#content.archive-template #inner-content.show-actions #list-filters,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters{overflow-y:hidden}#content.archive-template #inner-content.show-actions #list-filters>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters>*{display:none;opacity:0}#content.archive-template #inner-content.show-actions #list-actions>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-actions>*{display:block;opacity:1}#content.archive-template #inner-content #list-filters>:not(template){display:block;opacity:1}#content.archive-template #inner-content #list-actions{overflow-y:hidden}#content.archive-template #inner-content #list-actions>*{display:none;opacity:0}#content.archive-template .create-post-mobile{aspect-ratio:1;border-radius:50%;inset-block-end:1rem;inset-inline-end:1rem;min-height:3rem;min-width:3rem;position:fixed;z-index:1}#content.archive-template .create-post-mobile img{height:1.5rem;width:1.5rem}@media screen and (min-width:640px){#content.archive-template #inner-content{gap:var(--grid-gap);padding:var(--grid-gap)}#content.archive-template .create-post-mobile{display:none}}@media screen and (min-width:1024px){#content.archive-template #inner-content{--grid-gap:1rem;gap:var(--grid-gap);grid-template-areas:"filters list actions";grid-template-columns:1fr 3fr 0fr;grid-template-rows:1fr;margin-inline:0 calc(var(--grid-gap)*-1)}#content.archive-template #inner-content.show-actions,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]){grid-template-columns:0fr 3fr 3fr;grid-template-rows:1fr;margin-inline:calc(var(--grid-gap)*-1) 0}#content.archive-template #inner-content.show-actions #list-filters>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters>*{display:none;opacity:0}#content.archive-template #inner-content.show-actions #list-actions>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-actions>*{display:block;opacity:1}#content.archive-template #inner-content #main{margin-block-start:0;min-width:0}#content.archive-template #inner-content #list-actions>*,#content.archive-template #inner-content #list-filters>*{min-width:15vw}}@media screen and (min-width:1440px){#content.archive-template #inner-content{grid-template-columns:1fr 5fr 0fr}#content.archive-template #inner-content.show-actions,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]){grid-template-columns:1fr 3fr 2fr;margin-inline:0}#content.archive-template #inner-content.show-actions #list-filters>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters>*{display:block;opacity:1}}.js-filter-checkbox-label{-moz-column-gap:.2rem;column-gap:.2rem;cursor:pointer;display:flex}.search-wrapper{display:inline-flex;max-height:30px;transform:translateY(1px)}.search-wrapper .text-input-wrapper{display:inline-flex;position:relative;width:200px}.search-wrapper .text-input-wrapper input{display:inline-block;font:inherit;height:100%;margin:0!important;margin-right:0;max-width:200px;padding:.4em .75em;padding-inline-end:1.75rem}.search-wrapper .text-input-wrapper .search-input__clear-button{align-items:center;cursor:pointer;display:none;inset-block:0;inset-inline-end:0;justify-content:center;opacity:.5;position:absolute;width:1.75rem}.search-wrapper .text-input-wrapper input:not(:-moz-placeholder)+.search-input__clear-button{display:flex}.search-wrapper .text-input-wrapper input:not(:placeholder-shown)+.search-input__clear-button{display:flex}.search-wrapper .search-addon{align-items:center;border:1px solid #cacaca;border-inline-start:0;display:flex;justify-content:center;padding:.15em .5em;transform:none}nav.second-bar.show-for-small-only .search-wrapper,nav.second-bar.show-for-small-only .text-input-wrapper{flex-grow:1;height:3rem}nav.second-bar.show-for-small-only .search-wrapper{max-height:none;transform:none}nav.second-bar.show-for-small-only .search-wrapper .text-input-wrapper input{max-height:none;max-width:none;padding-inline-end:2.5rem}nav.second-bar.show-for-small-only .search-wrapper .search-input__clear-button{font-size:2rem;width:2.5rem}nav.second-bar.show-for-small-only .search-wrapper .search-addon img{height:20px;width:20px}nav.second-bar.show-for-small-only .button{align-items:center;display:flex;justify-content:center;min-width:3em}nav.second-bar.show-for-small-only .button.icon-button i{font-size:20px}#records-table th{cursor:pointer}.list-header{-moz-column-gap:1rem;column-gap:1rem;display:grid;grid-template:"title loading . sort options" "count count archived archived archived" auto/auto auto 1fr auto auto}.list-header .section-header{grid-area:title}.list-header #list-loading{grid-area:loading;padding-inline:1rem}.list-header #sort-menu{grid-area:sort}.list-header #more-menu{grid-area:options}.list-header .filter-result-text{font-size:.75rem;grid-area:count}.list-header #archived-switch{grid-area:archived;text-align:end}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a{align-items:center;display:flex;gap:5px;padding:.5rem 0}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .menu-label,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .menu-label{display:inline}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .mdi,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .mdi{font-size:1.5rem}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a:after,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a:after{display:none}.show-closed-switch{display:inline-block}.show-closed-switch .switch{display:inline-block;margin-bottom:0;vertical-align:middle}.list-dropdown-submenu-icon{height:15px;margin-right:6px;vertical-align:bottom;width:15px}table.js-list{table-layout:auto;word-wrap:break-word;white-space:nowrap;width:100%}table.js-list.table-remove-top-border thead{border-top:0}table.js-list thead .sortable th{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7XQMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC);background-position:100%;background-repeat:no-repeat;padding-right:1.5rem}table.js-list thead .sortable .sorting_desc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFEmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wMi0wMVQxMDowNzozMiswMTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDItMDFUMTA6MDk6MjcrMDE6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMTgtMDItMDFUMTA6MDk6MjcrMDE6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlmMjMzMjktMGYxMy1jNzRiLTkxNWMtN2Q2NjdmNWNkNTEzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQ5ZjIzMzI5LTBmMTMtYzc0Yi05MTVjLTdkNjY3ZjVjZDUxMyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjQ5ZjIzMzI5LTBmMTMtYzc0Yi05MTVjLTdkNjY3ZjVjZDUxMyI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDlmMjMzMjktMGYxMy1jNzRiLTkxNWMtN2Q2NjdmNWNkNTEzIiBzdEV2dDp3aGVuPSIyMDE4LTAyLTAxVDEwOjA3OjMyKzAxOjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnSa8d4AAACxSURBVDiN7dQxigJBEIXhTzHYe6j3MPMMm3ewuUfQtEEEI4XdA4imm20nXsHMzNzASATHxGiYaVcYjHxQSXXVzyuqqVZRFJpSuzHSG/aGvQjWqUoORstP/OBaY+ArxfD9X2dr/OGjIrZYVTVVwlIMZ0xwKj0dMU4xlPNZZ+4OyqNskOoaWrmrMRgtu/hFDwcMUwy7uvrsNlMMe0xxwSwHomabJS3Qx/xRYXbMZ9Xop70BJvgrtr8BhhwAAAAASUVORK5CYII=)}table.js-list thead .sortable .sorting_asc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFEmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wMi0wMVQxMDowMzo1OCswMTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDItMDFUMTA6MDg6MjIrMDE6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMTgtMDItMDFUMTA6MDg6MjIrMDE6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTU1MzMwNGEtNmQxNC1jYjQ3LThhZDYtMDdmZmNhOGQ0ZTA5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjk1NTMzMDRhLTZkMTQtY2I0Ny04YWQ2LTA3ZmZjYThkNGUwOSIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjk1NTMzMDRhLTZkMTQtY2I0Ny04YWQ2LTA3ZmZjYThkNGUwOSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6OTU1MzMwNGEtNmQxNC1jYjQ3LThhZDYtMDdmZmNhOGQ0ZTA5IiBzdEV2dDp3aGVuPSIyMDE4LTAyLTAxVDEwOjAzOjU4KzAxOjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrXIbv8AAACrSURBVDiN7dIxasNAEIXhT8YQCKhI79JVrpBm3bl1yAUMcmNDmoVUSZtON9iLuNNBnHuENHKjSgg5C8KVBqaZefPzmJmibVtTxWIyEpa3BCGmR3zjo6mrvzHtf5ydcMThlrAY21mI6RlnrHDBtqmrn2xnIaYCsQPBGu9dPQ+GgF2vtsdLFizEVOILT71Wic8Q00OOs7fOwe9AbvA6NDR6gNyY9Gln2Ay7B+wKEpAkCJ9ugL8AAAAASUVORK5CYII=)}table.js-list tbody tr{cursor:pointer}table.js-list tbody tr ul{list-style:none;margin:0}table.js-list tbody tr:hover{background-color:#ecf5fc}table.js-list tr{transform:translateZ(0)}table.js-list td .field-label,table.js-list th .field-label{display:none}table.js-list [data-id=name]{background-color:inherit;left:46px;position:sticky;z-index:101}table.js-list [data-id=name]:is(th){background-color:#fff}table.js-list [data-id=record_picture]{background-color:inherit;left:-1px;position:sticky}table.js-list [data-id=record_picture]:is(th){background-color:#fff}table.js-list img.list-image{border-radius:5px;height:32px;min-width:32px;-o-object-fit:cover;object-fit:cover;vertical-align:middle;width:32px}table.js-list i.list-image{font-size:32px;opacity:.125}@media screen and (min-width:1024px){.table-container{overflow-y:auto;transform:rotateX(180deg)}.list-header{grid-template:"title loading archived sort options ." "count count . . . ." auto/auto auto auto auto auto 1fr}.list-header #archived-switch{align-self:center;text-align:start}table.js-list{transform:rotateX(180deg);-webkit-transform:rotateX(180deg) translateZ(0)}table.js-list tbody tr ul{max-height:100px}table.js-list tbody tr ul,table.js-list tbody tr ul li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}table.js-list td{max-width:250px}}@media screen and (max-width:1023px){.table-container{margin-inline:-15px}table,tbody,thead{display:block}tbody{border-inline:none}table.js-list tr{align-items:center;display:grid;gap:.1rem 1rem;grid-template-columns:30px 1fr 2fr 30px;grid-template:"img name name favorite" auto/30px 1fr 2fr 30px;padding:1rem}table.js-list tr td{display:contents;padding:0}table.js-list tr td .field-label,table.js-list tr td .field-value{align-self:baseline}body.rtl table.js-list tr td .field-label,body.rtl table.js-list tr td .field-label ul,body.rtl table.js-list tr td .field-value,body.rtl table.js-list tr td .field-value ul{direction:rtl}table.js-list tr td .field-label{display:block;font-size:.75rem;grid-column:1/3}table.js-list tr td .field-value{grid-column:3/5}table.js-list tr td .field-value ul{white-space:normal}table.js-list tr td .field-value li{display:inline}table.js-list tr td .field-value li:not(:last-child):after{content:", "}table.js-list tr td:has(.field-value ul:empty){display:none}table.js-list tr [data-id=favorite],table.js-list tr [data-id=name],table.js-list tr [data-id=record_picture]{display:block;margin-block-end:.5rem}table.js-list tr [data-id=favorite] .field-label,table.js-list tr [data-id=name] .field-label,table.js-list tr [data-id=record_picture] .field-label{display:none}table.js-list tr [data-id=record_picture]{grid-area:img;order:-3}table.js-list tr [data-id=name]{font-size:1.25rem;font-weight:400;grid-area:name;grid-column:2/4;order:-2}table.js-list tr [data-id=favorite]{grid-area:favorite;order:-1}table.js-list tr.collapsed{grid-auto-rows:0fr}table.js-list tr.collapsed td:not([data-id=record_picture]):not([data-id=name]):not([data-id=favorite]) .field-label,table.js-list tr.collapsed td:not([data-id=record_picture]):not([data-id=name]):not([data-id=favorite]) .field-value{display:none}}.current-filter-list{background:#ecf5fc;border:1px solid #c2e0ff;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px 0 4px 4px;position:relative}.current-filter-list .current-filter-list-close{border-left:1px solid #c2e0ff;cursor:pointer;font-family:Arial,sans-serif;font-weight:300;margin-left:5px;padding:7px 5px}.current-filter-list .current-filter-list-close:hover{background:#c2e0ff;color:#fff}.current-filter-list.current-filter-list-excluded{background:#fcecec;border:1px solid #ffc2c2;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px 0 4px 4px;position:relative}.current-filter-list.current-filter-list-excluded .current-filter-list-close{border-left:1px solid #ffc2c2}.current-filter-list.current-filter-list-excluded .current-filter-list-close:hover{background:#ffc2c2;color:#fff}.current-filter{background:#ecf5fc;border:1px solid #c2e0ff;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px;position:relative}.current-filter .current-filter-label-button{color:#000;cursor:default;margin:0 0 0 4px}.current-filter .current-filter-label-button:hover{color:#cecece;cursor:pointer;margin:0 0 0 4px}.current-filter.current-filter-excluded{background:#fcecec;border:1px solid #ffc2c2;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px;position:relative}#filter-modal{padding:10px 0 0}#filter-modal .tabs-title>a{align-items:center;display:flex;padding:1.25rem 0 1.25rem 15px}#filter-modal .tabs-title__icon{height:1rem;margin-right:.7rem;width:1.2rem}#filter-modal h3{margin-left:10px}#filter-modal .vertical.tabs{background-color:#3f729b;border:none}#filter-modal .vertical.tabs .tabs-title>a{color:#fff}#filter-modal .vertical.tabs .tabs-title>a:hover{background-color:#224f72}#filter-modal .vertical.tabs .tabs-title>a:focus,#filter-modal .vertical.tabs .tabs-title>a[aria-selected=true]{background-color:#224f72;color:#fff}#filter-modal .vertical.tabs{max-height:500px;overflow-x:hidden;overflow-y:auto}#filter-modal .tabs-content{min-height:400px}#filter-modal .filter-modal-left{background-color:#3f729b}#filter-modal .filter-modal-right{background-color:#f2f2f2;border:none}#filter-modal .button-cancel{background-color:#f2f2f2;color:#000;margin:5px 0}#filter-modal .confirm-buttons{text-align:end}#filter-modal .grid-container{padding:0}#filter-modal #new-filter-name,#filter-modal .confirm-filter-records{margin:5px 0}.bulk-edit-field-select-wrapper{margin-bottom:16px}.bulk-edit-field-wrapper{background-color:#fafafa;border:1px solid #e0e0e0;border-radius:4px;margin-bottom:15px;padding:15px}.bulk-edit-field-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px}.bulk-edit-field-header .section-subheader{align-items:center;display:flex;flex:1;gap:8px;margin:0}.bulk-edit-remove-field-btn{align-items:center;background:transparent;border:none;color:#f44;cursor:pointer;display:flex;justify-content:center;margin-left:auto;padding:4px;transition:color .2s,transform .2s}.bulk-edit-remove-field-btn i.mdi{font-size:24px;line-height:1}.bulk-edit-remove-field-btn:hover{color:#c00;transform:scale(1.1)}.bulk-edit-remove-field-btn:focus{border-radius:2px;outline:2px solid #f44;outline-offset:2px}.bulk-edit-field-input-container{margin-top:10px}.bulk-edit-field-input-container dt-connection label,.bulk-edit-field-input-container dt-date label,.bulk-edit-field-input-container dt-datetime label,.bulk-edit-field-input-container dt-key-select label,.bulk-edit-field-input-container dt-location label,.bulk-edit-field-input-container dt-multi-select label,.bulk-edit-field-input-container dt-number label,.bulk-edit-field-input-container dt-tags label,.bulk-edit-field-input-container dt-text label,.bulk-edit-field-input-container dt-textarea label,.bulk-edit-field-input-container dt-user-select label,.bulk-edit-field-input-container dt-users-connection label{display:none!important}.bulk-edit-field-actions,.bulk-edit-selected-fields-container{margin-top:15px}.bulk-edit-field-loading{color:#999;font-style:italic;padding:10px;text-align:center}.bulk-edit-no-selection-message{background-color:#f9f9f9;border:1px solid #e0e0e0;border-radius:4px;color:#666;margin-top:20px;padding:15px;text-align:center}.bulk-edit-action-buttons{align-items:center;display:flex;gap:10px;margin-top:20px}.bulk-edit-action-buttons .button{align-items:center;display:flex;flex:1;gap:8px;justify-content:center}.bulk-edit-action-buttons .button i.mdi{font-size:18px;line-height:1}.bulk-edit-action-buttons .bulk-edit-delete-btn{background-color:#dc3545;border-color:#dc3545;color:#fff}.bulk-edit-action-buttons .bulk-edit-delete-btn:hover{background-color:#c82333;border-color:#bd2130}.bulk-edit-action-buttons .bulk-edit-delete-btn:focus{box-shadow:0 0 0 3px #dc354540}.icon-star{fill:#c7c6c1;height:1em;width:1em}.icon-star.selected{fill:#ffc105}#user-management-tools{padding:15px}#user-management-tools #user-chart{padding-left:15px;padding-right:15px;position:relative}#user-management-tools #user-chart #page-title{position:absolute}#user-management-tools #user-chart #multipliers_table{width:100%}#user-management-tools #user-chart #multipliers_table .user_row{cursor:pointer}#user-management-tools #user-chart #multipliers_table select,#user-management-tools #user-chart #multipliers_table_filter input{margin-bottom:0}#user_modal{background-color:#e2e2e2;max-width:100%}#user_modal #hero_status p{font-size:2rem}#user_modal .tabs-content{padding:0}#user_modal .tabs,#user_modal .tabs-content{background:none;border:none}#user-add-user label{font-weight:700}#user-add-user .grid-x{justify-content:space-between}@media print,screen and (min-width:40em){#user-add-user .grid-x>.medium-6{width:48%}}#map-wrapper{position:relative}#map,#map-wrapper{height:800px;width:100%}#map{left:0;top:0;z-index:1}#legend,#map{position:absolute}#legend{left:10px;right:10px;top:10px;z-index:2}#data{word-wrap:break-word}.legend{background-color:#fff;border-radius:3px;box-shadow:0 1px 2px #0000001a;font:12px/20px Roboto,Arial,sans-serif;opacity:.9;padding:10px}.legend h4{margin:0 0 10px}#spinner{display:none;left:50%;position:absolute;top:50%;z-index:20}.spinner-image{width:30px}.info-bar-font{font-size:1.5em;padding-top:9px}.border-left{border-left:1px solid #d3d3d3;padding:0 10px}#add_records_div{left:10px;max-height:100%;overflow-x:auto;position:absolute;top:90px;z-index:2}.add-records-div{background-color:#fff;border-radius:3px;box-shadow:0 1px 2px #0000001a;display:none;font:12px/20px Roboto,Arial,sans-serif;opacity:.9;padding:10px;width:300px}.close-add-records-div{cursor:pointer}#geocode-details{position:absolute;right:10px;top:15%;z-index:2}.geocode-details{background-color:#fff;border-radius:3px;box-shadow:0 1px 2px #0000001a;display:none;font:12px/20px Roboto,Arial,sans-serif;opacity:.9;padding:10px;width:300px}.close-details{cursor:pointer}#map-wrapper #legend img{height:30px;width:30px}#map-wrapper #legend #map-type{padding:0 10px}#map-wrapper #legend #map-type button{margin-bottom:0;padding:2px}#map-wrapper #legend #map-type button.selected-select-button img{filter:invert(100%) sepia(0) saturate(7481%) hue-rotate(180deg) brightness(109%) contrast(100%)}#map-wrapper #legend .map-option-buttons button{margin:0 0 0 3px}#map-wrapper #legend #loading-legend span{font-size:14px;margin:0 5px;vertical-align:middle}.timechart{height:400px}.day-activities__title{background-color:#3f729b;color:#fff;font-size:1.1rem;padding:.1rem .3rem}.post-activities{margin-bottom:.5rem}.post-activities__icon{color:#3f729b;margin-right:.1rem}.post-activities__title{color:#3f729b;display:flex;justify-content:space-between}.post-activities__item{padding-left:1.4rem}.post-activities__item--no-title{background-color:#3f729b30;padding-left:1.4rem}.activity__more-state,.fields__more-state{display:none}.fields__less-link,.fields__more-link{color:#3f729b;cursor:pointer;display:inline;padding:0 .5rem;text-decoration:underline}.activity__less-link,.fields__less-link{display:none}.activity__more-details,.fields__more-details{font-size:0;max-height:0;opacity:0;transition:.25s ease}.fields__more-state:checked~.fields__more-details{font-size:inherit;max-height:100em;opacity:1}.fields__more-state:checked~.fields__more-link{display:none}.fields__more-state:checked~.fields__less-link{display:inline}.activity__more-state:checked~.post-activities__item .activity__more-details{font-size:inherit;max-height:100em;opacity:1}.activity__more-state:checked+.post-activities__title .activity__more-link{display:none}.activity__more-state:checked+.post-activities__title .activity__less-link{display:inline}#activity_highlights .highlights-table{table-layout:fixed}#activity_highlights .highlights-table tr td:first-child{width:90%}#activity_highlights .highlights-table.striped tr:nth-child(2n){background-color:#ecf5fc;border-bottom:0}#activity_highlights h4{color:#3f729b;margin-top:1em}#activity_highlights #comment-filter{width:60px}#activity_highlights .left-margin{margin-left:.6666666667rem}#activity_highlights .comment{margin-bottom:.5rem}@media print{*{background:transparent!important;color:#000!important;filter:none!important;-ms-filter:none!important;text-shadow:none!important}a,a:visited{color:#444!important;text-decoration:underline}a:after,a:visited:after{content:" (" attr(href) ")"}a abbr[title]:after,a:visited abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.page-navigation,.respond-form,.sidebar,.wp-prev-next,nav{display:none}} +@charset "UTF-8";.image-replacement{overflow:hidden;text-indent:100%;white-space:nowrap}span.amp{font-family:Baskerville,Goudy Old Style,Palatino,Book Antiqua,serif!important;font-style:italic}@media print,screen and (min-width:40em){.reveal,.reveal.large,.reveal.small,.reveal.tiny{left:auto;margin:0 auto;right:auto}}html{line-height:1.15;-webkit-text-size-adjust:100%}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}[data-whatinput=mouse] *,[data-whatinput=mouse] :focus,[data-whatinput=touch] *,[data-whatinput=touch] :focus,[data-whatintent=mouse] *,[data-whatintent=mouse] :focus,[data-whatintent=touch] *,[data-whatintent=touch] :focus{outline:none}[draggable=false]{-webkit-touch-callout:none;-webkit-user-select:none}.foundation-mq{font-family:"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"}html{box-sizing:border-box;font-size:.9375rem}*,:after,:before{box-sizing:inherit}body{background:#fefefe;color:#0a0a0a;font-family:Helvetica,Arial,sans-serif;font-weight:300;line-height:1.5;margin:0;padding:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;height:auto;max-width:100%;vertical-align:middle;-ms-interpolation-mode:bicubic}textarea{border-radius:0;height:auto;min-height:50px}select{box-sizing:border-box;width:100%}.map_canvas embed,.map_canvas img,.map_canvas object,.mqa-display embed,.mqa-display img,.mqa-display object{max-width:none!important}[data-whatinput=mouse] button{outline:0}button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:0;border-radius:0;cursor:auto;line-height:1;padding:0}pre{overflow:auto;-webkit-overflow-scrolling:touch}button,input,optgroup,select,textarea{font-family:inherit}.is-visible{display:block!important}.is-hidden{display:none!important}[type=color],[type=date],[type=datetime-local],[type=datetime],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fefefe;border:1px solid #cacaca;border-radius:0;box-shadow:inset 0 1px 2px #0a0a0a1a;box-sizing:border-box;color:#0a0a0a;display:block;font-family:inherit;font-size:1rem;font-weight:300;height:2.5rem;line-height:1.5;margin:0 0 1.0666666667rem;padding:.5333333333rem;transition:box-shadow .5s,border-color .25s ease-in-out;width:100%}[type=color]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=datetime]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,textarea:focus{background-color:#fefefe;border:1px solid #8a8a8a;box-shadow:0 0 5px #cacaca;outline:none;transition:box-shadow .5s,border-color .25s ease-in-out}textarea{max-width:100%}textarea[rows]{height:auto}input:disabled,input[readonly],textarea:disabled,textarea[readonly]{background-color:#e6e6e6;cursor:not-allowed}[type=button],[type=submit]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:0}input[type=search]{box-sizing:border-box}::-moz-placeholder{color:#cacaca}::placeholder{color:#cacaca}[type=checkbox],[type=file],[type=radio]{margin:0 0 1.0666666667rem}[type=checkbox]+label,[type=radio]+label{display:inline-block;margin-bottom:0;margin-left:.5333333333rem;margin-right:1.0666666667rem;vertical-align:baseline}[type=checkbox]+label[for],[type=radio]+label[for]{cursor:pointer}label>[type=checkbox],label>[type=radio]{margin-right:.5333333333rem}[type=file]{width:100%}label{color:#0a0a0a;display:block;font-size:.9333333333rem;font-weight:300;line-height:1.8;margin:0}label.middle{line-height:1.5;margin:0 0 1.0666666667rem;padding:.6rem 0}.help-text{color:#0a0a0a;font-size:.8666666667rem;font-style:italic;margin-top:-.5333333333rem}.input-group{align-items:stretch;display:flex;margin-bottom:1.0666666667rem;width:100%}.input-group>:first-child,.input-group>:first-child.input-group-button>*,.input-group>:last-child,.input-group>:last-child.input-group-button>*{border-radius:0}.input-group-button,.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label,.input-group-field,.input-group-label{margin:0;white-space:nowrap}.input-group-label{align-items:center;background:#e6e6e6;border:1px solid #cacaca;color:#0a0a0a;display:flex;flex:0 0 auto;padding:0 1rem;text-align:center;white-space:nowrap}.input-group-label:first-child{border-right:0}.input-group-label:last-child{border-left:0}.input-group-field{border-radius:0;flex:1 1 0px;min-width:0}.input-group-button{display:flex;flex:0 0 auto;padding-bottom:0;padding-top:0;text-align:center}.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label{align-self:stretch;font-size:1rem;height:auto;padding-bottom:0;padding-top:0}fieldset{border:0;margin:0;padding:0}legend{margin-bottom:.5333333333rem;max-width:100%}.fieldset{border:1px solid #cacaca;margin:1.2rem 0;padding:1.3333333333rem}.fieldset legend{margin:0 0 0 -.2rem;padding:0 .2rem}select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fefefe;background-image:url('data:image/svg+xml;utf8,');background-origin:content-box;background-position:right -1.0666666667rem center;background-repeat:no-repeat;background-size:9px 6px;border:1px solid #cacaca;border-radius:0;color:#0a0a0a;font-family:inherit;font-size:1rem;font-weight:300;height:2.5rem;line-height:1.5;margin:0 0 1.0666666667rem;padding:.5333333333rem 1.6rem .5333333333rem .5333333333rem;transition:box-shadow .5s,border-color .25s ease-in-out}@media screen and (min-width:0�){select{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==)}}select:focus{background-color:#fefefe;border:1px solid #8a8a8a;box-shadow:0 0 5px #cacaca;outline:none;transition:box-shadow .5s,border-color .25s ease-in-out}select:disabled{background-color:#e6e6e6;cursor:not-allowed}select::-ms-expand{display:none}select[multiple]{background-image:none;height:auto}select:not([multiple]){padding-bottom:0;padding-top:0}.is-invalid-input:not(:focus){background-color:#f9ecea;border-color:#cc4b37}.is-invalid-input:not(:focus)::-moz-placeholder{color:#cc4b37}.is-invalid-input:not(:focus)::placeholder{color:#cc4b37}.form-error,.is-invalid-label{color:#cc4b37}.form-error{display:none;font-size:.8rem;font-weight:700;margin-bottom:1.0666666667rem;margin-top:-.5333333333rem}.form-error.is-visible{display:block}blockquote,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,li,ol,p,pre,td,th,ul{margin:0;padding:0}p{font-size:inherit;line-height:1.6;margin-bottom:1rem;text-rendering:optimizeLegibility}em,i{font-style:italic}b,em,i,strong{line-height:inherit}b,strong{font-weight:700}small{font-size:80%;line-height:inherit}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{color:inherit;font-family:Helvetica,Arial,sans-serif;font-style:normal;font-weight:300;text-rendering:optimizeLegibility}.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#cacaca;line-height:0}.h1,h1{font-size:1.6rem}.h1,.h2,h1,h2{line-height:1.4;margin-bottom:.5rem;margin-top:0}.h2,h2{font-size:1.3333333333rem}.h3,h3{font-size:1.2666666667rem}.h3,.h4,h3,h4{line-height:1.4;margin-bottom:.5rem;margin-top:0}.h4,h4{font-size:1.2rem}.h5,h5{font-size:1.1333333333rem}.h5,.h6,h5,h6{line-height:1.4;margin-bottom:.5rem;margin-top:0}.h6,h6{font-size:1.0666666667rem}@media print,screen and (min-width:40em){.h1,h1{font-size:2rem}.h2,h2{font-size:1.6rem}.h3,h3{font-size:1.3333333333rem}.h4,h4{font-size:1.2rem}.h5,h5{font-size:1.1333333333rem}.h6,h6{font-size:1.0666666667rem}}a{color:#3f729b;cursor:pointer;line-height:inherit;text-decoration:none}a:focus,a:hover{color:#366285}a img,hr{border:0}hr{border-bottom:1px solid #cacaca;clear:both;height:0;margin:1.3333333333rem auto;max-width:100%}dl,ol,ul{line-height:1.6;list-style-position:outside;margin-bottom:1rem}li{font-size:inherit}ul{list-style-type:disc}ol,ul{margin-left:1.25rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0;margin-left:1.25rem}dl{margin-bottom:1rem}dl dt{font-weight:700;margin-bottom:.3rem}blockquote{border-left:1px solid #cacaca;margin:0 0 1rem;padding:.6rem 1.3333333333rem 0 1.2666666667rem}blockquote,blockquote p{color:#8a8a8a;line-height:1.6}abbr,abbr[title]{border-bottom:1px dotted #0a0a0a;cursor:help;text-decoration:none}figure,kbd{margin:0}kbd{background-color:#e6e6e6;color:#0a0a0a;font-family:Consolas,Liberation Mono,Courier,monospace;padding:.1333333333rem .2666666667rem 0}.subheader{color:#8a8a8a;font-weight:300;line-height:1.4;margin-bottom:.5rem;margin-top:.2rem}.lead{font-size:1.171875rem;line-height:1.6}.stat{font-size:2.5rem;line-height:1}p+.stat{margin-top:-1rem}ol.no-bullet,ul.no-bullet{list-style:none;margin-left:0}.cite-block,cite{color:#8a8a8a;display:block;font-size:.8666666667rem}.cite-block:before,cite:before{content:"— "}.code-inline,code{display:inline;max-width:100%;word-wrap:break-word;padding:.1333333333rem .3333333333rem .0666666667rem}.code-block,.code-inline,code{background-color:#e6e6e6;border:1px solid #cacaca;color:#0a0a0a;font-family:Consolas,Liberation Mono,Courier,monospace;font-weight:300}.code-block{display:block;margin-bottom:1.5rem;overflow:auto;padding:1rem;white-space:pre}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}@media print,screen and (min-width:40em){.medium-text-left{text-align:left}.medium-text-right{text-align:right}.medium-text-center{text-align:center}.medium-text-justify{text-align:justify}}@media print,screen and (min-width:64em){.large-text-left{text-align:left}.large-text-right{text-align:right}.large-text-center{text-align:center}.large-text-justify{text-align:justify}}@media screen and (min-width:75em){.xlarge-text-left{text-align:left}.xlarge-text-right{text-align:right}.xlarge-text-center{text-align:center}.xlarge-text-justify{text-align:justify}}@media screen and (min-width:90em){.xxlarge-text-left{text-align:left}.xxlarge-text-right{text-align:right}.xxlarge-text-center{text-align:center}.xxlarge-text-justify{text-align:justify}}.show-for-print{display:none!important}@media print{*{background:transparent!important;box-shadow:none!important;color:#000!important;-webkit-print-color-adjust:economy;print-color-adjust:economy;text-shadow:none!important}.show-for-print{display:block!important}.hide-for-print{display:none!important}table.show-for-print{display:table!important}thead.show-for-print{display:table-header-group!important}tbody.show-for-print{display:table-row-group!important}tr.show-for-print{display:table-row!important}td.show-for-print,th.show-for-print{display:table-cell!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}abbr[title]:after{content:" (" attr(title) ")"}blockquote,pre{border:1px solid #8a8a8a;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.print-break-inside{page-break-inside:auto}}.grid-container{margin-left:auto;margin-right:auto;max-width:80rem;padding-left:.3333333333rem;padding-right:.3333333333rem}@media print,screen and (min-width:40em){.grid-container{padding-left:.7rem;padding-right:.7rem}}@media print,screen and (min-width:64em){.grid-container{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:75em){.grid-container{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:90em){.grid-container{padding-left:.7rem;padding-right:.7rem}}.grid-container.fluid{margin-left:auto;margin-right:auto;max-width:100%;padding-left:.3333333333rem;padding-right:.3333333333rem}@media print,screen and (min-width:40em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}@media print,screen and (min-width:64em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:75em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:90em){.grid-container.fluid{padding-left:.7rem;padding-right:.7rem}}.grid-container.full{margin-left:auto;margin-right:auto;max-width:100%;padding-left:0;padding-right:0}.grid-x{display:flex;flex-flow:row wrap}.cell{flex:0 0 auto;min-height:0;min-width:0;width:100%}.cell.auto{flex:1 1 0}.cell.shrink{flex:0 0 auto}.grid-x>.auto,.grid-x>.shrink{width:auto}.grid-x>.small-1,.grid-x>.small-10,.grid-x>.small-11,.grid-x>.small-12,.grid-x>.small-2,.grid-x>.small-3,.grid-x>.small-4,.grid-x>.small-5,.grid-x>.small-6,.grid-x>.small-7,.grid-x>.small-8,.grid-x>.small-9,.grid-x>.small-full,.grid-x>.small-shrink{flex-basis:auto}@media print,screen and (min-width:40em){.grid-x>.medium-1,.grid-x>.medium-10,.grid-x>.medium-11,.grid-x>.medium-12,.grid-x>.medium-2,.grid-x>.medium-3,.grid-x>.medium-4,.grid-x>.medium-5,.grid-x>.medium-6,.grid-x>.medium-7,.grid-x>.medium-8,.grid-x>.medium-9,.grid-x>.medium-full,.grid-x>.medium-shrink{flex-basis:auto}}@media print,screen and (min-width:64em){.grid-x>.large-1,.grid-x>.large-10,.grid-x>.large-11,.grid-x>.large-12,.grid-x>.large-2,.grid-x>.large-3,.grid-x>.large-4,.grid-x>.large-5,.grid-x>.large-6,.grid-x>.large-7,.grid-x>.large-8,.grid-x>.large-9,.grid-x>.large-full,.grid-x>.large-shrink{flex-basis:auto}}@media screen and (min-width:75em){.grid-x>.xlarge-1,.grid-x>.xlarge-10,.grid-x>.xlarge-11,.grid-x>.xlarge-12,.grid-x>.xlarge-2,.grid-x>.xlarge-3,.grid-x>.xlarge-4,.grid-x>.xlarge-5,.grid-x>.xlarge-6,.grid-x>.xlarge-7,.grid-x>.xlarge-8,.grid-x>.xlarge-9,.grid-x>.xlarge-full,.grid-x>.xlarge-shrink{flex-basis:auto}}@media screen and (min-width:90em){.grid-x>.xxlarge-1,.grid-x>.xxlarge-10,.grid-x>.xxlarge-11,.grid-x>.xxlarge-12,.grid-x>.xxlarge-2,.grid-x>.xxlarge-3,.grid-x>.xxlarge-4,.grid-x>.xxlarge-5,.grid-x>.xxlarge-6,.grid-x>.xxlarge-7,.grid-x>.xxlarge-8,.grid-x>.xxlarge-9,.grid-x>.xxlarge-full,.grid-x>.xxlarge-shrink{flex-basis:auto}}.grid-x>.small-1,.grid-x>.small-10,.grid-x>.small-11,.grid-x>.small-12,.grid-x>.small-2,.grid-x>.small-3,.grid-x>.small-4,.grid-x>.small-5,.grid-x>.small-6,.grid-x>.small-7,.grid-x>.small-8,.grid-x>.small-9{flex:0 0 auto}.grid-x>.small-1{width:8.3333333333%}.grid-x>.small-2{width:16.6666666667%}.grid-x>.small-3{width:25%}.grid-x>.small-4{width:33.3333333333%}.grid-x>.small-5{width:41.6666666667%}.grid-x>.small-6{width:50%}.grid-x>.small-7{width:58.3333333333%}.grid-x>.small-8{width:66.6666666667%}.grid-x>.small-9{width:75%}.grid-x>.small-10{width:83.3333333333%}.grid-x>.small-11{width:91.6666666667%}.grid-x>.small-12{width:100%}@media print,screen and (min-width:40em){.grid-x>.medium-auto{flex:1 1 0;width:auto}.grid-x>.medium-1,.grid-x>.medium-10,.grid-x>.medium-11,.grid-x>.medium-12,.grid-x>.medium-2,.grid-x>.medium-3,.grid-x>.medium-4,.grid-x>.medium-5,.grid-x>.medium-6,.grid-x>.medium-7,.grid-x>.medium-8,.grid-x>.medium-9,.grid-x>.medium-shrink{flex:0 0 auto}.grid-x>.medium-shrink{width:auto}.grid-x>.medium-1{width:8.3333333333%}.grid-x>.medium-2{width:16.6666666667%}.grid-x>.medium-3{width:25%}.grid-x>.medium-4{width:33.3333333333%}.grid-x>.medium-5{width:41.6666666667%}.grid-x>.medium-6{width:50%}.grid-x>.medium-7{width:58.3333333333%}.grid-x>.medium-8{width:66.6666666667%}.grid-x>.medium-9{width:75%}.grid-x>.medium-10{width:83.3333333333%}.grid-x>.medium-11{width:91.6666666667%}.grid-x>.medium-12{width:100%}}@media print,screen and (min-width:64em){.grid-x>.large-auto{flex:1 1 0;width:auto}.grid-x>.large-1,.grid-x>.large-10,.grid-x>.large-11,.grid-x>.large-12,.grid-x>.large-2,.grid-x>.large-3,.grid-x>.large-4,.grid-x>.large-5,.grid-x>.large-6,.grid-x>.large-7,.grid-x>.large-8,.grid-x>.large-9,.grid-x>.large-shrink{flex:0 0 auto}.grid-x>.large-shrink{width:auto}.grid-x>.large-1{width:8.3333333333%}.grid-x>.large-2{width:16.6666666667%}.grid-x>.large-3{width:25%}.grid-x>.large-4{width:33.3333333333%}.grid-x>.large-5{width:41.6666666667%}.grid-x>.large-6{width:50%}.grid-x>.large-7{width:58.3333333333%}.grid-x>.large-8{width:66.6666666667%}.grid-x>.large-9{width:75%}.grid-x>.large-10{width:83.3333333333%}.grid-x>.large-11{width:91.6666666667%}.grid-x>.large-12{width:100%}}@media screen and (min-width:75em){.grid-x>.xlarge-auto{flex:1 1 0;width:auto}.grid-x>.xlarge-1,.grid-x>.xlarge-10,.grid-x>.xlarge-11,.grid-x>.xlarge-12,.grid-x>.xlarge-2,.grid-x>.xlarge-3,.grid-x>.xlarge-4,.grid-x>.xlarge-5,.grid-x>.xlarge-6,.grid-x>.xlarge-7,.grid-x>.xlarge-8,.grid-x>.xlarge-9,.grid-x>.xlarge-shrink{flex:0 0 auto}.grid-x>.xlarge-shrink{width:auto}.grid-x>.xlarge-1{width:8.3333333333%}.grid-x>.xlarge-2{width:16.6666666667%}.grid-x>.xlarge-3{width:25%}.grid-x>.xlarge-4{width:33.3333333333%}.grid-x>.xlarge-5{width:41.6666666667%}.grid-x>.xlarge-6{width:50%}.grid-x>.xlarge-7{width:58.3333333333%}.grid-x>.xlarge-8{width:66.6666666667%}.grid-x>.xlarge-9{width:75%}.grid-x>.xlarge-10{width:83.3333333333%}.grid-x>.xlarge-11{width:91.6666666667%}.grid-x>.xlarge-12{width:100%}}@media screen and (min-width:90em){.grid-x>.xxlarge-auto{flex:1 1 0;width:auto}.grid-x>.xxlarge-1,.grid-x>.xxlarge-10,.grid-x>.xxlarge-11,.grid-x>.xxlarge-12,.grid-x>.xxlarge-2,.grid-x>.xxlarge-3,.grid-x>.xxlarge-4,.grid-x>.xxlarge-5,.grid-x>.xxlarge-6,.grid-x>.xxlarge-7,.grid-x>.xxlarge-8,.grid-x>.xxlarge-9,.grid-x>.xxlarge-shrink{flex:0 0 auto}.grid-x>.xxlarge-shrink{width:auto}.grid-x>.xxlarge-1{width:8.3333333333%}.grid-x>.xxlarge-2{width:16.6666666667%}.grid-x>.xxlarge-3{width:25%}.grid-x>.xxlarge-4{width:33.3333333333%}.grid-x>.xxlarge-5{width:41.6666666667%}.grid-x>.xxlarge-6{width:50%}.grid-x>.xxlarge-7{width:58.3333333333%}.grid-x>.xxlarge-8{width:66.6666666667%}.grid-x>.xxlarge-9{width:75%}.grid-x>.xxlarge-10{width:83.3333333333%}.grid-x>.xxlarge-11{width:91.6666666667%}.grid-x>.xxlarge-12{width:100%}}.grid-margin-x:not(.grid-x)>.cell{width:auto}.grid-margin-y:not(.grid-y)>.cell{height:auto}.grid-margin-x{margin-left:-.3333333333rem;margin-right:-.3333333333rem}@media print,screen and (min-width:40em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}@media print,screen and (min-width:64em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:75em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:90em){.grid-margin-x{margin-left:-.7rem;margin-right:-.7rem}}.grid-margin-x>.cell{margin-left:.3333333333rem;margin-right:.3333333333rem;width:calc(100% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-x>.cell{margin-left:.7rem;margin-right:.7rem;width:calc(100% - 1.4rem)}}.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - .66667rem)}.grid-margin-x>.small-2{width:calc(16.66667% - .66667rem)}.grid-margin-x>.small-3{width:calc(25% - .66667rem)}.grid-margin-x>.small-4{width:calc(33.33333% - .66667rem)}.grid-margin-x>.small-5{width:calc(41.66667% - .66667rem)}.grid-margin-x>.small-6{width:calc(50% - .66667rem)}.grid-margin-x>.small-7{width:calc(58.33333% - .66667rem)}.grid-margin-x>.small-8{width:calc(66.66667% - .66667rem)}.grid-margin-x>.small-9{width:calc(75% - .66667rem)}.grid-margin-x>.small-10{width:calc(83.33333% - .66667rem)}.grid-margin-x>.small-11{width:calc(91.66667% - .66667rem)}.grid-margin-x>.small-12{width:calc(100% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}.grid-margin-x>.large-auto,.grid-margin-x>.large-shrink{width:auto}.grid-margin-x>.large-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.large-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.large-3{width:calc(25% - 1.4rem)}.grid-margin-x>.large-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.large-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.large-6{width:calc(50% - 1.4rem)}.grid-margin-x>.large-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.large-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.large-9{width:calc(75% - 1.4rem)}.grid-margin-x>.large-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.large-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.large-12{width:calc(100% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}.grid-margin-x>.large-auto,.grid-margin-x>.large-shrink{width:auto}.grid-margin-x>.large-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.large-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.large-3{width:calc(25% - 1.4rem)}.grid-margin-x>.large-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.large-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.large-6{width:calc(50% - 1.4rem)}.grid-margin-x>.large-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.large-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.large-9{width:calc(75% - 1.4rem)}.grid-margin-x>.large-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.large-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.large-12{width:calc(100% - 1.4rem)}.grid-margin-x>.xlarge-auto,.grid-margin-x>.xlarge-shrink{width:auto}.grid-margin-x>.xlarge-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.xlarge-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.xlarge-3{width:calc(25% - 1.4rem)}.grid-margin-x>.xlarge-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.xlarge-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.xlarge-6{width:calc(50% - 1.4rem)}.grid-margin-x>.xlarge-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.xlarge-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.xlarge-9{width:calc(75% - 1.4rem)}.grid-margin-x>.xlarge-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.xlarge-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.xlarge-12{width:calc(100% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-x>.auto,.grid-margin-x>.shrink{width:auto}.grid-margin-x>.small-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.small-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.small-3{width:calc(25% - 1.4rem)}.grid-margin-x>.small-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.small-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.small-6{width:calc(50% - 1.4rem)}.grid-margin-x>.small-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.small-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.small-9{width:calc(75% - 1.4rem)}.grid-margin-x>.small-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.small-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.small-12{width:calc(100% - 1.4rem)}.grid-margin-x>.medium-auto,.grid-margin-x>.medium-shrink{width:auto}.grid-margin-x>.medium-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.medium-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.medium-3{width:calc(25% - 1.4rem)}.grid-margin-x>.medium-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.medium-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.medium-6{width:calc(50% - 1.4rem)}.grid-margin-x>.medium-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.medium-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.medium-9{width:calc(75% - 1.4rem)}.grid-margin-x>.medium-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.medium-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.medium-12{width:calc(100% - 1.4rem)}.grid-margin-x>.large-auto,.grid-margin-x>.large-shrink{width:auto}.grid-margin-x>.large-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.large-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.large-3{width:calc(25% - 1.4rem)}.grid-margin-x>.large-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.large-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.large-6{width:calc(50% - 1.4rem)}.grid-margin-x>.large-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.large-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.large-9{width:calc(75% - 1.4rem)}.grid-margin-x>.large-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.large-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.large-12{width:calc(100% - 1.4rem)}.grid-margin-x>.xlarge-auto,.grid-margin-x>.xlarge-shrink{width:auto}.grid-margin-x>.xlarge-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.xlarge-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.xlarge-3{width:calc(25% - 1.4rem)}.grid-margin-x>.xlarge-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.xlarge-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.xlarge-6{width:calc(50% - 1.4rem)}.grid-margin-x>.xlarge-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.xlarge-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.xlarge-9{width:calc(75% - 1.4rem)}.grid-margin-x>.xlarge-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.xlarge-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.xlarge-12{width:calc(100% - 1.4rem)}.grid-margin-x>.xxlarge-auto,.grid-margin-x>.xxlarge-shrink{width:auto}.grid-margin-x>.xxlarge-1{width:calc(8.33333% - 1.4rem)}.grid-margin-x>.xxlarge-2{width:calc(16.66667% - 1.4rem)}.grid-margin-x>.xxlarge-3{width:calc(25% - 1.4rem)}.grid-margin-x>.xxlarge-4{width:calc(33.33333% - 1.4rem)}.grid-margin-x>.xxlarge-5{width:calc(41.66667% - 1.4rem)}.grid-margin-x>.xxlarge-6{width:calc(50% - 1.4rem)}.grid-margin-x>.xxlarge-7{width:calc(58.33333% - 1.4rem)}.grid-margin-x>.xxlarge-8{width:calc(66.66667% - 1.4rem)}.grid-margin-x>.xxlarge-9{width:calc(75% - 1.4rem)}.grid-margin-x>.xxlarge-10{width:calc(83.33333% - 1.4rem)}.grid-margin-x>.xxlarge-11{width:calc(91.66667% - 1.4rem)}.grid-margin-x>.xxlarge-12{width:calc(100% - 1.4rem)}}.grid-padding-x .grid-padding-x{margin-left:-.3333333333rem;margin-right:-.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media print,screen and (min-width:64em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:75em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:90em){.grid-padding-x .grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}.grid-container:not(.full)>.grid-padding-x{margin-left:-.3333333333rem;margin-right:-.3333333333rem}@media print,screen and (min-width:40em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media print,screen and (min-width:64em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:75em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}@media screen and (min-width:90em){.grid-container:not(.full)>.grid-padding-x{margin-left:-.7rem;margin-right:-.7rem}}.grid-padding-x>.cell{padding-left:.3333333333rem;padding-right:.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}@media print,screen and (min-width:64em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:75em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}@media screen and (min-width:90em){.grid-padding-x>.cell{padding-left:.7rem;padding-right:.7rem}}.small-up-1>.cell{width:100%}.small-up-2>.cell{width:50%}.small-up-3>.cell{width:33.3333333333%}.small-up-4>.cell{width:25%}.small-up-5>.cell{width:20%}.small-up-6>.cell{width:16.6666666667%}.small-up-7>.cell{width:14.2857142857%}.small-up-8>.cell{width:12.5%}@media print,screen and (min-width:40em){.medium-up-1>.cell{width:100%}.medium-up-2>.cell{width:50%}.medium-up-3>.cell{width:33.3333333333%}.medium-up-4>.cell{width:25%}.medium-up-5>.cell{width:20%}.medium-up-6>.cell{width:16.6666666667%}.medium-up-7>.cell{width:14.2857142857%}.medium-up-8>.cell{width:12.5%}}@media print,screen and (min-width:64em){.large-up-1>.cell{width:100%}.large-up-2>.cell{width:50%}.large-up-3>.cell{width:33.3333333333%}.large-up-4>.cell{width:25%}.large-up-5>.cell{width:20%}.large-up-6>.cell{width:16.6666666667%}.large-up-7>.cell{width:14.2857142857%}.large-up-8>.cell{width:12.5%}}@media screen and (min-width:75em){.xlarge-up-1>.cell{width:100%}.xlarge-up-2>.cell{width:50%}.xlarge-up-3>.cell{width:33.3333333333%}.xlarge-up-4>.cell{width:25%}.xlarge-up-5>.cell{width:20%}.xlarge-up-6>.cell{width:16.6666666667%}.xlarge-up-7>.cell{width:14.2857142857%}.xlarge-up-8>.cell{width:12.5%}}@media screen and (min-width:90em){.xxlarge-up-1>.cell{width:100%}.xxlarge-up-2>.cell{width:50%}.xxlarge-up-3>.cell{width:33.3333333333%}.xxlarge-up-4>.cell{width:25%}.xxlarge-up-5>.cell{width:20%}.xxlarge-up-6>.cell{width:16.6666666667%}.xxlarge-up-7>.cell{width:14.2857142857%}.xxlarge-up-8>.cell{width:12.5%}}.grid-margin-x.small-up-1>.cell{width:calc(100% - .66667rem)}.grid-margin-x.small-up-2>.cell{width:calc(50% - .66667rem)}.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - .66667rem)}.grid-margin-x.small-up-4>.cell{width:calc(25% - .66667rem)}.grid-margin-x.small-up-5>.cell{width:calc(20% - .66667rem)}.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - .66667rem)}.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - .66667rem)}.grid-margin-x.small-up-8>.cell{width:calc(12.5% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-x.small-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.small-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.small-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.small-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.small-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.medium-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.medium-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.medium-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.medium-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.medium-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.medium-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.medium-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.medium-up-8>.cell{width:calc(12.5% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-x.medium-up-1>.cell,.grid-margin-x.small-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.medium-up-2>.cell,.grid-margin-x.small-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.medium-up-3>.cell,.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.medium-up-4>.cell,.grid-margin-x.small-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.medium-up-5>.cell,.grid-margin-x.small-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.medium-up-6>.cell,.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.medium-up-7>.cell,.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.medium-up-8>.cell,.grid-margin-x.small-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.large-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.large-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.large-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.large-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.large-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.large-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.large-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.large-up-8>.cell{width:calc(12.5% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-x.large-up-1>.cell,.grid-margin-x.medium-up-1>.cell,.grid-margin-x.small-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.large-up-2>.cell,.grid-margin-x.medium-up-2>.cell,.grid-margin-x.small-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.large-up-3>.cell,.grid-margin-x.medium-up-3>.cell,.grid-margin-x.small-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.large-up-4>.cell,.grid-margin-x.medium-up-4>.cell,.grid-margin-x.small-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.large-up-5>.cell,.grid-margin-x.medium-up-5>.cell,.grid-margin-x.small-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.large-up-6>.cell,.grid-margin-x.medium-up-6>.cell,.grid-margin-x.small-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.large-up-7>.cell,.grid-margin-x.medium-up-7>.cell,.grid-margin-x.small-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.large-up-8>.cell,.grid-margin-x.medium-up-8>.cell,.grid-margin-x.small-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.xlarge-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.xlarge-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.xlarge-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.xlarge-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.xlarge-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.xlarge-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.xlarge-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.xlarge-up-8>.cell{width:calc(12.5% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-x.large-up-1>.cell,.grid-margin-x.medium-up-1>.cell,.grid-margin-x.small-up-1>.cell,.grid-margin-x.xlarge-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.large-up-2>.cell,.grid-margin-x.medium-up-2>.cell,.grid-margin-x.small-up-2>.cell,.grid-margin-x.xlarge-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.large-up-3>.cell,.grid-margin-x.medium-up-3>.cell,.grid-margin-x.small-up-3>.cell,.grid-margin-x.xlarge-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.large-up-4>.cell,.grid-margin-x.medium-up-4>.cell,.grid-margin-x.small-up-4>.cell,.grid-margin-x.xlarge-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.large-up-5>.cell,.grid-margin-x.medium-up-5>.cell,.grid-margin-x.small-up-5>.cell,.grid-margin-x.xlarge-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.large-up-6>.cell,.grid-margin-x.medium-up-6>.cell,.grid-margin-x.small-up-6>.cell,.grid-margin-x.xlarge-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.large-up-7>.cell,.grid-margin-x.medium-up-7>.cell,.grid-margin-x.small-up-7>.cell,.grid-margin-x.xlarge-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.large-up-8>.cell,.grid-margin-x.medium-up-8>.cell,.grid-margin-x.small-up-8>.cell,.grid-margin-x.xlarge-up-8>.cell{width:calc(12.5% - 1.4rem)}.grid-margin-x.xxlarge-up-1>.cell{width:calc(100% - 1.4rem)}.grid-margin-x.xxlarge-up-2>.cell{width:calc(50% - 1.4rem)}.grid-margin-x.xxlarge-up-3>.cell{width:calc(33.33333% - 1.4rem)}.grid-margin-x.xxlarge-up-4>.cell{width:calc(25% - 1.4rem)}.grid-margin-x.xxlarge-up-5>.cell{width:calc(20% - 1.4rem)}.grid-margin-x.xxlarge-up-6>.cell{width:calc(16.66667% - 1.4rem)}.grid-margin-x.xxlarge-up-7>.cell{width:calc(14.28571% - 1.4rem)}.grid-margin-x.xxlarge-up-8>.cell{width:calc(12.5% - 1.4rem)}}.small-margin-collapse,.small-margin-collapse>.cell{margin-left:0;margin-right:0}.small-margin-collapse>.small-1{width:8.3333333333%}.small-margin-collapse>.small-2{width:16.6666666667%}.small-margin-collapse>.small-3{width:25%}.small-margin-collapse>.small-4{width:33.3333333333%}.small-margin-collapse>.small-5{width:41.6666666667%}.small-margin-collapse>.small-6{width:50%}.small-margin-collapse>.small-7{width:58.3333333333%}.small-margin-collapse>.small-8{width:66.6666666667%}.small-margin-collapse>.small-9{width:75%}.small-margin-collapse>.small-10{width:83.3333333333%}.small-margin-collapse>.small-11{width:91.6666666667%}.small-margin-collapse>.small-12{width:100%}@media print,screen and (min-width:40em){.small-margin-collapse>.medium-1{width:8.3333333333%}.small-margin-collapse>.medium-2{width:16.6666666667%}.small-margin-collapse>.medium-3{width:25%}.small-margin-collapse>.medium-4{width:33.3333333333%}.small-margin-collapse>.medium-5{width:41.6666666667%}.small-margin-collapse>.medium-6{width:50%}.small-margin-collapse>.medium-7{width:58.3333333333%}.small-margin-collapse>.medium-8{width:66.6666666667%}.small-margin-collapse>.medium-9{width:75%}.small-margin-collapse>.medium-10{width:83.3333333333%}.small-margin-collapse>.medium-11{width:91.6666666667%}.small-margin-collapse>.medium-12{width:100%}}@media print,screen and (min-width:64em){.small-margin-collapse>.large-1{width:8.3333333333%}.small-margin-collapse>.large-2{width:16.6666666667%}.small-margin-collapse>.large-3{width:25%}.small-margin-collapse>.large-4{width:33.3333333333%}.small-margin-collapse>.large-5{width:41.6666666667%}.small-margin-collapse>.large-6{width:50%}.small-margin-collapse>.large-7{width:58.3333333333%}.small-margin-collapse>.large-8{width:66.6666666667%}.small-margin-collapse>.large-9{width:75%}.small-margin-collapse>.large-10{width:83.3333333333%}.small-margin-collapse>.large-11{width:91.6666666667%}.small-margin-collapse>.large-12{width:100%}}@media screen and (min-width:75em){.small-margin-collapse>.xlarge-1{width:8.3333333333%}.small-margin-collapse>.xlarge-2{width:16.6666666667%}.small-margin-collapse>.xlarge-3{width:25%}.small-margin-collapse>.xlarge-4{width:33.3333333333%}.small-margin-collapse>.xlarge-5{width:41.6666666667%}.small-margin-collapse>.xlarge-6{width:50%}.small-margin-collapse>.xlarge-7{width:58.3333333333%}.small-margin-collapse>.xlarge-8{width:66.6666666667%}.small-margin-collapse>.xlarge-9{width:75%}.small-margin-collapse>.xlarge-10{width:83.3333333333%}.small-margin-collapse>.xlarge-11{width:91.6666666667%}.small-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.small-margin-collapse>.xxlarge-1{width:8.3333333333%}.small-margin-collapse>.xxlarge-2{width:16.6666666667%}.small-margin-collapse>.xxlarge-3{width:25%}.small-margin-collapse>.xxlarge-4{width:33.3333333333%}.small-margin-collapse>.xxlarge-5{width:41.6666666667%}.small-margin-collapse>.xxlarge-6{width:50%}.small-margin-collapse>.xxlarge-7{width:58.3333333333%}.small-margin-collapse>.xxlarge-8{width:66.6666666667%}.small-margin-collapse>.xxlarge-9{width:75%}.small-margin-collapse>.xxlarge-10{width:83.3333333333%}.small-margin-collapse>.xxlarge-11{width:91.6666666667%}.small-margin-collapse>.xxlarge-12{width:100%}}.small-padding-collapse{margin-left:0;margin-right:0}.small-padding-collapse>.cell{padding-left:0;padding-right:0}@media print,screen and (min-width:40em){.medium-margin-collapse,.medium-margin-collapse>.cell{margin-left:0;margin-right:0}.medium-margin-collapse>.small-1{width:8.3333333333%}.medium-margin-collapse>.small-2{width:16.6666666667%}.medium-margin-collapse>.small-3{width:25%}.medium-margin-collapse>.small-4{width:33.3333333333%}.medium-margin-collapse>.small-5{width:41.6666666667%}.medium-margin-collapse>.small-6{width:50%}.medium-margin-collapse>.small-7{width:58.3333333333%}.medium-margin-collapse>.small-8{width:66.6666666667%}.medium-margin-collapse>.small-9{width:75%}.medium-margin-collapse>.small-10{width:83.3333333333%}.medium-margin-collapse>.small-11{width:91.6666666667%}.medium-margin-collapse>.small-12{width:100%}.medium-margin-collapse>.medium-1{width:8.3333333333%}.medium-margin-collapse>.medium-2{width:16.6666666667%}.medium-margin-collapse>.medium-3{width:25%}.medium-margin-collapse>.medium-4{width:33.3333333333%}.medium-margin-collapse>.medium-5{width:41.6666666667%}.medium-margin-collapse>.medium-6{width:50%}.medium-margin-collapse>.medium-7{width:58.3333333333%}.medium-margin-collapse>.medium-8{width:66.6666666667%}.medium-margin-collapse>.medium-9{width:75%}.medium-margin-collapse>.medium-10{width:83.3333333333%}.medium-margin-collapse>.medium-11{width:91.6666666667%}.medium-margin-collapse>.medium-12{width:100%}}@media print,screen and (min-width:64em){.medium-margin-collapse>.large-1{width:8.3333333333%}.medium-margin-collapse>.large-2{width:16.6666666667%}.medium-margin-collapse>.large-3{width:25%}.medium-margin-collapse>.large-4{width:33.3333333333%}.medium-margin-collapse>.large-5{width:41.6666666667%}.medium-margin-collapse>.large-6{width:50%}.medium-margin-collapse>.large-7{width:58.3333333333%}.medium-margin-collapse>.large-8{width:66.6666666667%}.medium-margin-collapse>.large-9{width:75%}.medium-margin-collapse>.large-10{width:83.3333333333%}.medium-margin-collapse>.large-11{width:91.6666666667%}.medium-margin-collapse>.large-12{width:100%}}@media screen and (min-width:75em){.medium-margin-collapse>.xlarge-1{width:8.3333333333%}.medium-margin-collapse>.xlarge-2{width:16.6666666667%}.medium-margin-collapse>.xlarge-3{width:25%}.medium-margin-collapse>.xlarge-4{width:33.3333333333%}.medium-margin-collapse>.xlarge-5{width:41.6666666667%}.medium-margin-collapse>.xlarge-6{width:50%}.medium-margin-collapse>.xlarge-7{width:58.3333333333%}.medium-margin-collapse>.xlarge-8{width:66.6666666667%}.medium-margin-collapse>.xlarge-9{width:75%}.medium-margin-collapse>.xlarge-10{width:83.3333333333%}.medium-margin-collapse>.xlarge-11{width:91.6666666667%}.medium-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.medium-margin-collapse>.xxlarge-1{width:8.3333333333%}.medium-margin-collapse>.xxlarge-2{width:16.6666666667%}.medium-margin-collapse>.xxlarge-3{width:25%}.medium-margin-collapse>.xxlarge-4{width:33.3333333333%}.medium-margin-collapse>.xxlarge-5{width:41.6666666667%}.medium-margin-collapse>.xxlarge-6{width:50%}.medium-margin-collapse>.xxlarge-7{width:58.3333333333%}.medium-margin-collapse>.xxlarge-8{width:66.6666666667%}.medium-margin-collapse>.xxlarge-9{width:75%}.medium-margin-collapse>.xxlarge-10{width:83.3333333333%}.medium-margin-collapse>.xxlarge-11{width:91.6666666667%}.medium-margin-collapse>.xxlarge-12{width:100%}}@media print,screen and (min-width:40em){.medium-padding-collapse{margin-left:0;margin-right:0}.medium-padding-collapse>.cell{padding-left:0;padding-right:0}}@media print,screen and (min-width:64em){.large-margin-collapse,.large-margin-collapse>.cell{margin-left:0;margin-right:0}.large-margin-collapse>.small-1{width:8.3333333333%}.large-margin-collapse>.small-2{width:16.6666666667%}.large-margin-collapse>.small-3{width:25%}.large-margin-collapse>.small-4{width:33.3333333333%}.large-margin-collapse>.small-5{width:41.6666666667%}.large-margin-collapse>.small-6{width:50%}.large-margin-collapse>.small-7{width:58.3333333333%}.large-margin-collapse>.small-8{width:66.6666666667%}.large-margin-collapse>.small-9{width:75%}.large-margin-collapse>.small-10{width:83.3333333333%}.large-margin-collapse>.small-11{width:91.6666666667%}.large-margin-collapse>.small-12{width:100%}.large-margin-collapse>.medium-1{width:8.3333333333%}.large-margin-collapse>.medium-2{width:16.6666666667%}.large-margin-collapse>.medium-3{width:25%}.large-margin-collapse>.medium-4{width:33.3333333333%}.large-margin-collapse>.medium-5{width:41.6666666667%}.large-margin-collapse>.medium-6{width:50%}.large-margin-collapse>.medium-7{width:58.3333333333%}.large-margin-collapse>.medium-8{width:66.6666666667%}.large-margin-collapse>.medium-9{width:75%}.large-margin-collapse>.medium-10{width:83.3333333333%}.large-margin-collapse>.medium-11{width:91.6666666667%}.large-margin-collapse>.medium-12{width:100%}.large-margin-collapse>.large-1{width:8.3333333333%}.large-margin-collapse>.large-2{width:16.6666666667%}.large-margin-collapse>.large-3{width:25%}.large-margin-collapse>.large-4{width:33.3333333333%}.large-margin-collapse>.large-5{width:41.6666666667%}.large-margin-collapse>.large-6{width:50%}.large-margin-collapse>.large-7{width:58.3333333333%}.large-margin-collapse>.large-8{width:66.6666666667%}.large-margin-collapse>.large-9{width:75%}.large-margin-collapse>.large-10{width:83.3333333333%}.large-margin-collapse>.large-11{width:91.6666666667%}.large-margin-collapse>.large-12{width:100%}}@media screen and (min-width:75em){.large-margin-collapse>.xlarge-1{width:8.3333333333%}.large-margin-collapse>.xlarge-2{width:16.6666666667%}.large-margin-collapse>.xlarge-3{width:25%}.large-margin-collapse>.xlarge-4{width:33.3333333333%}.large-margin-collapse>.xlarge-5{width:41.6666666667%}.large-margin-collapse>.xlarge-6{width:50%}.large-margin-collapse>.xlarge-7{width:58.3333333333%}.large-margin-collapse>.xlarge-8{width:66.6666666667%}.large-margin-collapse>.xlarge-9{width:75%}.large-margin-collapse>.xlarge-10{width:83.3333333333%}.large-margin-collapse>.xlarge-11{width:91.6666666667%}.large-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.large-margin-collapse>.xxlarge-1{width:8.3333333333%}.large-margin-collapse>.xxlarge-2{width:16.6666666667%}.large-margin-collapse>.xxlarge-3{width:25%}.large-margin-collapse>.xxlarge-4{width:33.3333333333%}.large-margin-collapse>.xxlarge-5{width:41.6666666667%}.large-margin-collapse>.xxlarge-6{width:50%}.large-margin-collapse>.xxlarge-7{width:58.3333333333%}.large-margin-collapse>.xxlarge-8{width:66.6666666667%}.large-margin-collapse>.xxlarge-9{width:75%}.large-margin-collapse>.xxlarge-10{width:83.3333333333%}.large-margin-collapse>.xxlarge-11{width:91.6666666667%}.large-margin-collapse>.xxlarge-12{width:100%}}@media print,screen and (min-width:64em){.large-padding-collapse{margin-left:0;margin-right:0}.large-padding-collapse>.cell{padding-left:0;padding-right:0}}@media screen and (min-width:75em){.xlarge-margin-collapse,.xlarge-margin-collapse>.cell{margin-left:0;margin-right:0}.xlarge-margin-collapse>.small-1{width:8.3333333333%}.xlarge-margin-collapse>.small-2{width:16.6666666667%}.xlarge-margin-collapse>.small-3{width:25%}.xlarge-margin-collapse>.small-4{width:33.3333333333%}.xlarge-margin-collapse>.small-5{width:41.6666666667%}.xlarge-margin-collapse>.small-6{width:50%}.xlarge-margin-collapse>.small-7{width:58.3333333333%}.xlarge-margin-collapse>.small-8{width:66.6666666667%}.xlarge-margin-collapse>.small-9{width:75%}.xlarge-margin-collapse>.small-10{width:83.3333333333%}.xlarge-margin-collapse>.small-11{width:91.6666666667%}.xlarge-margin-collapse>.small-12{width:100%}.xlarge-margin-collapse>.medium-1{width:8.3333333333%}.xlarge-margin-collapse>.medium-2{width:16.6666666667%}.xlarge-margin-collapse>.medium-3{width:25%}.xlarge-margin-collapse>.medium-4{width:33.3333333333%}.xlarge-margin-collapse>.medium-5{width:41.6666666667%}.xlarge-margin-collapse>.medium-6{width:50%}.xlarge-margin-collapse>.medium-7{width:58.3333333333%}.xlarge-margin-collapse>.medium-8{width:66.6666666667%}.xlarge-margin-collapse>.medium-9{width:75%}.xlarge-margin-collapse>.medium-10{width:83.3333333333%}.xlarge-margin-collapse>.medium-11{width:91.6666666667%}.xlarge-margin-collapse>.medium-12{width:100%}.xlarge-margin-collapse>.large-1{width:8.3333333333%}.xlarge-margin-collapse>.large-2{width:16.6666666667%}.xlarge-margin-collapse>.large-3{width:25%}.xlarge-margin-collapse>.large-4{width:33.3333333333%}.xlarge-margin-collapse>.large-5{width:41.6666666667%}.xlarge-margin-collapse>.large-6{width:50%}.xlarge-margin-collapse>.large-7{width:58.3333333333%}.xlarge-margin-collapse>.large-8{width:66.6666666667%}.xlarge-margin-collapse>.large-9{width:75%}.xlarge-margin-collapse>.large-10{width:83.3333333333%}.xlarge-margin-collapse>.large-11{width:91.6666666667%}.xlarge-margin-collapse>.large-12{width:100%}.xlarge-margin-collapse>.xlarge-1{width:8.3333333333%}.xlarge-margin-collapse>.xlarge-2{width:16.6666666667%}.xlarge-margin-collapse>.xlarge-3{width:25%}.xlarge-margin-collapse>.xlarge-4{width:33.3333333333%}.xlarge-margin-collapse>.xlarge-5{width:41.6666666667%}.xlarge-margin-collapse>.xlarge-6{width:50%}.xlarge-margin-collapse>.xlarge-7{width:58.3333333333%}.xlarge-margin-collapse>.xlarge-8{width:66.6666666667%}.xlarge-margin-collapse>.xlarge-9{width:75%}.xlarge-margin-collapse>.xlarge-10{width:83.3333333333%}.xlarge-margin-collapse>.xlarge-11{width:91.6666666667%}.xlarge-margin-collapse>.xlarge-12{width:100%}}@media screen and (min-width:90em){.xlarge-margin-collapse>.xxlarge-1{width:8.3333333333%}.xlarge-margin-collapse>.xxlarge-2{width:16.6666666667%}.xlarge-margin-collapse>.xxlarge-3{width:25%}.xlarge-margin-collapse>.xxlarge-4{width:33.3333333333%}.xlarge-margin-collapse>.xxlarge-5{width:41.6666666667%}.xlarge-margin-collapse>.xxlarge-6{width:50%}.xlarge-margin-collapse>.xxlarge-7{width:58.3333333333%}.xlarge-margin-collapse>.xxlarge-8{width:66.6666666667%}.xlarge-margin-collapse>.xxlarge-9{width:75%}.xlarge-margin-collapse>.xxlarge-10{width:83.3333333333%}.xlarge-margin-collapse>.xxlarge-11{width:91.6666666667%}.xlarge-margin-collapse>.xxlarge-12{width:100%}}@media screen and (min-width:75em){.xlarge-padding-collapse{margin-left:0;margin-right:0}.xlarge-padding-collapse>.cell{padding-left:0;padding-right:0}}@media screen and (min-width:90em){.xxlarge-margin-collapse,.xxlarge-margin-collapse>.cell{margin-left:0;margin-right:0}.xxlarge-margin-collapse>.small-1{width:8.3333333333%}.xxlarge-margin-collapse>.small-2{width:16.6666666667%}.xxlarge-margin-collapse>.small-3{width:25%}.xxlarge-margin-collapse>.small-4{width:33.3333333333%}.xxlarge-margin-collapse>.small-5{width:41.6666666667%}.xxlarge-margin-collapse>.small-6{width:50%}.xxlarge-margin-collapse>.small-7{width:58.3333333333%}.xxlarge-margin-collapse>.small-8{width:66.6666666667%}.xxlarge-margin-collapse>.small-9{width:75%}.xxlarge-margin-collapse>.small-10{width:83.3333333333%}.xxlarge-margin-collapse>.small-11{width:91.6666666667%}.xxlarge-margin-collapse>.small-12{width:100%}.xxlarge-margin-collapse>.medium-1{width:8.3333333333%}.xxlarge-margin-collapse>.medium-2{width:16.6666666667%}.xxlarge-margin-collapse>.medium-3{width:25%}.xxlarge-margin-collapse>.medium-4{width:33.3333333333%}.xxlarge-margin-collapse>.medium-5{width:41.6666666667%}.xxlarge-margin-collapse>.medium-6{width:50%}.xxlarge-margin-collapse>.medium-7{width:58.3333333333%}.xxlarge-margin-collapse>.medium-8{width:66.6666666667%}.xxlarge-margin-collapse>.medium-9{width:75%}.xxlarge-margin-collapse>.medium-10{width:83.3333333333%}.xxlarge-margin-collapse>.medium-11{width:91.6666666667%}.xxlarge-margin-collapse>.medium-12{width:100%}.xxlarge-margin-collapse>.large-1{width:8.3333333333%}.xxlarge-margin-collapse>.large-2{width:16.6666666667%}.xxlarge-margin-collapse>.large-3{width:25%}.xxlarge-margin-collapse>.large-4{width:33.3333333333%}.xxlarge-margin-collapse>.large-5{width:41.6666666667%}.xxlarge-margin-collapse>.large-6{width:50%}.xxlarge-margin-collapse>.large-7{width:58.3333333333%}.xxlarge-margin-collapse>.large-8{width:66.6666666667%}.xxlarge-margin-collapse>.large-9{width:75%}.xxlarge-margin-collapse>.large-10{width:83.3333333333%}.xxlarge-margin-collapse>.large-11{width:91.6666666667%}.xxlarge-margin-collapse>.large-12{width:100%}.xxlarge-margin-collapse>.xlarge-1{width:8.3333333333%}.xxlarge-margin-collapse>.xlarge-2{width:16.6666666667%}.xxlarge-margin-collapse>.xlarge-3{width:25%}.xxlarge-margin-collapse>.xlarge-4{width:33.3333333333%}.xxlarge-margin-collapse>.xlarge-5{width:41.6666666667%}.xxlarge-margin-collapse>.xlarge-6{width:50%}.xxlarge-margin-collapse>.xlarge-7{width:58.3333333333%}.xxlarge-margin-collapse>.xlarge-8{width:66.6666666667%}.xxlarge-margin-collapse>.xlarge-9{width:75%}.xxlarge-margin-collapse>.xlarge-10{width:83.3333333333%}.xxlarge-margin-collapse>.xlarge-11{width:91.6666666667%}.xxlarge-margin-collapse>.xlarge-12{width:100%}.xxlarge-margin-collapse>.xxlarge-1{width:8.3333333333%}.xxlarge-margin-collapse>.xxlarge-2{width:16.6666666667%}.xxlarge-margin-collapse>.xxlarge-3{width:25%}.xxlarge-margin-collapse>.xxlarge-4{width:33.3333333333%}.xxlarge-margin-collapse>.xxlarge-5{width:41.6666666667%}.xxlarge-margin-collapse>.xxlarge-6{width:50%}.xxlarge-margin-collapse>.xxlarge-7{width:58.3333333333%}.xxlarge-margin-collapse>.xxlarge-8{width:66.6666666667%}.xxlarge-margin-collapse>.xxlarge-9{width:75%}.xxlarge-margin-collapse>.xxlarge-10{width:83.3333333333%}.xxlarge-margin-collapse>.xxlarge-11{width:91.6666666667%}.xxlarge-margin-collapse>.xxlarge-12{width:100%}.xxlarge-padding-collapse{margin-left:0;margin-right:0}.xxlarge-padding-collapse>.cell{padding-left:0;padding-right:0}}.small-offset-0{margin-left:0}.grid-margin-x>.small-offset-0{margin-left:.33333rem}.small-offset-1{margin-left:8.3333333333%}.grid-margin-x>.small-offset-1{margin-left:calc(8.33333% + .33333rem)}.small-offset-2{margin-left:16.6666666667%}.grid-margin-x>.small-offset-2{margin-left:calc(16.66667% + .33333rem)}.small-offset-3{margin-left:25%}.grid-margin-x>.small-offset-3{margin-left:calc(25% + .33333rem)}.small-offset-4{margin-left:33.3333333333%}.grid-margin-x>.small-offset-4{margin-left:calc(33.33333% + .33333rem)}.small-offset-5{margin-left:41.6666666667%}.grid-margin-x>.small-offset-5{margin-left:calc(41.66667% + .33333rem)}.small-offset-6{margin-left:50%}.grid-margin-x>.small-offset-6{margin-left:calc(50% + .33333rem)}.small-offset-7{margin-left:58.3333333333%}.grid-margin-x>.small-offset-7{margin-left:calc(58.33333% + .33333rem)}.small-offset-8{margin-left:66.6666666667%}.grid-margin-x>.small-offset-8{margin-left:calc(66.66667% + .33333rem)}.small-offset-9{margin-left:75%}.grid-margin-x>.small-offset-9{margin-left:calc(75% + .33333rem)}.small-offset-10{margin-left:83.3333333333%}.grid-margin-x>.small-offset-10{margin-left:calc(83.33333% + .33333rem)}.small-offset-11{margin-left:91.6666666667%}.grid-margin-x>.small-offset-11{margin-left:calc(91.66667% + .33333rem)}@media print,screen and (min-width:40em){.medium-offset-0{margin-left:0}.grid-margin-x>.medium-offset-0{margin-left:.7rem}.medium-offset-1{margin-left:8.3333333333%}.grid-margin-x>.medium-offset-1{margin-left:calc(8.33333% + .7rem)}.medium-offset-2{margin-left:16.6666666667%}.grid-margin-x>.medium-offset-2{margin-left:calc(16.66667% + .7rem)}.medium-offset-3{margin-left:25%}.grid-margin-x>.medium-offset-3{margin-left:calc(25% + .7rem)}.medium-offset-4{margin-left:33.3333333333%}.grid-margin-x>.medium-offset-4{margin-left:calc(33.33333% + .7rem)}.medium-offset-5{margin-left:41.6666666667%}.grid-margin-x>.medium-offset-5{margin-left:calc(41.66667% + .7rem)}.medium-offset-6{margin-left:50%}.grid-margin-x>.medium-offset-6{margin-left:calc(50% + .7rem)}.medium-offset-7{margin-left:58.3333333333%}.grid-margin-x>.medium-offset-7{margin-left:calc(58.33333% + .7rem)}.medium-offset-8{margin-left:66.6666666667%}.grid-margin-x>.medium-offset-8{margin-left:calc(66.66667% + .7rem)}.medium-offset-9{margin-left:75%}.grid-margin-x>.medium-offset-9{margin-left:calc(75% + .7rem)}.medium-offset-10{margin-left:83.3333333333%}.grid-margin-x>.medium-offset-10{margin-left:calc(83.33333% + .7rem)}.medium-offset-11{margin-left:91.6666666667%}.grid-margin-x>.medium-offset-11{margin-left:calc(91.66667% + .7rem)}}@media print,screen and (min-width:64em){.large-offset-0{margin-left:0}.grid-margin-x>.large-offset-0{margin-left:.7rem}.large-offset-1{margin-left:8.3333333333%}.grid-margin-x>.large-offset-1{margin-left:calc(8.33333% + .7rem)}.large-offset-2{margin-left:16.6666666667%}.grid-margin-x>.large-offset-2{margin-left:calc(16.66667% + .7rem)}.large-offset-3{margin-left:25%}.grid-margin-x>.large-offset-3{margin-left:calc(25% + .7rem)}.large-offset-4{margin-left:33.3333333333%}.grid-margin-x>.large-offset-4{margin-left:calc(33.33333% + .7rem)}.large-offset-5{margin-left:41.6666666667%}.grid-margin-x>.large-offset-5{margin-left:calc(41.66667% + .7rem)}.large-offset-6{margin-left:50%}.grid-margin-x>.large-offset-6{margin-left:calc(50% + .7rem)}.large-offset-7{margin-left:58.3333333333%}.grid-margin-x>.large-offset-7{margin-left:calc(58.33333% + .7rem)}.large-offset-8{margin-left:66.6666666667%}.grid-margin-x>.large-offset-8{margin-left:calc(66.66667% + .7rem)}.large-offset-9{margin-left:75%}.grid-margin-x>.large-offset-9{margin-left:calc(75% + .7rem)}.large-offset-10{margin-left:83.3333333333%}.grid-margin-x>.large-offset-10{margin-left:calc(83.33333% + .7rem)}.large-offset-11{margin-left:91.6666666667%}.grid-margin-x>.large-offset-11{margin-left:calc(91.66667% + .7rem)}}@media screen and (min-width:75em){.xlarge-offset-0{margin-left:0}.grid-margin-x>.xlarge-offset-0{margin-left:.7rem}.xlarge-offset-1{margin-left:8.3333333333%}.grid-margin-x>.xlarge-offset-1{margin-left:calc(8.33333% + .7rem)}.xlarge-offset-2{margin-left:16.6666666667%}.grid-margin-x>.xlarge-offset-2{margin-left:calc(16.66667% + .7rem)}.xlarge-offset-3{margin-left:25%}.grid-margin-x>.xlarge-offset-3{margin-left:calc(25% + .7rem)}.xlarge-offset-4{margin-left:33.3333333333%}.grid-margin-x>.xlarge-offset-4{margin-left:calc(33.33333% + .7rem)}.xlarge-offset-5{margin-left:41.6666666667%}.grid-margin-x>.xlarge-offset-5{margin-left:calc(41.66667% + .7rem)}.xlarge-offset-6{margin-left:50%}.grid-margin-x>.xlarge-offset-6{margin-left:calc(50% + .7rem)}.xlarge-offset-7{margin-left:58.3333333333%}.grid-margin-x>.xlarge-offset-7{margin-left:calc(58.33333% + .7rem)}.xlarge-offset-8{margin-left:66.6666666667%}.grid-margin-x>.xlarge-offset-8{margin-left:calc(66.66667% + .7rem)}.xlarge-offset-9{margin-left:75%}.grid-margin-x>.xlarge-offset-9{margin-left:calc(75% + .7rem)}.xlarge-offset-10{margin-left:83.3333333333%}.grid-margin-x>.xlarge-offset-10{margin-left:calc(83.33333% + .7rem)}.xlarge-offset-11{margin-left:91.6666666667%}.grid-margin-x>.xlarge-offset-11{margin-left:calc(91.66667% + .7rem)}}@media screen and (min-width:90em){.xxlarge-offset-0{margin-left:0}.grid-margin-x>.xxlarge-offset-0{margin-left:.7rem}.xxlarge-offset-1{margin-left:8.3333333333%}.grid-margin-x>.xxlarge-offset-1{margin-left:calc(8.33333% + .7rem)}.xxlarge-offset-2{margin-left:16.6666666667%}.grid-margin-x>.xxlarge-offset-2{margin-left:calc(16.66667% + .7rem)}.xxlarge-offset-3{margin-left:25%}.grid-margin-x>.xxlarge-offset-3{margin-left:calc(25% + .7rem)}.xxlarge-offset-4{margin-left:33.3333333333%}.grid-margin-x>.xxlarge-offset-4{margin-left:calc(33.33333% + .7rem)}.xxlarge-offset-5{margin-left:41.6666666667%}.grid-margin-x>.xxlarge-offset-5{margin-left:calc(41.66667% + .7rem)}.xxlarge-offset-6{margin-left:50%}.grid-margin-x>.xxlarge-offset-6{margin-left:calc(50% + .7rem)}.xxlarge-offset-7{margin-left:58.3333333333%}.grid-margin-x>.xxlarge-offset-7{margin-left:calc(58.33333% + .7rem)}.xxlarge-offset-8{margin-left:66.6666666667%}.grid-margin-x>.xxlarge-offset-8{margin-left:calc(66.66667% + .7rem)}.xxlarge-offset-9{margin-left:75%}.grid-margin-x>.xxlarge-offset-9{margin-left:calc(75% + .7rem)}.xxlarge-offset-10{margin-left:83.3333333333%}.grid-margin-x>.xxlarge-offset-10{margin-left:calc(83.33333% + .7rem)}.xxlarge-offset-11{margin-left:91.6666666667%}.grid-margin-x>.xxlarge-offset-11{margin-left:calc(91.66667% + .7rem)}}.grid-y{display:flex;flex-flow:column nowrap}.grid-y>.cell{height:auto;max-height:none}.grid-y>.auto,.grid-y>.shrink{height:auto}.grid-y>.small-1,.grid-y>.small-10,.grid-y>.small-11,.grid-y>.small-12,.grid-y>.small-2,.grid-y>.small-3,.grid-y>.small-4,.grid-y>.small-5,.grid-y>.small-6,.grid-y>.small-7,.grid-y>.small-8,.grid-y>.small-9,.grid-y>.small-full,.grid-y>.small-shrink{flex-basis:auto}@media print,screen and (min-width:40em){.grid-y>.medium-1,.grid-y>.medium-10,.grid-y>.medium-11,.grid-y>.medium-12,.grid-y>.medium-2,.grid-y>.medium-3,.grid-y>.medium-4,.grid-y>.medium-5,.grid-y>.medium-6,.grid-y>.medium-7,.grid-y>.medium-8,.grid-y>.medium-9,.grid-y>.medium-full,.grid-y>.medium-shrink{flex-basis:auto}}@media print,screen and (min-width:64em){.grid-y>.large-1,.grid-y>.large-10,.grid-y>.large-11,.grid-y>.large-12,.grid-y>.large-2,.grid-y>.large-3,.grid-y>.large-4,.grid-y>.large-5,.grid-y>.large-6,.grid-y>.large-7,.grid-y>.large-8,.grid-y>.large-9,.grid-y>.large-full,.grid-y>.large-shrink{flex-basis:auto}}@media screen and (min-width:75em){.grid-y>.xlarge-1,.grid-y>.xlarge-10,.grid-y>.xlarge-11,.grid-y>.xlarge-12,.grid-y>.xlarge-2,.grid-y>.xlarge-3,.grid-y>.xlarge-4,.grid-y>.xlarge-5,.grid-y>.xlarge-6,.grid-y>.xlarge-7,.grid-y>.xlarge-8,.grid-y>.xlarge-9,.grid-y>.xlarge-full,.grid-y>.xlarge-shrink{flex-basis:auto}}@media screen and (min-width:90em){.grid-y>.xxlarge-1,.grid-y>.xxlarge-10,.grid-y>.xxlarge-11,.grid-y>.xxlarge-12,.grid-y>.xxlarge-2,.grid-y>.xxlarge-3,.grid-y>.xxlarge-4,.grid-y>.xxlarge-5,.grid-y>.xxlarge-6,.grid-y>.xxlarge-7,.grid-y>.xxlarge-8,.grid-y>.xxlarge-9,.grid-y>.xxlarge-full,.grid-y>.xxlarge-shrink{flex-basis:auto}}.grid-y>.small-1,.grid-y>.small-10,.grid-y>.small-11,.grid-y>.small-12,.grid-y>.small-2,.grid-y>.small-3,.grid-y>.small-4,.grid-y>.small-5,.grid-y>.small-6,.grid-y>.small-7,.grid-y>.small-8,.grid-y>.small-9{flex:0 0 auto}.grid-y>.small-1{height:8.3333333333%}.grid-y>.small-2{height:16.6666666667%}.grid-y>.small-3{height:25%}.grid-y>.small-4{height:33.3333333333%}.grid-y>.small-5{height:41.6666666667%}.grid-y>.small-6{height:50%}.grid-y>.small-7{height:58.3333333333%}.grid-y>.small-8{height:66.6666666667%}.grid-y>.small-9{height:75%}.grid-y>.small-10{height:83.3333333333%}.grid-y>.small-11{height:91.6666666667%}.grid-y>.small-12{height:100%}@media print,screen and (min-width:40em){.grid-y>.medium-auto{flex:1 1 0;height:auto}.grid-y>.medium-1,.grid-y>.medium-10,.grid-y>.medium-11,.grid-y>.medium-12,.grid-y>.medium-2,.grid-y>.medium-3,.grid-y>.medium-4,.grid-y>.medium-5,.grid-y>.medium-6,.grid-y>.medium-7,.grid-y>.medium-8,.grid-y>.medium-9,.grid-y>.medium-shrink{flex:0 0 auto}.grid-y>.medium-shrink{height:auto}.grid-y>.medium-1{height:8.3333333333%}.grid-y>.medium-2{height:16.6666666667%}.grid-y>.medium-3{height:25%}.grid-y>.medium-4{height:33.3333333333%}.grid-y>.medium-5{height:41.6666666667%}.grid-y>.medium-6{height:50%}.grid-y>.medium-7{height:58.3333333333%}.grid-y>.medium-8{height:66.6666666667%}.grid-y>.medium-9{height:75%}.grid-y>.medium-10{height:83.3333333333%}.grid-y>.medium-11{height:91.6666666667%}.grid-y>.medium-12{height:100%}}@media print,screen and (min-width:64em){.grid-y>.large-auto{flex:1 1 0;height:auto}.grid-y>.large-1,.grid-y>.large-10,.grid-y>.large-11,.grid-y>.large-12,.grid-y>.large-2,.grid-y>.large-3,.grid-y>.large-4,.grid-y>.large-5,.grid-y>.large-6,.grid-y>.large-7,.grid-y>.large-8,.grid-y>.large-9,.grid-y>.large-shrink{flex:0 0 auto}.grid-y>.large-shrink{height:auto}.grid-y>.large-1{height:8.3333333333%}.grid-y>.large-2{height:16.6666666667%}.grid-y>.large-3{height:25%}.grid-y>.large-4{height:33.3333333333%}.grid-y>.large-5{height:41.6666666667%}.grid-y>.large-6{height:50%}.grid-y>.large-7{height:58.3333333333%}.grid-y>.large-8{height:66.6666666667%}.grid-y>.large-9{height:75%}.grid-y>.large-10{height:83.3333333333%}.grid-y>.large-11{height:91.6666666667%}.grid-y>.large-12{height:100%}}@media screen and (min-width:75em){.grid-y>.xlarge-auto{flex:1 1 0;height:auto}.grid-y>.xlarge-1,.grid-y>.xlarge-10,.grid-y>.xlarge-11,.grid-y>.xlarge-12,.grid-y>.xlarge-2,.grid-y>.xlarge-3,.grid-y>.xlarge-4,.grid-y>.xlarge-5,.grid-y>.xlarge-6,.grid-y>.xlarge-7,.grid-y>.xlarge-8,.grid-y>.xlarge-9,.grid-y>.xlarge-shrink{flex:0 0 auto}.grid-y>.xlarge-shrink{height:auto}.grid-y>.xlarge-1{height:8.3333333333%}.grid-y>.xlarge-2{height:16.6666666667%}.grid-y>.xlarge-3{height:25%}.grid-y>.xlarge-4{height:33.3333333333%}.grid-y>.xlarge-5{height:41.6666666667%}.grid-y>.xlarge-6{height:50%}.grid-y>.xlarge-7{height:58.3333333333%}.grid-y>.xlarge-8{height:66.6666666667%}.grid-y>.xlarge-9{height:75%}.grid-y>.xlarge-10{height:83.3333333333%}.grid-y>.xlarge-11{height:91.6666666667%}.grid-y>.xlarge-12{height:100%}}@media screen and (min-width:90em){.grid-y>.xxlarge-auto{flex:1 1 0;height:auto}.grid-y>.xxlarge-1,.grid-y>.xxlarge-10,.grid-y>.xxlarge-11,.grid-y>.xxlarge-12,.grid-y>.xxlarge-2,.grid-y>.xxlarge-3,.grid-y>.xxlarge-4,.grid-y>.xxlarge-5,.grid-y>.xxlarge-6,.grid-y>.xxlarge-7,.grid-y>.xxlarge-8,.grid-y>.xxlarge-9,.grid-y>.xxlarge-shrink{flex:0 0 auto}.grid-y>.xxlarge-shrink{height:auto}.grid-y>.xxlarge-1{height:8.3333333333%}.grid-y>.xxlarge-2{height:16.6666666667%}.grid-y>.xxlarge-3{height:25%}.grid-y>.xxlarge-4{height:33.3333333333%}.grid-y>.xxlarge-5{height:41.6666666667%}.grid-y>.xxlarge-6{height:50%}.grid-y>.xxlarge-7{height:58.3333333333%}.grid-y>.xxlarge-8{height:66.6666666667%}.grid-y>.xxlarge-9{height:75%}.grid-y>.xxlarge-10{height:83.3333333333%}.grid-y>.xxlarge-11{height:91.6666666667%}.grid-y>.xxlarge-12{height:100%}}.grid-padding-y .grid-padding-y{margin-bottom:-.3333333333rem;margin-top:-.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media print,screen and (min-width:64em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:75em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:90em){.grid-padding-y .grid-padding-y{margin-bottom:-.7rem;margin-top:-.7rem}}.grid-padding-y>.cell{padding-bottom:.3333333333rem;padding-top:.3333333333rem}@media print,screen and (min-width:40em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}@media print,screen and (min-width:64em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}@media screen and (min-width:75em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}@media screen and (min-width:90em){.grid-padding-y>.cell{padding-bottom:.7rem;padding-top:.7rem}}.grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .grid-frame{width:100%}.cell-block{max-width:100%;overflow-x:auto}.cell-block,.cell-block-y{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.cell-block-y{max-height:100%;min-height:100%;overflow-y:auto}.cell-block-container{display:flex;flex-direction:column;max-height:100%}.cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}@media print,screen and (min-width:40em){.medium-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .medium-grid-frame{width:100%}.medium-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.medium-cell-block-container{display:flex;flex-direction:column;max-height:100%}.medium-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.medium-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}@media print,screen and (min-width:64em){.large-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .large-grid-frame{width:100%}.large-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.large-cell-block-container{display:flex;flex-direction:column;max-height:100%}.large-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.large-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}@media screen and (min-width:75em){.xlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .xlarge-grid-frame{width:100%}.xlarge-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.xlarge-cell-block-container{display:flex;flex-direction:column;max-height:100%}.xlarge-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.xlarge-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}@media screen and (min-width:90em){.xxlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;overflow:hidden;position:relative;width:100vw}.cell .xxlarge-grid-frame{width:100%}.xxlarge-cell-block{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.xxlarge-cell-block-container{display:flex;flex-direction:column;max-height:100%}.xxlarge-cell-block-container>.grid-x{flex-wrap:nowrap;max-height:100%}.xxlarge-cell-block-y{max-height:100%;min-height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}}.grid-y.grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}@media print,screen and (min-width:40em){.grid-y.medium-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}@media print,screen and (min-width:64em){.grid-y.large-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}@media screen and (min-width:75em){.grid-y.xlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}@media screen and (min-width:90em){.grid-y.xxlarge-grid-frame{align-items:stretch;flex-wrap:nowrap;height:100vh;overflow:hidden;position:relative;width:auto}}.cell .grid-y.grid-frame{height:100%}@media print,screen and (min-width:40em){.cell .grid-y.medium-grid-frame{height:100%}}@media print,screen and (min-width:64em){.cell .grid-y.large-grid-frame{height:100%}}@media screen and (min-width:75em){.cell .grid-y.xlarge-grid-frame{height:100%}}@media screen and (min-width:90em){.cell .grid-y.xxlarge-grid-frame{height:100%}}.grid-margin-y{margin-bottom:-.3333333333rem;margin-top:-.3333333333rem}@media print,screen and (min-width:40em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media print,screen and (min-width:64em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:75em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}@media screen and (min-width:90em){.grid-margin-y{margin-bottom:-.7rem;margin-top:-.7rem}}.grid-margin-y>.cell{height:calc(100% - .66667rem);margin-bottom:.3333333333rem;margin-top:.3333333333rem}@media print,screen and (min-width:40em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}@media print,screen and (min-width:64em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}@media screen and (min-width:75em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}@media screen and (min-width:90em){.grid-margin-y>.cell{height:calc(100% - 1.4rem);margin-bottom:.7rem;margin-top:.7rem}}.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - .66667rem)}.grid-margin-y>.small-2{height:calc(16.66667% - .66667rem)}.grid-margin-y>.small-3{height:calc(25% - .66667rem)}.grid-margin-y>.small-4{height:calc(33.33333% - .66667rem)}.grid-margin-y>.small-5{height:calc(41.66667% - .66667rem)}.grid-margin-y>.small-6{height:calc(50% - .66667rem)}.grid-margin-y>.small-7{height:calc(58.33333% - .66667rem)}.grid-margin-y>.small-8{height:calc(66.66667% - .66667rem)}.grid-margin-y>.small-9{height:calc(75% - .66667rem)}.grid-margin-y>.small-10{height:calc(83.33333% - .66667rem)}.grid-margin-y>.small-11{height:calc(91.66667% - .66667rem)}.grid-margin-y>.small-12{height:calc(100% - .66667rem)}@media print,screen and (min-width:40em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}.grid-margin-y>.large-auto,.grid-margin-y>.large-shrink{height:auto}.grid-margin-y>.large-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.large-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.large-3{height:calc(25% - 1.4rem)}.grid-margin-y>.large-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.large-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.large-6{height:calc(50% - 1.4rem)}.grid-margin-y>.large-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.large-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.large-9{height:calc(75% - 1.4rem)}.grid-margin-y>.large-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.large-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.large-12{height:calc(100% - 1.4rem)}}@media screen and (min-width:75em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}.grid-margin-y>.large-auto,.grid-margin-y>.large-shrink{height:auto}.grid-margin-y>.large-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.large-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.large-3{height:calc(25% - 1.4rem)}.grid-margin-y>.large-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.large-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.large-6{height:calc(50% - 1.4rem)}.grid-margin-y>.large-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.large-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.large-9{height:calc(75% - 1.4rem)}.grid-margin-y>.large-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.large-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.large-12{height:calc(100% - 1.4rem)}.grid-margin-y>.xlarge-auto,.grid-margin-y>.xlarge-shrink{height:auto}.grid-margin-y>.xlarge-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.xlarge-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.xlarge-3{height:calc(25% - 1.4rem)}.grid-margin-y>.xlarge-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.xlarge-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.xlarge-6{height:calc(50% - 1.4rem)}.grid-margin-y>.xlarge-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.xlarge-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.xlarge-9{height:calc(75% - 1.4rem)}.grid-margin-y>.xlarge-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.xlarge-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.xlarge-12{height:calc(100% - 1.4rem)}}@media screen and (min-width:90em){.grid-margin-y>.auto,.grid-margin-y>.shrink{height:auto}.grid-margin-y>.small-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.small-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.small-3{height:calc(25% - 1.4rem)}.grid-margin-y>.small-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.small-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.small-6{height:calc(50% - 1.4rem)}.grid-margin-y>.small-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.small-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.small-9{height:calc(75% - 1.4rem)}.grid-margin-y>.small-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.small-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.small-12{height:calc(100% - 1.4rem)}.grid-margin-y>.medium-auto,.grid-margin-y>.medium-shrink{height:auto}.grid-margin-y>.medium-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.medium-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.medium-3{height:calc(25% - 1.4rem)}.grid-margin-y>.medium-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.medium-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.medium-6{height:calc(50% - 1.4rem)}.grid-margin-y>.medium-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.medium-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.medium-9{height:calc(75% - 1.4rem)}.grid-margin-y>.medium-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.medium-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.medium-12{height:calc(100% - 1.4rem)}.grid-margin-y>.large-auto,.grid-margin-y>.large-shrink{height:auto}.grid-margin-y>.large-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.large-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.large-3{height:calc(25% - 1.4rem)}.grid-margin-y>.large-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.large-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.large-6{height:calc(50% - 1.4rem)}.grid-margin-y>.large-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.large-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.large-9{height:calc(75% - 1.4rem)}.grid-margin-y>.large-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.large-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.large-12{height:calc(100% - 1.4rem)}.grid-margin-y>.xlarge-auto,.grid-margin-y>.xlarge-shrink{height:auto}.grid-margin-y>.xlarge-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.xlarge-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.xlarge-3{height:calc(25% - 1.4rem)}.grid-margin-y>.xlarge-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.xlarge-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.xlarge-6{height:calc(50% - 1.4rem)}.grid-margin-y>.xlarge-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.xlarge-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.xlarge-9{height:calc(75% - 1.4rem)}.grid-margin-y>.xlarge-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.xlarge-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.xlarge-12{height:calc(100% - 1.4rem)}.grid-margin-y>.xxlarge-auto,.grid-margin-y>.xxlarge-shrink{height:auto}.grid-margin-y>.xxlarge-1{height:calc(8.33333% - 1.4rem)}.grid-margin-y>.xxlarge-2{height:calc(16.66667% - 1.4rem)}.grid-margin-y>.xxlarge-3{height:calc(25% - 1.4rem)}.grid-margin-y>.xxlarge-4{height:calc(33.33333% - 1.4rem)}.grid-margin-y>.xxlarge-5{height:calc(41.66667% - 1.4rem)}.grid-margin-y>.xxlarge-6{height:calc(50% - 1.4rem)}.grid-margin-y>.xxlarge-7{height:calc(58.33333% - 1.4rem)}.grid-margin-y>.xxlarge-8{height:calc(66.66667% - 1.4rem)}.grid-margin-y>.xxlarge-9{height:calc(75% - 1.4rem)}.grid-margin-y>.xxlarge-10{height:calc(83.33333% - 1.4rem)}.grid-margin-y>.xxlarge-11{height:calc(91.66667% - 1.4rem)}.grid-margin-y>.xxlarge-12{height:calc(100% - 1.4rem)}}.grid-frame.grid-margin-y{height:calc(100vh + .66667rem)}@media print,screen and (min-width:40em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media print,screen and (min-width:64em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media screen and (min-width:75em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media screen and (min-width:90em){.grid-frame.grid-margin-y{height:calc(100vh + 1.4rem)}}@media print,screen and (min-width:40em){.grid-margin-y.medium-grid-frame{height:calc(100vh + 1.4rem)}}@media print,screen and (min-width:64em){.grid-margin-y.large-grid-frame{height:calc(100vh + 1.4rem)}}@media screen and (min-width:75em){.grid-margin-y.xlarge-grid-frame{height:calc(100vh + 1.4rem)}}@media screen and (min-width:90em){.grid-margin-y.xxlarge-grid-frame{height:calc(100vh + 1.4rem)}}.button{-webkit-appearance:none;border:1px solid transparent;border-radius:5px;cursor:pointer;display:inline-block;font-family:inherit;font-size:.9rem;line-height:1;margin:0 0 1rem;padding:.85em 1em;text-align:center;transition:background-color .25s ease-out,color .25s ease-out;vertical-align:middle}[data-whatinput=mouse] .button{outline:0}.button.tiny{font-size:.6rem}.button.small{font-size:.75rem}.button.large{font-size:1.25rem}.button.expanded{display:block;margin-left:0;margin-right:0;width:100%}.button,.button.disabled,.button.disabled:focus,.button.disabled:hover,.button[disabled],.button[disabled]:focus,.button[disabled]:hover{background-color:#3f729b;color:#fefefe}.button:focus,.button:hover{background-color:#366184;color:#fefefe}.button.primary,.button.primary.disabled,.button.primary.disabled:focus,.button.primary.disabled:hover,.button.primary[disabled],.button.primary[disabled]:focus,.button.primary[disabled]:hover{background-color:#3f729b;color:#fefefe}.button.primary:focus,.button.primary:hover{background-color:#325b7c;color:#fefefe}.button.secondary,.button.secondary.disabled,.button.secondary.disabled:focus,.button.secondary.disabled:hover,.button.secondary[disabled],.button.secondary[disabled]:focus,.button.secondary[disabled]:hover{background-color:#8bc34a;color:#0a0a0a}.button.secondary:focus,.button.secondary:hover{background-color:#70a236;color:#0a0a0a}.button.success,.button.success.disabled,.button.success.disabled:focus,.button.success.disabled:hover,.button.success[disabled],.button.success[disabled]:focus,.button.success[disabled]:hover{background-color:#4caf50;color:#0a0a0a}.button.success:focus,.button.success:hover{background-color:#3d8c40;color:#0a0a0a}.button.warning,.button.warning.disabled,.button.warning.disabled:focus,.button.warning.disabled:hover,.button.warning[disabled],.button.warning[disabled]:focus,.button.warning[disabled]:hover{background-color:#ffae00;color:#0a0a0a}.button.warning:focus,.button.warning:hover{background-color:#cc8b00;color:#0a0a0a}.button.alert,.button.alert.disabled,.button.alert.disabled:focus,.button.alert.disabled:hover,.button.alert[disabled],.button.alert[disabled]:focus,.button.alert[disabled]:hover{background-color:#cc4b37;color:#fefefe}.button.alert:focus,.button.alert:hover{background-color:#a53b2a;color:#fefefe}.button.hollow,.button.hollow.disabled,.button.hollow.disabled:focus,.button.hollow.disabled:hover,.button.hollow:focus,.button.hollow:hover,.button.hollow[disabled],.button.hollow[disabled]:focus,.button.hollow[disabled]:hover{background-color:transparent}.button.hollow,.button.hollow.disabled,.button.hollow.disabled:focus,.button.hollow.disabled:hover,.button.hollow[disabled],.button.hollow[disabled]:focus,.button.hollow[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button.hollow:focus,.button.hollow:hover{border-color:#20394e;color:#20394e}.button.hollow.primary,.button.hollow.primary.disabled,.button.hollow.primary.disabled:focus,.button.hollow.primary.disabled:hover,.button.hollow.primary[disabled],.button.hollow.primary[disabled]:focus,.button.hollow.primary[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button.hollow.primary:focus,.button.hollow.primary:hover{border-color:#20394e;color:#20394e}.button.hollow.secondary,.button.hollow.secondary.disabled,.button.hollow.secondary.disabled:focus,.button.hollow.secondary.disabled:hover,.button.hollow.secondary[disabled],.button.hollow.secondary[disabled]:focus,.button.hollow.secondary[disabled]:hover{border:1px solid #8bc34a;color:#8bc34a}.button.hollow.secondary:focus,.button.hollow.secondary:hover{border-color:#466521;color:#466521}.button.hollow.success,.button.hollow.success.disabled,.button.hollow.success.disabled:focus,.button.hollow.success.disabled:hover,.button.hollow.success[disabled],.button.hollow.success[disabled]:focus,.button.hollow.success[disabled]:hover{border:1px solid #4caf50;color:#4caf50}.button.hollow.success:focus,.button.hollow.success:hover{border-color:#265828;color:#265828}.button.hollow.warning,.button.hollow.warning.disabled,.button.hollow.warning.disabled:focus,.button.hollow.warning.disabled:hover,.button.hollow.warning[disabled],.button.hollow.warning[disabled]:focus,.button.hollow.warning[disabled]:hover{border:1px solid #ffae00;color:#ffae00}.button.hollow.warning:focus,.button.hollow.warning:hover{border-color:#805700;color:#805700}.button.hollow.alert,.button.hollow.alert.disabled,.button.hollow.alert.disabled:focus,.button.hollow.alert.disabled:hover,.button.hollow.alert[disabled],.button.hollow.alert[disabled]:focus,.button.hollow.alert[disabled]:hover{border:1px solid #cc4b37;color:#cc4b37}.button.hollow.alert:focus,.button.hollow.alert:hover{border-color:#67251a;color:#67251a}.button.clear,.button.clear.disabled,.button.clear.disabled:focus,.button.clear.disabled:hover,.button.clear:focus,.button.clear:hover,.button.clear[disabled],.button.clear[disabled]:focus,.button.clear[disabled]:hover{background-color:transparent;border-color:transparent}.button.clear,.button.clear.disabled,.button.clear.disabled:focus,.button.clear.disabled:hover,.button.clear[disabled],.button.clear[disabled]:focus,.button.clear[disabled]:hover{color:#3f729b}.button.clear:focus,.button.clear:hover{color:#20394e}.button.clear.primary,.button.clear.primary.disabled,.button.clear.primary.disabled:focus,.button.clear.primary.disabled:hover,.button.clear.primary[disabled],.button.clear.primary[disabled]:focus,.button.clear.primary[disabled]:hover{color:#3f729b}.button.clear.primary:focus,.button.clear.primary:hover{color:#20394e}.button.clear.secondary,.button.clear.secondary.disabled,.button.clear.secondary.disabled:focus,.button.clear.secondary.disabled:hover,.button.clear.secondary[disabled],.button.clear.secondary[disabled]:focus,.button.clear.secondary[disabled]:hover{color:#8bc34a}.button.clear.secondary:focus,.button.clear.secondary:hover{color:#466521}.button.clear.success,.button.clear.success.disabled,.button.clear.success.disabled:focus,.button.clear.success.disabled:hover,.button.clear.success[disabled],.button.clear.success[disabled]:focus,.button.clear.success[disabled]:hover{color:#4caf50}.button.clear.success:focus,.button.clear.success:hover{color:#265828}.button.clear.warning,.button.clear.warning.disabled,.button.clear.warning.disabled:focus,.button.clear.warning.disabled:hover,.button.clear.warning[disabled],.button.clear.warning[disabled]:focus,.button.clear.warning[disabled]:hover{color:#ffae00}.button.clear.warning:focus,.button.clear.warning:hover{color:#805700}.button.clear.alert,.button.clear.alert.disabled,.button.clear.alert.disabled:focus,.button.clear.alert.disabled:hover,.button.clear.alert[disabled],.button.clear.alert[disabled]:focus,.button.clear.alert[disabled]:hover{color:#cc4b37}.button.clear.alert:focus,.button.clear.alert:hover{color:#67251a}.button.disabled,.button[disabled]{cursor:not-allowed;opacity:.25}.button.dropdown:after{border-color:#fefefe transparent transparent;border-style:solid;border-width:.4em .4em 0;content:"";display:block;display:inline-block;float:right;height:0;margin-left:1em;position:relative;top:.4em;width:0}.button.dropdown.clear.primary:after,.button.dropdown.clear:after,.button.dropdown.hollow.primary:after,.button.dropdown.hollow:after{border-top-color:#3f729b}.button.dropdown.clear.secondary:after,.button.dropdown.hollow.secondary:after{border-top-color:#8bc34a}.button.dropdown.clear.success:after,.button.dropdown.hollow.success:after{border-top-color:#4caf50}.button.dropdown.clear.warning:after,.button.dropdown.hollow.warning:after{border-top-color:#ffae00}.button.dropdown.clear.alert:after,.button.dropdown.hollow.alert:after{border-top-color:#cc4b37}.button.arrow-only:after{float:none;margin-left:0;top:-.1em}a.button:focus,a.button:hover{text-decoration:none}.button-group{align-items:stretch;display:flex;flex-grow:1;flex-wrap:wrap;margin-bottom:1rem}.button-group:after,.button-group:before{content:" ";display:none;display:table;flex-basis:0;order:1}.button-group:after{clear:both}.button-group .button{flex:0 0 auto;font-size:.9rem;margin:0 1px 1px 0}.button-group .button:last-child{margin-right:0}.button-group.tiny .button{font-size:.6rem}.button-group.small .button{font-size:.75rem}.button-group.large .button{font-size:1.25rem}.button-group.expanded .button{flex:1 1 0px}.button-group.primary .button,.button-group.primary .button.disabled,.button-group.primary .button.disabled:focus,.button-group.primary .button.disabled:hover,.button-group.primary .button[disabled],.button-group.primary .button[disabled]:focus,.button-group.primary .button[disabled]:hover{background-color:#3f729b;color:#fefefe}.button-group.primary .button:focus,.button-group.primary .button:hover{background-color:#325b7c;color:#fefefe}.button-group.secondary .button,.button-group.secondary .button.disabled,.button-group.secondary .button.disabled:focus,.button-group.secondary .button.disabled:hover,.button-group.secondary .button[disabled],.button-group.secondary .button[disabled]:focus,.button-group.secondary .button[disabled]:hover{background-color:#8bc34a;color:#0a0a0a}.button-group.secondary .button:focus,.button-group.secondary .button:hover{background-color:#70a236;color:#0a0a0a}.button-group.success .button,.button-group.success .button.disabled,.button-group.success .button.disabled:focus,.button-group.success .button.disabled:hover,.button-group.success .button[disabled],.button-group.success .button[disabled]:focus,.button-group.success .button[disabled]:hover{background-color:#4caf50;color:#0a0a0a}.button-group.success .button:focus,.button-group.success .button:hover{background-color:#3d8c40;color:#0a0a0a}.button-group.warning .button,.button-group.warning .button.disabled,.button-group.warning .button.disabled:focus,.button-group.warning .button.disabled:hover,.button-group.warning .button[disabled],.button-group.warning .button[disabled]:focus,.button-group.warning .button[disabled]:hover{background-color:#ffae00;color:#0a0a0a}.button-group.warning .button:focus,.button-group.warning .button:hover{background-color:#cc8b00;color:#0a0a0a}.button-group.alert .button,.button-group.alert .button.disabled,.button-group.alert .button.disabled:focus,.button-group.alert .button.disabled:hover,.button-group.alert .button[disabled],.button-group.alert .button[disabled]:focus,.button-group.alert .button[disabled]:hover{background-color:#cc4b37;color:#fefefe}.button-group.alert .button:focus,.button-group.alert .button:hover{background-color:#a53b2a;color:#fefefe}.button-group.hollow .button,.button-group.hollow .button.disabled,.button-group.hollow .button.disabled:focus,.button-group.hollow .button.disabled:hover,.button-group.hollow .button:focus,.button-group.hollow .button:hover,.button-group.hollow .button[disabled],.button-group.hollow .button[disabled]:focus,.button-group.hollow .button[disabled]:hover{background-color:transparent}.button-group.hollow .button,.button-group.hollow .button.disabled,.button-group.hollow .button.disabled:focus,.button-group.hollow .button.disabled:hover,.button-group.hollow .button[disabled],.button-group.hollow .button[disabled]:focus,.button-group.hollow .button[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button-group.hollow .button:focus,.button-group.hollow .button:hover{border-color:#20394e;color:#20394e}.button-group.hollow .button.primary,.button-group.hollow .button.primary.disabled,.button-group.hollow .button.primary.disabled:focus,.button-group.hollow .button.primary.disabled:hover,.button-group.hollow .button.primary[disabled],.button-group.hollow .button.primary[disabled]:focus,.button-group.hollow .button.primary[disabled]:hover,.button-group.hollow.primary .button,.button-group.hollow.primary .button.disabled,.button-group.hollow.primary .button.disabled:focus,.button-group.hollow.primary .button.disabled:hover,.button-group.hollow.primary .button[disabled],.button-group.hollow.primary .button[disabled]:focus,.button-group.hollow.primary .button[disabled]:hover{border:1px solid #3f729b;color:#3f729b}.button-group.hollow .button.primary:focus,.button-group.hollow .button.primary:hover,.button-group.hollow.primary .button:focus,.button-group.hollow.primary .button:hover{border-color:#20394e;color:#20394e}.button-group.hollow .button.secondary,.button-group.hollow .button.secondary.disabled,.button-group.hollow .button.secondary.disabled:focus,.button-group.hollow .button.secondary.disabled:hover,.button-group.hollow .button.secondary[disabled],.button-group.hollow .button.secondary[disabled]:focus,.button-group.hollow .button.secondary[disabled]:hover,.button-group.hollow.secondary .button,.button-group.hollow.secondary .button.disabled,.button-group.hollow.secondary .button.disabled:focus,.button-group.hollow.secondary .button.disabled:hover,.button-group.hollow.secondary .button[disabled],.button-group.hollow.secondary .button[disabled]:focus,.button-group.hollow.secondary .button[disabled]:hover{border:1px solid #8bc34a;color:#8bc34a}.button-group.hollow .button.secondary:focus,.button-group.hollow .button.secondary:hover,.button-group.hollow.secondary .button:focus,.button-group.hollow.secondary .button:hover{border-color:#466521;color:#466521}.button-group.hollow .button.success,.button-group.hollow .button.success.disabled,.button-group.hollow .button.success.disabled:focus,.button-group.hollow .button.success.disabled:hover,.button-group.hollow .button.success[disabled],.button-group.hollow .button.success[disabled]:focus,.button-group.hollow .button.success[disabled]:hover,.button-group.hollow.success .button,.button-group.hollow.success .button.disabled,.button-group.hollow.success .button.disabled:focus,.button-group.hollow.success .button.disabled:hover,.button-group.hollow.success .button[disabled],.button-group.hollow.success .button[disabled]:focus,.button-group.hollow.success .button[disabled]:hover{border:1px solid #4caf50;color:#4caf50}.button-group.hollow .button.success:focus,.button-group.hollow .button.success:hover,.button-group.hollow.success .button:focus,.button-group.hollow.success .button:hover{border-color:#265828;color:#265828}.button-group.hollow .button.warning,.button-group.hollow .button.warning.disabled,.button-group.hollow .button.warning.disabled:focus,.button-group.hollow .button.warning.disabled:hover,.button-group.hollow .button.warning[disabled],.button-group.hollow .button.warning[disabled]:focus,.button-group.hollow .button.warning[disabled]:hover,.button-group.hollow.warning .button,.button-group.hollow.warning .button.disabled,.button-group.hollow.warning .button.disabled:focus,.button-group.hollow.warning .button.disabled:hover,.button-group.hollow.warning .button[disabled],.button-group.hollow.warning .button[disabled]:focus,.button-group.hollow.warning .button[disabled]:hover{border:1px solid #ffae00;color:#ffae00}.button-group.hollow .button.warning:focus,.button-group.hollow .button.warning:hover,.button-group.hollow.warning .button:focus,.button-group.hollow.warning .button:hover{border-color:#805700;color:#805700}.button-group.hollow .button.alert,.button-group.hollow .button.alert.disabled,.button-group.hollow .button.alert.disabled:focus,.button-group.hollow .button.alert.disabled:hover,.button-group.hollow .button.alert[disabled],.button-group.hollow .button.alert[disabled]:focus,.button-group.hollow .button.alert[disabled]:hover,.button-group.hollow.alert .button,.button-group.hollow.alert .button.disabled,.button-group.hollow.alert .button.disabled:focus,.button-group.hollow.alert .button.disabled:hover,.button-group.hollow.alert .button[disabled],.button-group.hollow.alert .button[disabled]:focus,.button-group.hollow.alert .button[disabled]:hover{border:1px solid #cc4b37;color:#cc4b37}.button-group.hollow .button.alert:focus,.button-group.hollow .button.alert:hover,.button-group.hollow.alert .button:focus,.button-group.hollow.alert .button:hover{border-color:#67251a;color:#67251a}.button-group.clear .button,.button-group.clear .button.disabled,.button-group.clear .button.disabled:focus,.button-group.clear .button.disabled:hover,.button-group.clear .button:focus,.button-group.clear .button:hover,.button-group.clear .button[disabled],.button-group.clear .button[disabled]:focus,.button-group.clear .button[disabled]:hover{background-color:transparent;border-color:transparent}.button-group.clear .button,.button-group.clear .button.disabled,.button-group.clear .button.disabled:focus,.button-group.clear .button.disabled:hover,.button-group.clear .button[disabled],.button-group.clear .button[disabled]:focus,.button-group.clear .button[disabled]:hover{color:#3f729b}.button-group.clear .button:focus,.button-group.clear .button:hover{color:#20394e}.button-group.clear .button.primary,.button-group.clear .button.primary.disabled,.button-group.clear .button.primary.disabled:focus,.button-group.clear .button.primary.disabled:hover,.button-group.clear .button.primary[disabled],.button-group.clear .button.primary[disabled]:focus,.button-group.clear .button.primary[disabled]:hover,.button-group.clear.primary .button,.button-group.clear.primary .button.disabled,.button-group.clear.primary .button.disabled:focus,.button-group.clear.primary .button.disabled:hover,.button-group.clear.primary .button[disabled],.button-group.clear.primary .button[disabled]:focus,.button-group.clear.primary .button[disabled]:hover{color:#3f729b}.button-group.clear .button.primary:focus,.button-group.clear .button.primary:hover,.button-group.clear.primary .button:focus,.button-group.clear.primary .button:hover{color:#20394e}.button-group.clear .button.secondary,.button-group.clear .button.secondary.disabled,.button-group.clear .button.secondary.disabled:focus,.button-group.clear .button.secondary.disabled:hover,.button-group.clear .button.secondary[disabled],.button-group.clear .button.secondary[disabled]:focus,.button-group.clear .button.secondary[disabled]:hover,.button-group.clear.secondary .button,.button-group.clear.secondary .button.disabled,.button-group.clear.secondary .button.disabled:focus,.button-group.clear.secondary .button.disabled:hover,.button-group.clear.secondary .button[disabled],.button-group.clear.secondary .button[disabled]:focus,.button-group.clear.secondary .button[disabled]:hover{color:#8bc34a}.button-group.clear .button.secondary:focus,.button-group.clear .button.secondary:hover,.button-group.clear.secondary .button:focus,.button-group.clear.secondary .button:hover{color:#466521}.button-group.clear .button.success,.button-group.clear .button.success.disabled,.button-group.clear .button.success.disabled:focus,.button-group.clear .button.success.disabled:hover,.button-group.clear .button.success[disabled],.button-group.clear .button.success[disabled]:focus,.button-group.clear .button.success[disabled]:hover,.button-group.clear.success .button,.button-group.clear.success .button.disabled,.button-group.clear.success .button.disabled:focus,.button-group.clear.success .button.disabled:hover,.button-group.clear.success .button[disabled],.button-group.clear.success .button[disabled]:focus,.button-group.clear.success .button[disabled]:hover{color:#4caf50}.button-group.clear .button.success:focus,.button-group.clear .button.success:hover,.button-group.clear.success .button:focus,.button-group.clear.success .button:hover{color:#265828}.button-group.clear .button.warning,.button-group.clear .button.warning.disabled,.button-group.clear .button.warning.disabled:focus,.button-group.clear .button.warning.disabled:hover,.button-group.clear .button.warning[disabled],.button-group.clear .button.warning[disabled]:focus,.button-group.clear .button.warning[disabled]:hover,.button-group.clear.warning .button,.button-group.clear.warning .button.disabled,.button-group.clear.warning .button.disabled:focus,.button-group.clear.warning .button.disabled:hover,.button-group.clear.warning .button[disabled],.button-group.clear.warning .button[disabled]:focus,.button-group.clear.warning .button[disabled]:hover{color:#ffae00}.button-group.clear .button.warning:focus,.button-group.clear .button.warning:hover,.button-group.clear.warning .button:focus,.button-group.clear.warning .button:hover{color:#805700}.button-group.clear .button.alert,.button-group.clear .button.alert.disabled,.button-group.clear .button.alert.disabled:focus,.button-group.clear .button.alert.disabled:hover,.button-group.clear .button.alert[disabled],.button-group.clear .button.alert[disabled]:focus,.button-group.clear .button.alert[disabled]:hover,.button-group.clear.alert .button,.button-group.clear.alert .button.disabled,.button-group.clear.alert .button.disabled:focus,.button-group.clear.alert .button.disabled:hover,.button-group.clear.alert .button[disabled],.button-group.clear.alert .button[disabled]:focus,.button-group.clear.alert .button[disabled]:hover{color:#cc4b37}.button-group.clear .button.alert:focus,.button-group.clear .button.alert:hover,.button-group.clear.alert .button:focus,.button-group.clear.alert .button:hover{color:#67251a}.button-group.no-gaps .button{margin-right:-.0666666667rem}.button-group.no-gaps .button+.button{border-left-color:transparent}.button-group.stacked,.button-group.stacked-for-medium,.button-group.stacked-for-small{flex-wrap:wrap}.button-group.stacked .button,.button-group.stacked-for-medium .button,.button-group.stacked-for-small .button{flex:0 0 100%}.button-group.stacked .button:last-child,.button-group.stacked-for-medium .button:last-child,.button-group.stacked-for-small .button:last-child{margin-bottom:0}.button-group.stacked-for-medium.expanded .button,.button-group.stacked-for-small.expanded .button,.button-group.stacked.expanded .button{flex:1 1 0px}@media print,screen and (min-width:40em){.button-group.stacked-for-small .button{flex:0 0 auto;margin-bottom:0}}@media print,screen and (min-width:64em){.button-group.stacked-for-medium .button{flex:0 0 auto;margin-bottom:0}}@media print,screen and (max-width:39.99875em){.button-group.stacked-for-small.expanded{display:block}.button-group.stacked-for-small.expanded .button{display:block;margin-right:0}}@media print,screen and (max-width:63.99875em){.button-group.stacked-for-medium.expanded{display:block}.button-group.stacked-for-medium.expanded .button{display:block;margin-right:0}}.close-button{color:#8a8a8a;cursor:pointer;position:absolute;z-index:10}[data-whatinput=mouse] .close-button{outline:0}.close-button:focus,.close-button:hover{color:#0a0a0a}.close-button.small{font-size:1.5em;line-height:1;right:.66rem;top:.33em}.close-button,.close-button.medium{font-size:2em;line-height:1;right:1rem;top:.5rem}.label{border-radius:0;cursor:default;display:inline-block;font-size:.8rem;line-height:1;padding:.33333rem .5rem;white-space:nowrap}.label,.label.primary{background:#3f729b;color:#fefefe}.label.secondary{background:#8bc34a;color:#0a0a0a}.label.success{background:#4caf50;color:#0a0a0a}.label.warning{background:#ffae00;color:#0a0a0a}.label.alert{background:#cc4b37;color:#fefefe}.progress{background-color:#cacaca;border-radius:0;height:1rem;margin-bottom:1rem}.progress.primary .progress-meter{background-color:#3f729b}.progress.secondary .progress-meter{background-color:#8bc34a}.progress.success .progress-meter{background-color:#4caf50}.progress.warning .progress-meter{background-color:#ffae00}.progress.alert .progress-meter{background-color:#cc4b37}.progress-meter{background-color:#3f729b;display:block;height:100%;position:relative;width:0}.progress-meter-text{color:#fefefe;font-size:.75rem;font-weight:700;left:50%;margin:0;position:absolute;top:50%;transform:translate(-50%,-50%);white-space:nowrap}.slider{background-color:#e6e6e6;cursor:pointer;height:.5rem;margin-bottom:2.25rem;margin-top:1.25rem;position:relative;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.slider-fill{background-color:#cacaca;display:inline-block;height:.5rem;left:0;max-width:100%;position:absolute;top:0;transition:all .2s ease-in-out}.slider-fill.is-dragging{transition:all 0s linear}.slider-handle{background-color:#3f729b;border-radius:0;cursor:grab;display:inline-block;height:1.4rem;left:0;position:absolute;top:50%;touch-action:manipulation;transform:translateY(-50%);transition:all .2s ease-in-out;width:1.4rem;z-index:1}[data-whatinput=mouse] .slider-handle{outline:0}.slider-handle:hover{background-color:#366184}.slider-handle.is-dragging{cursor:grabbing;transition:all 0s linear}.slider.disabled,.slider[disabled]{cursor:not-allowed;opacity:.25}.slider.vertical{display:inline-block;height:12.5rem;margin:0 1.25rem;transform:scaleY(-1);width:.5rem}.slider.vertical .slider-fill{max-height:100%;top:0;width:.5rem}.slider.vertical .slider-handle{height:1.4rem;left:50%;position:absolute;top:0;transform:translate(-50%);width:1.4rem}.switch{color:#fefefe;font-size:.9333333333rem;font-weight:700;height:2rem;margin-bottom:1rem;outline:0;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.switch-input{margin-bottom:0;opacity:0;position:absolute}.switch-paddle{background:#cacaca;border-radius:0;color:inherit;cursor:pointer;display:block;font-weight:inherit;height:2rem;position:relative;transition:all .25s ease-out;width:4rem}input+.switch-paddle{margin:0}.switch-paddle:after{background:#fefefe;border-radius:0;content:"";display:block;height:1.5rem;left:.25rem;position:absolute;top:.25rem;transform:translateZ(0);transition:all .25s ease-out;width:1.5rem}input:checked~.switch-paddle{background:#3f729b}input:checked~.switch-paddle:after{left:2.25rem}input:focus-visible~.switch-paddle{background:#b6b6b6}input:focus-visible~.switch-paddle:after{background:#fefefe}input:checked:focus-visible~.switch-paddle{background:#366184}input:disabled~.switch-paddle{cursor:not-allowed;opacity:.5}[data-whatinput=mouse] input:focus~.switch-paddle{outline:0}.switch-active,.switch-inactive{position:absolute;top:50%;transform:translateY(-50%)}.switch-active{display:none;left:8%}input:checked+label>.switch-active{display:block}.switch-inactive{right:15%}input:checked+label>.switch-inactive{display:none}.switch.tiny{height:1.5rem}.switch.tiny .switch-paddle{font-size:.6666666667rem;height:1.5rem;width:3rem}.switch.tiny .switch-paddle:after{height:1rem;left:.25rem;top:.25rem;width:1rem}.switch.tiny input:checked~.switch-paddle:after{left:1.75rem}.switch.small{height:1.75rem}.switch.small .switch-paddle{font-size:.8rem;height:1.75rem;width:3.5rem}.switch.small .switch-paddle:after{height:1.25rem;left:.25rem;top:.25rem;width:1.25rem}.switch.small input:checked~.switch-paddle:after{left:2rem}.switch.large{height:2.5rem}.switch.large .switch-paddle{font-size:1.0666666667rem;height:2.5rem;width:5rem}.switch.large .switch-paddle:after{height:2rem;left:.25rem;top:.25rem;width:2rem}.switch.large input:checked~.switch-paddle:after{left:2.75rem}table{border-collapse:collapse;border-radius:0;margin-bottom:1rem;width:100%}tbody,tfoot,thead{background-color:#fefefe;border:1px solid #f1f1f1}caption{font-weight:700;padding:.5333333333rem .6666666667rem .6666666667rem}thead{background:transparent}tfoot,thead{color:#0a0a0a}tfoot{background:#f1f1f1}tfoot tr,thead tr{background:transparent}tfoot td,tfoot th,thead td,thead th{font-weight:700;text-align:left}tbody td,tbody th,tfoot td,tfoot th,thead td,thead th{padding:.5333333333rem .6666666667rem .6666666667rem}tbody tr{background-color:#fefefe;border-bottom:1px solid #f1f1f1}@media print,screen and (max-width:63.99875em){table.stack tfoot,table.stack thead{display:none}table.stack td,table.stack th,table.stack tr{display:block}table.stack td{border-top:0}}table.scroll{display:block;overflow-x:auto;width:100%}table.hover thead tr:hover{background-color:#05050500}table.hover tfoot tr:hover{background-color:#f6f6f6}table.hover tbody tr:hover{background-color:#fff}.table-scroll{overflow-x:auto}.badge{border-radius:50%;display:inline-block;font-size:.6rem;min-width:2.1em;padding:.3em;text-align:center}.badge,.badge.primary{background:#3f729b;color:#fefefe}.badge.secondary{background:#8bc34a;color:#0a0a0a}.badge.success{background:#4caf50;color:#0a0a0a}.badge.warning{background:#ffae00;color:#0a0a0a}.badge.alert{background:#cc4b37;color:#fefefe}.breadcrumbs{list-style:none;margin:0 0 1rem}.breadcrumbs:after,.breadcrumbs:before{content:" ";display:table;flex-basis:0;order:1}.breadcrumbs:after{clear:both}.breadcrumbs li{color:#0a0a0a;cursor:default;float:left;font-size:.7333333333rem;text-transform:uppercase}.breadcrumbs li:not(:last-child):after{color:#cacaca;content:"/";margin:0 .75rem;opacity:1;position:relative}.breadcrumbs a{color:#3f729b}.breadcrumbs a:hover{text-decoration:underline}.breadcrumbs .disabled{color:#cacaca;cursor:not-allowed}.callout{background-color:#fff;border:1px solid hsla(0,0%,4%,.25);border-radius:0;color:#0a0a0a;margin:0 0 1rem;padding:1rem;position:relative}.callout>:first-child{margin-top:0}.callout>:last-child{margin-bottom:0}.callout.primary{background-color:#e0eaf2;color:#0a0a0a}.callout.secondary{background-color:#eef6e4;color:#0a0a0a}.callout.success{background-color:#e4f3e5;color:#0a0a0a}.callout.warning{background-color:#fff3d9;color:#0a0a0a}.callout.alert{background-color:#f7e4e1;color:#0a0a0a}.callout.small{padding:.5rem}.callout.large{padding:3rem}.card{background:#fefefe;border:1px solid #e6e6e6;border-radius:0;box-shadow:none;color:#0a0a0a;display:flex;flex-direction:column;flex-grow:1;margin-bottom:1rem;overflow:hidden}.card>:last-child{margin-bottom:0}.card-divider{background:#e6e6e6;display:flex;flex:0 1 auto;padding:1rem}.card-divider>:last-child{margin-bottom:0}.card-section{flex:1 0 auto;padding:1rem}.card-section>:last-child{margin-bottom:0}.card-image{min-height:1px}.dropdown-pane{background-color:#fefefe;border:1px solid #cacaca;border-radius:0;display:none;font-size:1rem;padding:1rem;position:absolute;visibility:hidden;width:300px;z-index:10}.dropdown-pane.is-opening{display:block}.dropdown-pane.is-open{display:block;visibility:visible}.dropdown-pane.tiny{width:100px}.dropdown-pane.small{width:200px}.dropdown-pane.large{width:400px}.pagination{margin-bottom:1rem;margin-left:0}.pagination:after,.pagination:before{content:" ";display:table;flex-basis:0;order:1}.pagination:after{clear:both}.pagination li{border-radius:0;display:none;font-size:.9333333333rem;margin-right:.0666666667rem}.pagination li:first-child,.pagination li:last-child{display:inline-block}@media print,screen and (min-width:40em){.pagination li{display:inline-block}}.pagination a,.pagination button{border-radius:0;color:#0a0a0a;display:block;padding:.2rem .6666666667rem}.pagination a:hover,.pagination button:hover{background:#e6e6e6}.pagination .current{background:#3f729b;color:#fefefe;cursor:default;padding:.2rem .6666666667rem}.pagination .disabled{color:#cacaca;cursor:not-allowed;padding:.2rem .6666666667rem}.pagination .disabled:hover{background:transparent}.pagination .ellipsis:after{color:#0a0a0a;content:"…";padding:.2rem .6666666667rem}.pagination-previous a:before,.pagination-previous.disabled:before{content:"«";display:inline-block;margin-right:.5rem}.pagination-next a:after,.pagination-next.disabled:after{content:"»";display:inline-block;margin-left:.5rem}.has-tip{border-bottom:1px dotted #8a8a8a;cursor:help;display:inline-block;font-weight:700;position:relative}.tooltip{background-color:#0a0a0a;border-radius:0;color:#fefefe;font-size:80%;max-width:10rem;padding:.75rem;top:calc(100% + .6495rem);z-index:1200}.tooltip,.tooltip:before{position:absolute}.tooltip.bottom:before{border-color:transparent transparent #0a0a0a;border-style:solid;border-width:0 .75rem .75rem;bottom:100%;content:"";display:block;height:0;width:0}.tooltip.bottom.align-center:before{left:50%;transform:translate(-50%)}.tooltip.top:before{border-color:#0a0a0a transparent transparent;border-style:solid;border-width:.75rem .75rem 0;bottom:auto;content:"";display:block;height:0;top:100%;width:0}.tooltip.top.align-center:before{left:50%;transform:translate(-50%)}.tooltip.left:before{border-color:transparent transparent transparent #0a0a0a;border-style:solid;border-width:.75rem 0 .75rem .75rem;content:"";display:block;height:0;left:100%;width:0}.tooltip.left.align-center:before{bottom:auto;top:50%;transform:translateY(-50%)}.tooltip.right:before{border-color:transparent #0a0a0a transparent transparent;border-style:solid;border-width:.75rem .75rem .75rem 0;content:"";display:block;height:0;left:auto;right:100%;width:0}.tooltip.right.align-center:before{bottom:auto;top:50%;transform:translateY(-50%)}.tooltip.align-top:before{bottom:auto;top:10%}.tooltip.align-bottom:before{bottom:10%;top:auto}.tooltip.align-left:before{left:10%;right:auto}.tooltip.align-right:before{left:auto;right:10%}.accordion{background:#fefefe;list-style-type:none;margin-left:0}.accordion[disabled] .accordion-title{cursor:not-allowed}.accordion-item:first-child>:first-child,.accordion-item:last-child>:last-child{border-radius:0}.accordion-title{border:1px solid #e6e6e6;border-bottom:0;color:#3f729b;display:block;font-size:.8rem;line-height:1;padding:1.25rem 1rem;position:relative}:last-child:not(.is-active)>.accordion-title{border-bottom:1px solid #e6e6e6;border-radius:0}.accordion-title:focus,.accordion-title:hover{background-color:#e6e6e6}.accordion-title:before{content:"+";margin-top:-.5rem;position:absolute;right:1rem;top:50%}.is-active>.accordion-title:before{content:"–"}.accordion-content{background-color:#fefefe;border:1px solid #e6e6e6;border-bottom:0;color:#0a0a0a;display:none;padding:1rem}:last-child>.accordion-content:last-child{border-bottom:1px solid #e6e6e6}.media-object{display:flex;flex-wrap:nowrap;margin-bottom:0}.media-object img{max-width:none}@media print,screen and (max-width:39.99875em){.media-object.stack-for-small{flex-wrap:wrap}}.media-object-section{flex:0 1 auto}.media-object-section:first-child{padding-right:1rem}.media-object-section:last-child:not(:nth-child(2)){padding-left:1rem}.media-object-section>:last-child{margin-bottom:0}@media print,screen and (max-width:39.99875em){.stack-for-small .media-object-section{flex-basis:100%;max-width:100%;padding:0 0 1rem}.stack-for-small .media-object-section img{width:100%}}.media-object-section.main-section{flex:1 1 0px}.orbit,.orbit-container{position:relative}.orbit-container{height:0;list-style:none;margin:0;overflow:hidden}.orbit-slide{position:absolute;width:100%}.orbit-slide.no-motionui.is-active{left:0;top:0}.orbit-figure{margin:0}.orbit-image{margin:0;max-width:100%;width:100%}.orbit-caption{background-color:#0a0a0a80;bottom:0;margin-bottom:0;width:100%}.orbit-caption,.orbit-next,.orbit-previous{color:#fefefe;padding:1rem;position:absolute}.orbit-next,.orbit-previous{top:50%;transform:translateY(-50%);z-index:10}[data-whatinput=mouse] .orbit-next,[data-whatinput=mouse] .orbit-previous{outline:0}.orbit-next:active,.orbit-next:focus,.orbit-next:hover,.orbit-previous:active,.orbit-previous:focus,.orbit-previous:hover{background-color:#0a0a0a80}.orbit-previous{left:0}.orbit-next{left:auto;right:0}.orbit-bullets{margin-bottom:.8rem;margin-top:.8rem;position:relative;text-align:center}[data-whatinput=mouse] .orbit-bullets{outline:0}.orbit-bullets button{background-color:#cacaca;border-radius:50%;height:1.2rem;margin:.1rem;width:1.2rem}.orbit-bullets button.is-active,.orbit-bullets button:hover{background-color:#8a8a8a}.flex-video,.responsive-embed{height:0;margin-bottom:1.0666666667rem;overflow:hidden;padding-bottom:75%;position:relative}.flex-video embed,.flex-video iframe,.flex-video object,.flex-video video,.responsive-embed embed,.responsive-embed iframe,.responsive-embed object,.responsive-embed video{height:100%;left:0;position:absolute;top:0;width:100%}.flex-video.widescreen,.responsive-embed.widescreen{padding-bottom:56.25%}.tabs{background:#fefefe;border:1px solid #e6e6e6;list-style-type:none;margin:0}.tabs:after,.tabs:before{content:" ";display:table;flex-basis:0;order:1}.tabs:after{clear:both}.tabs.vertical>li{display:block;float:none;width:auto}.tabs.simple>li>a{padding:0}.tabs.simple>li>a:hover{background:transparent}.tabs.primary{background:#3f729b}.tabs.primary>li>a{color:#fefefe}.tabs.primary>li>a:focus,.tabs.primary>li>a:hover{background:#3c6c93}.tabs-title{float:left}.tabs-title>a{color:#3f729b;display:block;font-size:.9333333333rem;line-height:1;padding:1.25rem 1.5rem}[data-whatinput=mouse] .tabs-title>a{outline:0}.tabs-title>a:hover{background:#fefefe;color:#366285}.tabs-title>a:focus,.tabs-title>a[aria-selected=true]{background:#3f729b;color:#fefefe}.tabs-content{background:#fefefe;border:1px solid #e6e6e6;border-top:0;color:#0a0a0a;transition:all .5s ease}.tabs-content.vertical{border:1px solid #e6e6e6;border-left:0}.tabs-panel{display:none;padding:1rem}.tabs-panel.is-active{display:block}.thumbnail{border:4px solid #fefefe;border-radius:0;box-shadow:0 0 0 1px #0a0a0a33;display:inline-block;line-height:0;margin-bottom:1rem;max-width:100%}a.thumbnail{transition:box-shadow .2s ease-out}a.thumbnail:focus,a.thumbnail:hover{box-shadow:0 0 6px 1px #3f729b80}a.thumbnail image{box-shadow:none}.menu{display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0;position:relative}[data-whatinput=mouse] .menu li{outline:0}.menu .button,.menu a{display:block;line-height:1;padding:.7rem 1rem;text-decoration:none}.menu a,.menu button,.menu input,.menu select{margin-bottom:0}.menu input{display:inline-block}.menu,.menu.horizontal{flex-direction:row;flex-wrap:wrap}.menu.vertical{flex-direction:column;flex-wrap:nowrap}.menu.vertical.icon-bottom li a i,.menu.vertical.icon-bottom li a img,.menu.vertical.icon-bottom li a svg,.menu.vertical.icon-top li a i,.menu.vertical.icon-top li a img,.menu.vertical.icon-top li a svg{text-align:left}.menu.expanded li{flex:1 1 0px}.menu.expanded.icon-bottom li a i,.menu.expanded.icon-bottom li a img,.menu.expanded.icon-bottom li a svg,.menu.expanded.icon-top li a i,.menu.expanded.icon-top li a img,.menu.expanded.icon-top li a svg{text-align:left}.menu.simple{align-items:center}.menu.simple li+li{margin-left:1rem}.menu.simple a{padding:0}@media print,screen and (min-width:40em){.menu.medium-horizontal{flex-direction:row;flex-wrap:wrap}.menu.medium-vertical{flex-direction:column;flex-wrap:nowrap}.menu.medium-expanded li,.menu.medium-simple li{flex:1 1 0px}}@media print,screen and (min-width:64em){.menu.large-horizontal{flex-direction:row;flex-wrap:wrap}.menu.large-vertical{flex-direction:column;flex-wrap:nowrap}.menu.large-expanded li,.menu.large-simple li{flex:1 1 0px}}@media screen and (min-width:75em){.menu.xlarge-horizontal{flex-direction:row;flex-wrap:wrap}.menu.xlarge-vertical{flex-direction:column;flex-wrap:nowrap}.menu.xlarge-expanded li,.menu.xlarge-simple li{flex:1 1 0px}}@media screen and (min-width:90em){.menu.xxlarge-horizontal{flex-direction:row;flex-wrap:wrap}.menu.xxlarge-vertical{flex-direction:column;flex-wrap:nowrap}.menu.xxlarge-expanded li,.menu.xxlarge-simple li{flex:1 1 0px}}.menu.nested{margin-left:1rem;margin-right:0}.menu.icon-bottom a,.menu.icon-left a,.menu.icon-right a,.menu.icon-top a,.menu.icons a{display:flex}.menu.icon-left li a,.menu.nested.icon-left li a{flex-flow:row nowrap}.menu.icon-left li a i,.menu.icon-left li a img,.menu.icon-left li a svg,.menu.nested.icon-left li a i,.menu.nested.icon-left li a img,.menu.nested.icon-left li a svg{margin-right:.25rem}.menu.icon-right li a,.menu.nested.icon-right li a{flex-flow:row nowrap}.menu.icon-right li a i,.menu.icon-right li a img,.menu.icon-right li a svg,.menu.nested.icon-right li a i,.menu.nested.icon-right li a img,.menu.nested.icon-right li a svg{margin-left:.25rem}.menu.icon-top li a,.menu.nested.icon-top li a{flex-flow:column nowrap}.menu.icon-top li a i,.menu.icon-top li a img,.menu.icon-top li a svg,.menu.nested.icon-top li a i,.menu.nested.icon-top li a img,.menu.nested.icon-top li a svg{align-self:stretch;margin-bottom:.25rem;text-align:center}.menu.icon-bottom li a,.menu.nested.icon-bottom li a{flex-flow:column nowrap}.menu.icon-bottom li a i,.menu.icon-bottom li a img,.menu.icon-bottom li a svg,.menu.nested.icon-bottom li a i,.menu.nested.icon-bottom li a img,.menu.nested.icon-bottom li a svg{align-self:stretch;margin-bottom:.25rem;text-align:center}.menu .active>a,.menu .is-active>a{background:#3f729b;color:#fefefe}.menu.align-left{justify-content:flex-start}.menu.align-right li{display:flex;justify-content:flex-end}.menu.align-right li .submenu li{justify-content:flex-start}.menu.align-right.vertical li{display:block;text-align:right}.menu.align-right.icon-bottom li a i,.menu.align-right.icon-bottom li a img,.menu.align-right.icon-bottom li a svg,.menu.align-right.icon-top li a i,.menu.align-right.icon-top li a img,.menu.align-right.icon-top li a svg,.menu.align-right.vertical li .submenu li{text-align:right}.menu.align-right .nested{margin-left:0;margin-right:1rem}.menu.align-center li{display:flex;justify-content:center}.menu.align-center li .submenu li{justify-content:flex-start}.menu .menu-text{color:inherit;font-weight:700;line-height:1;padding:.7rem 1rem}.menu-centered>.menu{justify-content:center}.menu-centered>.menu li{display:flex;justify-content:center}.menu-centered>.menu li .submenu li{justify-content:flex-start}.no-js [data-responsive-menu] ul{display:none}.menu-icon{cursor:pointer;display:inline-block;height:16px;position:relative;vertical-align:middle;width:20px}.menu-icon:after{background:#fefefe;box-shadow:0 7px #fefefe,0 14px #fefefe;content:"";display:block;height:2px;left:0;position:absolute;top:0;width:100%}.menu-icon:hover:after{background:#cacaca;box-shadow:0 7px #cacaca,0 14px #cacaca}.menu-icon.dark{cursor:pointer;display:inline-block;height:16px;position:relative;vertical-align:middle;width:20px}.menu-icon.dark:after{background:#0a0a0a;box-shadow:0 7px #0a0a0a,0 14px #0a0a0a;content:"";display:block;height:2px;left:0;position:absolute;top:0;width:100%}.menu-icon.dark:hover:after{background:#8a8a8a;box-shadow:0 7px #8a8a8a,0 14px #8a8a8a}.accordion-menu li{width:100%}.accordion-menu .is-accordion-submenu a,.accordion-menu a{padding:.7rem 1rem}.accordion-menu .nested.is-accordion-submenu{margin-left:1rem;margin-right:0}.accordion-menu.align-right .nested.is-accordion-submenu{margin-left:0;margin-right:1rem}.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a{position:relative}.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;margin-top:-3px;position:absolute;right:1rem;top:50%;width:0}.accordion-menu.align-left .is-accordion-submenu-parent>a:after{left:auto;right:1rem}.accordion-menu.align-right .is-accordion-submenu-parent>a:after{left:1rem;right:auto}.accordion-menu .is-accordion-submenu-parent[aria-expanded=true]>a:after{transform:rotate(180deg);transform-origin:50% 50%}.is-accordion-submenu-parent{position:relative}.has-submenu-toggle>a{margin-right:40px}.submenu-toggle{cursor:pointer;height:40px;position:absolute;right:0;top:0;width:40px}.submenu-toggle:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;bottom:0;content:"";display:block;height:0;margin:auto;top:0;width:0}.submenu-toggle[aria-expanded=true]:after{transform:scaleY(-1);transform-origin:50% 50%}.submenu-toggle-text{height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;clip:rect(0,0,0,0)!important;border:0!important;white-space:nowrap!important}.is-drilldown{overflow:hidden;position:relative}.is-drilldown li{display:block}.is-drilldown.animate-height{transition:height .5s}.drilldown a{background:#fefefe;padding:.7rem 1rem}.drilldown .is-drilldown-submenu{background:#fefefe;left:100%;position:absolute;top:0;transition:transform .15s linear;width:100%;z-index:-1}.drilldown .is-drilldown-submenu.is-active{display:block;transform:translate(-100%);z-index:1}.drilldown .is-drilldown-submenu.is-closing{transform:translate(100%)}.drilldown .is-drilldown-submenu a{padding:.7rem 1rem}.drilldown .nested.is-drilldown-submenu{margin-left:0;margin-right:0}.drilldown .drilldown-submenu-cover-previous{min-height:100%}.drilldown .is-drilldown-submenu-parent>a{position:relative}.drilldown .is-drilldown-submenu-parent>a:after{margin-top:-6px;position:absolute;top:50%}.drilldown .is-drilldown-submenu-parent>a:after,.drilldown.align-left .is-drilldown-submenu-parent>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;right:1rem;width:0}.drilldown.align-left .is-drilldown-submenu-parent>a:after{left:auto}.drilldown.align-right .is-drilldown-submenu-parent>a:after{left:1rem;right:auto}.drilldown .js-drilldown-back>a:before,.drilldown.align-right .is-drilldown-submenu-parent>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;width:0}.drilldown .js-drilldown-back>a:before{display:inline-block;margin-right:.75rem;vertical-align:middle}.dropdown.menu>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}[data-whatinput=mouse] .dropdown.menu a{outline:0}.dropdown.menu>li>a{background:#fefefe;padding:.7rem 1rem}.dropdown.menu>li.is-active>a{background:transparent;color:#3f729b}.no-js .dropdown.menu ul{display:none}.dropdown.menu .nested.is-dropdown-submenu{margin-left:0;margin-right:0}.dropdown.menu.vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.vertical>li>a:after{right:14px}.dropdown.menu.vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}@media print,screen and (min-width:40em){.dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.medium-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.medium-vertical>li>a:after{right:14px}.dropdown.menu.medium-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.medium-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}@media print,screen and (min-width:64em){.dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.large-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.large-vertical>li>a:after{right:14px}.dropdown.menu.large-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.large-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}@media screen and (min-width:75em){.dropdown.menu.xlarge-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.xlarge-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.xlarge-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.xlarge-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.xlarge-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.xlarge-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.xlarge-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.xlarge-vertical>li>a:after{right:14px}.dropdown.menu.xlarge-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.xlarge-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}@media screen and (min-width:90em){.dropdown.menu.xxlarge-horizontal>li.opens-left>.is-dropdown-submenu{left:auto;right:0;top:100%}.dropdown.menu.xxlarge-horizontal>li.opens-right>.is-dropdown-submenu{left:0;right:auto;top:100%}.dropdown.menu.xxlarge-horizontal>li.is-dropdown-submenu-parent>a{padding-right:1.5rem;position:relative}.dropdown.menu.xxlarge-horizontal>li.is-dropdown-submenu-parent>a:after{border-color:#3f729b transparent transparent;border-style:solid;border-width:6px 6px 0;content:"";display:block;height:0;left:auto;margin-top:-3px;right:5px;width:0}.dropdown.menu.xxlarge-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.xxlarge-vertical>li.opens-left>.is-dropdown-submenu{left:auto;right:100%;top:0}.dropdown.menu.xxlarge-vertical>li.opens-right>.is-dropdown-submenu{left:100%;right:auto}.dropdown.menu.xxlarge-vertical>li>a:after{right:14px}.dropdown.menu.xxlarge-vertical>li.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.dropdown.menu.xxlarge-vertical>li.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}}.dropdown.menu.align-right .is-dropdown-submenu.first-sub{left:auto;right:0;top:100%}.is-dropdown-menu.vertical{width:100px}.is-dropdown-menu.vertical.align-right{float:right}.is-dropdown-submenu-parent{position:relative}.is-dropdown-submenu-parent a:after{left:auto;margin-top:-6px;position:absolute;right:5px;top:50%}.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu{left:auto;top:100%}.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu{left:auto;right:100%}.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu{left:100%;right:auto}.is-dropdown-submenu{background:#fefefe;border:1px solid #cacaca;display:none;left:100%;min-width:200px;position:absolute;top:0;z-index:1}.dropdown .is-dropdown-submenu a{padding:.7rem 1rem}.is-dropdown-submenu .is-dropdown-submenu-parent>a:after{right:14px}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a:after{border-color:transparent #3f729b transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:"";display:block;height:0;left:5px;right:auto;width:0}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a:after{border-color:transparent transparent transparent #3f729b;border-style:solid;border-width:6px 0 6px 6px;content:"";display:block;height:0;width:0}.is-dropdown-submenu .is-dropdown-submenu{margin-top:-1px}.is-dropdown-submenu>li{width:100%}.is-dropdown-submenu.js-dropdown-active{display:block}.is-off-canvas-open{overflow:hidden}.js-off-canvas-overlay{background:#ffffff40;height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity .5s ease,visibility .5s ease;visibility:hidden;width:100%;z-index:11}.js-off-canvas-overlay.is-visible{opacity:1;visibility:visible}.js-off-canvas-overlay.is-closable{cursor:pointer}.js-off-canvas-overlay.is-overlay-absolute{position:absolute}.js-off-canvas-overlay.is-overlay-fixed{position:fixed}.off-canvas-wrapper{overflow:hidden;position:relative}.off-canvas{backface-visibility:hidden;background:#e6e6e6;position:fixed;transition:transform .5s ease;z-index:12}[data-whatinput=mouse] .off-canvas{outline:0}.off-canvas.is-transition-push{z-index:12}.off-canvas.is-closed{visibility:hidden}.off-canvas.is-transition-overlap{z-index:13}.off-canvas.is-transition-overlap.is-open{box-shadow:0 0 10px #0a0a0ab3}.off-canvas.is-open{transform:translate(0)}.off-canvas-absolute{backface-visibility:hidden;background:#e6e6e6;position:absolute;transition:transform .5s ease;z-index:12}[data-whatinput=mouse] .off-canvas-absolute{outline:0}.off-canvas-absolute.is-transition-push{z-index:12}.off-canvas-absolute.is-closed{visibility:hidden}.off-canvas-absolute.is-transition-overlap{z-index:13}.off-canvas-absolute.is-transition-overlap.is-open{box-shadow:0 0 10px #0a0a0ab3}.off-canvas-absolute.is-open{transform:translate(0)}.position-left{height:100%;left:0;overflow-y:auto;top:0;-webkit-overflow-scrolling:touch;width:250px}.off-canvas-content .off-canvas.position-left,.position-left{transform:translate(-250px)}.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-left.has-transition-push{transform:translate(250px)}.position-left.is-transition-push{box-shadow:inset -13px 0 20px -13px #0a0a0a40}.position-right{height:100%;overflow-y:auto;right:0;top:0;-webkit-overflow-scrolling:touch;width:250px}.off-canvas-content .off-canvas.position-right,.position-right{transform:translate(250px)}.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-right.has-transition-push{transform:translate(-250px)}.position-right.is-transition-push{box-shadow:inset 13px 0 20px -13px #0a0a0a40}.position-top{left:0;overflow-x:auto;top:0;width:100%;-webkit-overflow-scrolling:touch;height:250px}.off-canvas-content .off-canvas.position-top,.position-top{transform:translateY(-250px)}.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-top.has-transition-push{transform:translateY(250px)}.position-top.is-transition-push{box-shadow:inset 0 -13px 20px -13px #0a0a0a40}.position-bottom{bottom:0;left:0;overflow-x:auto;width:100%;-webkit-overflow-scrolling:touch;height:250px}.off-canvas-content .off-canvas.position-bottom,.position-bottom{transform:translateY(250px)}.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open{transform:translate(0)}.off-canvas-content.is-open-bottom.has-transition-push{transform:translateY(-250px)}.position-bottom.is-transition-push{box-shadow:inset 0 13px 20px -13px #0a0a0a40}.off-canvas-content{backface-visibility:hidden;transform:none}.off-canvas-content.has-transition-overlap,.off-canvas-content.has-transition-push{transition:transform .5s ease}.off-canvas-content .off-canvas.is-open,.off-canvas-content.has-transition-push{transform:translate(0)}@media print,screen and (min-width:40em){.position-left.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-medium .close-button{display:none}.off-canvas-content .position-left.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-medium~.off-canvas-content{margin-left:250px}.position-right.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-medium .close-button{display:none}.off-canvas-content .position-right.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-medium~.off-canvas-content{margin-right:250px}.position-top.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-medium .close-button{display:none}.off-canvas-content .position-top.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-medium~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-medium{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-medium .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-medium{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-medium~.off-canvas-content{margin-bottom:250px}}@media print,screen and (min-width:64em){.position-left.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-large .close-button{display:none}.off-canvas-content .position-left.reveal-for-large{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-large~.off-canvas-content{margin-left:250px}.position-right.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-large .close-button{display:none}.off-canvas-content .position-right.reveal-for-large{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-large~.off-canvas-content{margin-right:250px}.position-top.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-large .close-button{display:none}.off-canvas-content .position-top.reveal-for-large{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-large~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-large{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-large .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-large{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-large~.off-canvas-content{margin-bottom:250px}}@media screen and (min-width:75em){.position-left.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-left.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-xlarge~.off-canvas-content{margin-left:250px}.position-right.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-right.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-xlarge~.off-canvas-content{margin-right:250px}.position-top.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-top.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-xlarge~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-xlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-xlarge .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-xlarge{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-xlarge~.off-canvas-content{margin-bottom:250px}}@media screen and (min-width:90em){.position-left.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-left.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-left.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-left,.position-left.reveal-for-xxlarge~.off-canvas-content{margin-left:250px}.position-right.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-right.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-right.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-right,.position-right.reveal-for-xxlarge~.off-canvas-content{margin-right:250px}.position-top.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-top.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-top.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-top,.position-top.reveal-for-xxlarge~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-xxlarge{transform:none;transition:none;visibility:visible;z-index:12}.position-bottom.reveal-for-xxlarge .close-button{display:none}.off-canvas-content .position-bottom.reveal-for-xxlarge{transform:none}.off-canvas-content.has-reveal-bottom,.position-bottom.reveal-for-xxlarge~.off-canvas-content{margin-bottom:250px}}@media print,screen and (min-width:40em){.off-canvas.in-canvas-for-medium{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-medium.position-bottom,.off-canvas.in-canvas-for-medium.position-left,.off-canvas.in-canvas-for-medium.position-right,.off-canvas.in-canvas-for-medium.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-medium .close-button{display:none}}@media print,screen and (min-width:64em){.off-canvas.in-canvas-for-large{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-large.position-bottom,.off-canvas.in-canvas-for-large.position-left,.off-canvas.in-canvas-for-large.position-right,.off-canvas.in-canvas-for-large.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-large .close-button{display:none}}@media screen and (min-width:75em){.off-canvas.in-canvas-for-xlarge{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-xlarge.position-bottom,.off-canvas.in-canvas-for-xlarge.position-left,.off-canvas.in-canvas-for-xlarge.position-right,.off-canvas.in-canvas-for-xlarge.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-xlarge .close-button{display:none}}@media screen and (min-width:90em){.off-canvas.in-canvas-for-xxlarge{background:none;height:auto;overflow:visible;position:static;transition:none;visibility:visible;width:auto}.off-canvas.in-canvas-for-xxlarge.position-bottom,.off-canvas.in-canvas-for-xxlarge.position-left,.off-canvas.in-canvas-for-xxlarge.position-right,.off-canvas.in-canvas-for-xxlarge.position-top{box-shadow:none;transform:none}.off-canvas.in-canvas-for-xxlarge .close-button{display:none}}html.is-reveal-open{overflow-y:hidden;position:fixed;width:100%}html.is-reveal-open.zf-has-scroll{overflow-y:scroll;-webkit-overflow-scrolling:touch}html.is-reveal-open body{overflow-y:hidden}.reveal-overlay{background-color:#0a0a0a73;inset:0;position:fixed;z-index:1005}.reveal,.reveal-overlay{display:none;overflow-y:auto;-webkit-overflow-scrolling:touch}.reveal{backface-visibility:hidden;background-color:#fefefe;border:1px solid #cacaca;border-radius:10px;margin-left:auto;margin-right:auto;padding:1rem;position:relative;top:100px;z-index:1006}[data-whatinput=mouse] .reveal{outline:0}@media print,screen and (min-width:40em){.reveal{min-height:0}}.reveal .column{min-width:0}.reveal>:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.reveal{max-width:80rem;width:600px}}.reveal.collapse{padding:0}@media print,screen and (min-width:40em){.reveal.tiny{max-width:80rem;width:30%}.reveal.small{max-width:80rem;width:50%}.reveal.large{max-width:80rem;width:90%}}.reveal.full{border:0;border-radius:0;height:100%;inset:0;margin-left:0;max-width:none;min-height:100%;width:100%}@media print,screen and (max-width:39.99875em){.reveal{border:0;border-radius:0;height:100%;inset:0;margin-left:0;max-width:none;min-height:100%;width:100%}}.reveal.without-overlay{position:fixed}.sticky,.sticky-container{position:relative}.sticky{transform:translateZ(0);z-index:0}.sticky.is-stuck{position:fixed;width:100%;z-index:5}.sticky.is-stuck.is-at-top{top:0}.sticky.is-stuck.is-at-bottom{bottom:0}.sticky.is-anchored{left:auto;position:relative;right:auto}.sticky.is-anchored.is-at-bottom{bottom:0}.title-bar{align-items:center;background:#3f729b;color:#fefefe;display:flex;justify-content:flex-start;padding:.5rem}.title-bar .menu-icon{margin-left:.25rem;margin-right:.25rem}.title-bar-left,.title-bar-right{flex:1 1 0px}.title-bar-right{text-align:right}.title-bar-title{display:inline-block;font-weight:700;vertical-align:middle}.top-bar{align-items:center;display:flex;justify-content:space-between;padding:.5rem}.top-bar,.top-bar ul{background-color:#fefefe}.top-bar input{margin-right:1rem;max-width:200px}.top-bar .input-group-field{margin-right:0;width:100%}.top-bar input.button{width:auto}.top-bar{flex-wrap:wrap}.top-bar .top-bar-left,.top-bar .top-bar-right{flex:0 0 100%;max-width:100%}.top-bar{flex-wrap:nowrap}.top-bar .top-bar-left{flex:1 1 auto;margin-right:auto}.top-bar .top-bar-right{flex:0 1 auto;margin-left:auto}@media print,screen and (max-width:63.99875em){.top-bar.stacked-for-medium{flex-wrap:wrap}.top-bar.stacked-for-medium .top-bar-left,.top-bar.stacked-for-medium .top-bar-right{flex:0 0 100%;max-width:100%}}@media print,screen and (max-width:74.99875em){.top-bar.stacked-for-large{flex-wrap:wrap}.top-bar.stacked-for-large .top-bar-left,.top-bar.stacked-for-large .top-bar-right{flex:0 0 100%;max-width:100%}}@media print,screen and (max-width:89.99875em){.top-bar.stacked-for-xlarge{flex-wrap:wrap}.top-bar.stacked-for-xlarge .top-bar-left,.top-bar.stacked-for-xlarge .top-bar-right{flex:0 0 100%;max-width:100%}}.top-bar.stacked-for-xxlarge{flex-wrap:wrap}.top-bar.stacked-for-xxlarge .top-bar-left,.top-bar.stacked-for-xxlarge .top-bar-right{flex:0 0 100%;max-width:100%}.top-bar-title{flex:0 0 auto;margin:.45rem 1rem 0}.top-bar-left,.top-bar-right{flex:0 0 auto}.float-left{float:left!important}.float-right{float:right!important}.float-center{display:block;margin-left:auto;margin-right:auto}.clearfix:after,.clearfix:before{content:" ";display:table;flex-basis:0;order:1}.clearfix:after{clear:both}.align-left{justify-content:flex-start}.align-right{justify-content:flex-end}.align-center{justify-content:center}.align-justify{justify-content:space-between}.align-spaced{justify-content:space-around}.align-left.vertical.menu>li>a{justify-content:flex-start}.align-right.vertical.menu>li>a{justify-content:flex-end}.align-center.vertical.menu>li>a{justify-content:center}.align-top{align-items:flex-start}.align-self-top{align-self:flex-start}.align-bottom{align-items:flex-end}.align-self-bottom{align-self:flex-end}.align-middle{align-items:center}.align-self-middle{align-self:center}.align-stretch{align-items:stretch}.align-self-stretch{align-self:stretch}.align-center-middle{align-content:center;align-items:center;justify-content:center}.small-order-1{order:1}.small-order-2{order:2}.small-order-3{order:3}.small-order-4{order:4}.small-order-5{order:5}.small-order-6{order:6}@media print,screen and (min-width:40em){.medium-order-1{order:1}.medium-order-2{order:2}.medium-order-3{order:3}.medium-order-4{order:4}.medium-order-5{order:5}.medium-order-6{order:6}}@media print,screen and (min-width:64em){.large-order-1{order:1}.large-order-2{order:2}.large-order-3{order:3}.large-order-4{order:4}.large-order-5{order:5}.large-order-6{order:6}}@media screen and (min-width:75em){.xlarge-order-1{order:1}.xlarge-order-2{order:2}.xlarge-order-3{order:3}.xlarge-order-4{order:4}.xlarge-order-5{order:5}.xlarge-order-6{order:6}}@media screen and (min-width:90em){.xxlarge-order-1{order:1}.xxlarge-order-2{order:2}.xxlarge-order-3{order:3}.xxlarge-order-4{order:4}.xxlarge-order-5{order:5}.xxlarge-order-6{order:6}}.flex-container{display:flex}.flex-child-auto{flex:1 1 auto}.flex-child-grow{flex:1 0 auto}.flex-child-shrink{flex:0 1 auto}.flex-dir-row{flex-direction:row}.flex-dir-row-reverse{flex-direction:row-reverse}.flex-dir-column{flex-direction:column}.flex-dir-column-reverse{flex-direction:column-reverse}@media print,screen and (min-width:40em){.medium-flex-container{display:flex}.medium-flex-child-auto{flex:1 1 auto}.medium-flex-child-grow{flex:1 0 auto}.medium-flex-child-shrink{flex:0 1 auto}.medium-flex-dir-row{flex-direction:row}.medium-flex-dir-row-reverse{flex-direction:row-reverse}.medium-flex-dir-column{flex-direction:column}.medium-flex-dir-column-reverse{flex-direction:column-reverse}}@media print,screen and (min-width:64em){.large-flex-container{display:flex}.large-flex-child-auto{flex:1 1 auto}.large-flex-child-grow{flex:1 0 auto}.large-flex-child-shrink{flex:0 1 auto}.large-flex-dir-row{flex-direction:row}.large-flex-dir-row-reverse{flex-direction:row-reverse}.large-flex-dir-column{flex-direction:column}.large-flex-dir-column-reverse{flex-direction:column-reverse}}@media screen and (min-width:75em){.xlarge-flex-container{display:flex}.xlarge-flex-child-auto{flex:1 1 auto}.xlarge-flex-child-grow{flex:1 0 auto}.xlarge-flex-child-shrink{flex:0 1 auto}.xlarge-flex-dir-row{flex-direction:row}.xlarge-flex-dir-row-reverse{flex-direction:row-reverse}.xlarge-flex-dir-column{flex-direction:column}.xlarge-flex-dir-column-reverse{flex-direction:column-reverse}}@media screen and (min-width:90em){.xxlarge-flex-container{display:flex}.xxlarge-flex-child-auto{flex:1 1 auto}.xxlarge-flex-child-grow{flex:1 0 auto}.xxlarge-flex-child-shrink{flex:0 1 auto}.xxlarge-flex-dir-row{flex-direction:row}.xxlarge-flex-dir-row-reverse{flex-direction:row-reverse}.xxlarge-flex-dir-column{flex-direction:column}.xxlarge-flex-dir-column-reverse{flex-direction:column-reverse}}.hide{display:none!important}.invisible{visibility:hidden}.visible{visibility:visible}@media print,screen and (max-width:39.99875em){.hide-for-small-only{display:none!important}}@media screen and (max-width:0em),screen and (min-width:40em){.show-for-small-only{display:none!important}}@media print,screen and (min-width:40em){.hide-for-medium{display:none!important}}@media screen and (max-width:39.99875em){.show-for-medium{display:none!important}}@media print,screen and (min-width:40em)and (max-width:63.99875em){.hide-for-medium-only{display:none!important}}@media screen and (max-width:39.99875em),screen and (min-width:64em){.show-for-medium-only{display:none!important}}@media print,screen and (min-width:64em){.hide-for-large{display:none!important}}@media screen and (max-width:63.99875em){.show-for-large{display:none!important}}@media print,screen and (min-width:64em)and (max-width:74.99875em){.hide-for-large-only{display:none!important}}@media screen and (max-width:63.99875em),screen and (min-width:75em){.show-for-large-only{display:none!important}}@media screen and (min-width:75em){.hide-for-xlarge{display:none!important}}@media screen and (max-width:74.99875em){.show-for-xlarge{display:none!important}}@media screen and (min-width:75em)and (max-width:89.99875em){.hide-for-xlarge-only{display:none!important}}@media screen and (max-width:74.99875em),screen and (min-width:90em){.show-for-xlarge-only{display:none!important}}@media screen and (min-width:90em){.hide-for-xxlarge{display:none!important}}@media screen and (max-width:89.99875em){.show-for-xxlarge{display:none!important}}@media screen and (min-width:90em){.hide-for-xxlarge-only{display:none!important}}@media screen and (max-width:89.99875em){.show-for-xxlarge-only{display:none!important}}.show-for-sr,.show-on-focus{height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;clip:rect(0,0,0,0)!important;border:0!important;white-space:nowrap!important}.show-on-focus:active,.show-on-focus:focus{height:auto!important;overflow:visible!important;position:static!important;width:auto!important;clip:auto!important;white-space:normal!important}.hide-for-portrait,.show-for-landscape{display:block!important}@media screen and (orientation:landscape){.hide-for-portrait,.show-for-landscape{display:block!important}}@media screen and (orientation:portrait){.hide-for-portrait,.show-for-landscape{display:none!important}}.hide-for-landscape,.show-for-portrait{display:none!important}@media screen and (orientation:landscape){.hide-for-landscape,.show-for-portrait{display:none!important}}@media screen and (orientation:portrait){.hide-for-landscape,.show-for-portrait{display:block!important}}.show-for-dark-mode{display:none}.hide-for-dark-mode{display:block}@media screen and (prefers-color-scheme:dark){.show-for-dark-mode{display:block!important}.hide-for-dark-mode{display:none!important}}.show-for-ie{display:none}@media(-ms-high-contrast:active),(-ms-high-contrast:none){.show-for-ie{display:block!important}.hide-for-ie{display:none!important}}.show-for-sticky{display:none}.is-stuck .show-for-sticky{display:block}.is-stuck .hide-for-sticky{display:none}.grey{color:#8a8a8a;font-weight:400}.txt-gray-light{color:#e6e6e6}.txt-gray-mid{color:#cacaca}.txt-gray-dark{color:#8a8a8a}.primary-color{color:#3f729b}.padding-bottom{padding-bottom:1rem}.center{text-align:center}.float-right{float:right}.full-width{width:100%}.small-text{font-size:.8rem}html{--primary-color:#3f729b;--secondary-color:#8bc34a;--success-color:#4caf50;--warning-color:#ffae00;--alert-color:#cc4b37}body{background-color:#e2e2e2}footer .copyright{padding-left:1em}.top-border{border-top:1px solid #ccc}.bottom-border{border-bottom:1px solid #ccc}.tall-4{height:4em}.pin-to-bottom{bottom:0;position:absolute;width:95%}object{height:100%;width:100%}.vertical-line{display:inline-block;height:15px;margin-right:5px}.no-margin{margin:0}.button.icon-button{align-items:center;display:flex}.dt-tooltip{display:inline-block;position:relative}.dt-action-button{background-color:#eee;color:#000;margin:0}.dt-action-button:focus,.dt-action-button:hover{background-color:#7a7a7a;color:#000}.dt-tooltip .tooltiptext{background-color:#555;border-radius:6px;bottom:130%;color:#fff;left:50%;margin-left:-75px;opacity:1;padding:5px;position:absolute;text-align:center;transition:opacity .3s;visibility:hidden;width:140px;z-index:1}.dt-tooltip .tooltiptext:after{border:5px solid transparent;border-top-color:#555;content:"";left:50%;margin-left:-5px;position:absolute;top:100%}.dt-tooltip:hover .tooltiptext{opacity:1;overflow-wrap:break-word;transition:opacity .3s;visibility:visible}a:link,a:visited:link{-webkit-tap-highlight-color:rgba(0,0,0,.3)}.top-bar{border-bottom:1px solid #e6e6e6}.top-bar,.top-bar ul{background-color:#3f729b}.top-bar a{color:#fff}.top-bar .active a{background:#224f72}.top-bar .logo{height:20px;margin-inline-end:2vw}#top-bar-menu{border:none;margin-top:0!important;padding:0 20px;z-index:999}#top-bar-menu .logo-link{padding-inline-start:0;padding:0;vertical-align:middle}#top-bar-menu .top-bar-right .dropdown.menu{justify-content:flex-end}#top-bar-menu .top-bar-right .dropdown.menu>li{margin:0 10px}@media screen and (max-width:775px){#top-bar-menu .top-bar-right .dropdown.menu li{margin-bottom:.5rem}#top-bar-menu .top-bar-right .dropdown.menu li:first-of-type{text-align:end;width:100%}}#top-bar-menu .dropdown.menu a{background-color:#3f729b}#top-bar-menu .dropdown.menu li.active>a{background:#005a87}#top-bar-menu .top-bar-left .dropdown.menu{flex-wrap:nowrap}#top-bar-menu .top-bar-left .dropdown.menu a:hover{background-color:#224f72}#top-bar-menu .top-bar-left .dropdown.menu>li.is-dropdown-submenu-parent>a:after{border-color:#fefefe transparent transparent}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:none}@media screen and (max-width:1040px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+4){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+3){display:none}}@media screen and (min-width:1041px)and (max-width:1140px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+6){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+5){display:none}}@media screen and (min-width:1141px)and (max-width:1240px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+7){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+6){display:none}}@media screen and (min-width:1241px)and (max-width:1300px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+8){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+7){display:none}}@media screen and (min-width:1301px)and (max-width:1400px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+9){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+8){display:none}}@media screen and (min-width:1401px)and (max-width:1600px){#top-bar-menu .top-bar-left .dropdown.menu>li:nth-child(n+9){display:none}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button{display:inherit}#top-bar-menu .top-bar-left .dropdown.menu #more-menu-button>ul>li:nth-child(-n+8){display:none}}#top-bar-menu a{color:#fefefe;font-weight:700;padding:1rem}#top-bar-menu .image-menu-nav img{height:24px}#top-bar-menu .image-menu-nav a{font-weight:700;padding:4px 5px;vertical-align:middle}#top-bar-menu .image-menu-nav a span{vertical-align:middle}#top-bar-menu .submenu.menu.vertical{display:none}#top-bar-menu .submenu.menu.vertical.is-dropdown-submenu.js-dropdown-active{display:block}html[dir=rtl] #top-bar-menu .dropdown.menu>li.is-dropdown-submenu-parent>a:after{left:5px;right:auto}.notifications-menu-item .notification-count{display:none;margin-left:-15px;position:relative;top:-5px;vertical-align:top}.notification-count-offcanvas{display:none;margin-left:10px;position:relative;top:0;vertical-align:middle}.release-notification-icon-link{align-items:center;display:flex;justify-content:center;padding:.5rem}.release-notification-icon-link .release-notification-icon{color:#fff;font-size:28px;line-height:1;position:relative}.release-notification-icon-link .release-notification-icon:after{background-color:#e74c3c;border-radius:50%;content:"";height:10px;position:absolute;right:-4px;top:1px;width:10px}.release-notification-icon-link:hover .release-notification-icon{color:#f0f0f0}.top-bar .is-submenu-item{background-color:#3f729b;text-align:left}.top-bar .is-submenu-item a{color:#fff;font-weight:700;vertical-align:middle}.top-bar .is-submenu-item a img{margin:0 10px 0 0;width:25px}.mobile-add-buttons{display:inline-block;margin-left:5px;position:relative;vertical-align:top}.title-bar-right{float:right;text-align:left}.title-bar-right>*{float:right;margin-left:10px}#mobile-add-new-dropdown{background-color:#3f729b;border:1px solid #999;border-radius:4px;max-width:180px;min-width:160px;padding:4px 0}#mobile-add-new-dropdown .menu.vertical,#mobile-add-new-dropdown .menu.vertical li{margin:0}#mobile-add-new-dropdown .menu.vertical li .add-new-menu-item{align-items:center;color:#fff;display:flex;font-size:14px;font-weight:700;padding:12px 16px;text-decoration:none;transition:background-color .2s}#mobile-add-new-dropdown .menu.vertical li .add-new-menu-item:hover{background-color:#4a7fa8}#mobile-add-new-dropdown .menu.vertical li .add-new-menu-item img{flex-shrink:0;height:20px;margin-right:12px;width:20px}nav.second-bar{background-color:#fff;padding:.5em;top:auto;transform:translate(0);width:100%}nav.second-bar .title{font-weight:700}nav.second-bar .breadcrumbs{margin-bottom:0}nav.second-bar{box-shadow:0 4px 4px #00000040}nav.second-bar .buttons-row{-moz-column-gap:.3rem;column-gap:.3rem;display:flex;justify-content:center}nav.second-bar .button img{height:17px;padding-right:5px}nav.second-bar .button{padding:.4em .75em}@media screen and (max-width:639px){nav.second-bar .button.follow{padding:0 .75em}nav.second-bar .button.follow .fi-eye{font-size:22px;line-height:16px}nav.second-bar .button img{padding-right:0}}nav.second-bar .button.favorite{background:none;padding:0}nav.second-bar .button.favorite .icon-star{fill:#c7c6c1;height:1.8em;width:auto}nav.second-bar .button.favorite.selected .icon-star{fill:#ffc105}nav.second-bar .dropdown.menu>li>a{padding-bottom:.4em;padding-top:.4em}nav.second-bar input{max-height:30px}nav.second-bar a,nav.second-bar button,nav.second-bar input{margin:0;vertical-align:middle}nav.second-bar a span,nav.second-bar button span,nav.second-bar input span{vertical-align:middle}.advancedSearch-count{font-size:.45em;font-weight:700;left:1.15rem;position:absolute;top:0;vertical-align:top}.off-canvas-list ul{margin-left:0}.off-canvas-list ul li a{border-bottom:0}.off-canvas-list ul .dropdown{margin-left:20px}.off-canvas-list ul .off-canvas-padding{padding:0 1rem}#off-canvas span.title{font-size:1.3rem;font-weight:800;padding:2rem 1rem 2rem 0;text-align:center}#off-canvas ul.is-at-top{padding-top:10px}#off-canvas ul.is-at-top li.nav-title div,.menu input{margin-left:1rem}.menu input{margin-right:1rem;width:80%}.center-items{align-items:center;display:flex}div.sticky-container{z-index:1}.title-bar{padding:.7rem}.title-bar .logo-link{padding-inline-start:0;vertical-align:middle}.title-bar .logo{height:20px;margin:0}.title-bar img{vertical-align:middle}.is-dropdown-submenu{z-index:5}#content #inner-content{margin-left:5px;margin-right:5px;min-height:100vh;padding:1rem 0}#content article{margin-bottom:10px}#content article header,#content article section{padding:10px}#content article footer{padding:10px;text-align:center}#content article a.button{float:left}#content article .article-header .title{text-transform:uppercase}.bordered-box{background-color:#fefefe;border:1px solid #e6e6e6;border-radius:10px;box-shadow:0 2px 4px #00000040;padding:1rem}.bordered-box table.dataTable{margin:.5em -1rem!important;width:calc(100% + 2rem)}i.large{font-size:50px;line-height:50px}i.medium{display:inline-block;font-size:25px;line-height:25px;transform:translateY(2px)}button{cursor:pointer}button.clear{background-color:#fff;border:1px solid #ccc;color:#000}img{vertical-align:inherit}.input-height,.typeahead__field .typeahead__filter input.typeahead__filter-button,.typeahead__field .typeahead__filter textarea.typeahead__filter-button .typeahead__field button.input-height,.typeahead__field .typeahead__filter textarea.typeahead__filter-button .typeahead__field button.typeahead__filter-button,.typeahead__field .typeahead__hint,.typeahead__field [contenteditable],.typeahead__field input.input-height,.typeahead__field textarea.input-height .typeahead__field .typeahead__filter button.typeahead__filter-button,.typeahead__field textarea.input-height .typeahead__field button.input-height,.typeahead__filter .typeahead__field input.typeahead__filter-button,.typeahead__filter .typeahead__field textarea.input-height .typeahead__field button.typeahead__filter-button,.typeahead__filter .typeahead__field textarea.typeahead__filter-button .typeahead__field button.input-height,.typeahead__filter .typeahead__field textarea.typeahead__filter-button .typeahead__field button.typeahead__filter-button,.typeahead__filter .typeahead__filter-button{min-height:2.5rem}.tabs-panel .outer-container{padding:0!important}.tabs a.maginifying-glass{display:block;font-size:1.5rem;line-height:1;padding:.75rem}.section-header{color:#3f729b;font-size:1.5rem}.section-subheader{font-size:14px;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active{background:#3f729b;border-color:#3f729b}button.loader:not(.disabled):before{animation-duration:1s;animation-iteration-count:infinite;animation-name:rotate;animation-timing-function:linear;border:4px solid;border-left:4px solid transparent;border-radius:50%;content:"";display:none;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);height:20px;margin-top:-11px;opacity:0;position:absolute;right:10px;top:50%;transition-duration:.5s;transition-property:opacity;width:20px}button.loader:not(.disabled):after{content:"";height:100%;transition-delay:.5s;transition-duration:.75s;transition-property:width;width:0}button.loader:not(.disabled).loading{cursor:not-allowed;padding-right:35px;pointer-events:none;position:relative}button.loader:not(.disabled).loading:not(.expand){text-align:left}button.loader:not(.disabled).loading:before{display:block;filter:progid:DXImageTransform.Microsoft.Alpha(enabled=false);opacity:1;transition-delay:.5s;transition-duration:1s}button.loader:not(.disabled).loading:after{transition-delay:0s;width:20px}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.loading-spinner.active{animation:spin 1s linear infinite;border:.25rem solid #919191;border-radius:50%;border-top-color:#000;display:inline-block;height:24px;width:24px}select.select-field{margin:0}.scrollable-typeahead .typeahead__list{max-height:300px;overflow-x:hidden;overflow-y:auto}.typeahead__container.result .typeahead__list{box-shadow:5px 6px 5px #0006}.typeahead-margin-when-active .typeahead__container.result .typeahead__result{margin-bottom:350px}.typeahead__container .typeahead__image_button{padding-bottom:3px;padding-top:3px;vertical-align:middle}.typeahead__container .typeahead__image_button img{height:20px;min-height:15px;min-width:15px;width:20px}.last-typeahead-in-section{margin-bottom:150px}.typeahead__dropdown>li>a,.typeahead__list>li>a{clear:both;color:#333;display:block;padding:.5rem .75rem;text-decoration:none}.typeahead__item .typeahead-user-row img{border-radius:3px;padding:1px;vertical-align:text-bottom;width:20px}.typeahead__label{max-width:-webkit-fill-available;max-width:-moz-available}.typeahead__label a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.avatar img{height:16px}.clearfix{clear:both}.header{position:relative;z-index:10}.profile-input{margin:0}.half-opacity{opacity:.5}.typeahead__cancel-button{padding:4px 6px!important}html[dir=rtl] .typeahead__label{margin-left:4px;margin-right:0;padding-left:0;padding-right:4px}html[dir=rtl] .typeahead__label .typeahead__cancel-button{border-left:none;border-right:1px solid #c2e0ff;margin-left:0;margin-right:4px}html[dir=rtl] .typeahead__cancel-button{left:0;right:auto}html[dir=rtl] .typeahead__container .typeahead__field .typeahead__hint,html[dir=rtl] .typeahead__container .typeahead__field .typeahead__label-container,html[dir=rtl] .typeahead__container .typeahead__field [contenteditable],html[dir=rtl] .typeahead__container .typeahead__field input,html[dir=rtl] .typeahead__container .typeahead__field textarea{padding-left:32px;padding-right:6px}html[dir=rtl] .float-right{float:left!important}html[dir=rtl] .float-left{float:right!important}html[dir=rtl] .notifications-menu-item .notification-count{left:0;margin-left:-15px;right:-15px}html[dir=rtl] .notification-count-offcanvas{left:0;margin-left:10px;right:0}html[dir=rtl] .title-bar-right{text-align:left}.empty-notification-message{font-weight:700;margin:20px}.dt-green,a.dt-green:hover{background-color:#4caf50}#content,.container-width{margin-left:auto;margin-right:auto;max-width:1440px}#notification-list .new-button,#notification-list .read-button{padding:.85em}#notification-list .unread-notification-row{background-color:#3f729b30}#notification-list .notification-group-header{background-color:#3f729b;color:#fff;font-weight:600;padding:.7rem}#notification-dropdown{background-color:unset;border:none;padding:0;width:500px}#notification-dropdown .sized-box{height:6px}#notification-dropdown .bordered-box{border-top-left-radius:0;border-top-right-radius:0;padding:1rem 0}#notification-dropdown .header{margin-bottom:1rem;padding:0 1rem}#notification-dropdown .button-group{margin-bottom:0}#notification-dropdown .button-group .button{font-size:1rem;padding:.5em 1em}#notification-dropdown #notification-list{margin:0}#notification-dropdown .notification-group-header{padding:.3rem .7rem}.new-notification-label{margin-left:5px}@media screen and (max-width:1024px){#notification-dropdown .sized-box{height:16px}}@media screen and (max-width:640px){#notification-dropdown{width:300px}#notification-dropdown .button-group .button{font-size:.75rem;padding:.75em 1em}#notification-dropdown .notification-row .cell{margin-left:.7rem;margin-right:0}#notification-dropdown #notification-list{margin-right:-1px}}.notifications-page #notification-list{margin:0 -10px}.notifications-page div.button-group{text-align:center}.notifications-page div.button-group .button{margin-right:.25rem}.help-icon{filter:invert(69%) sepia(1%) saturate(0) hue-rotate(239deg) brightness(94%) contrast(86%);height:15px}.help-button{margin-left:3px;margin-right:3px}.help-button-tile{margin-left:6px;margin-right:6px}.help-button-field{margin-left:3px;margin-right:3px}.help-section h3{font-size:1.6rem}.help-section h4{font-size:1.2rem}.help-modal-icon ul{margin-left:5%}.help-modal-icon li{list-style:none;margin-bottom:3%}.help-modal-icon img{height:40px;margin-right:5%;width:40px}div.help-more{float:right}div.help-more h5{font-size:1rem}.dropdown.menu>li.is-dropdown-submenu-parent>a.menu-white-dropdown-arrow:after{border-color:#fff transparent transparent}.dropdown.menu .is-submenu-item:hover{background-color:#3f729b;color:#fff}.dropdown.menu .is-submenu-item a:hover{color:#fff}.dropdown.menu .is-submenu-item a:hover img{filter:invert(100%) sepia(100%) saturate(6%) hue-rotate(105deg) brightness(102%) contrast(102%)}@media screen and (max-width:640px){table.js-list tbody tr:nth-child(2n){background-color:#f1f1f1;border-bottom:0}#content #inner-content{margin:0}.bordered-box.list-box{padding-left:2px;padding-right:2px}}@media screen and (min-width:640px){.left-border-grey{border-left:1px solid #e6e6e6}}.dt_caret{border:solid #000;border-width:0 2px 2px 0;display:inline-block;padding:3px}.dt_caret.down{transform:rotate(45deg);-webkit-transform:rotate(45deg)}.dt_caret.right{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.dt_caret.left{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.dt_caret.up{transform:rotate(-135deg);-webkit-transform:rotate(-135deg)}.scrolling-wrapper{overflow-x:scroll;overflow-y:hidden;white-space:nowrap}#generation_map ul{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAKAQMAAABPHKYJAAAAA1BMVEWIiIhYZW6zAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1ggGExMZBky19AAAAAtJREFUCNdjYMAEAAAUAAHlhrBKAAAAAElFTkSuQmCC) repeat-y;list-style:none;margin:0 0 0 50px;padding:0}#generation_map ul.ul-gen-0{margin-left:0}#generation_map li{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAUAQMAAACK1e4oAAAABlBMVEUAAwCIiIgd2JB2AAAAAXRSTlMAQObYZgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YIBhQIJYVaFGwAAAARSURBVAjXY2hgQIf/GTDFGgDSkwqATqpCHAAAAABJRU5ErkJggg==) no-repeat;color:#369;font-weight:700;line-height:20px;margin:0;padding:0 12px}#generation_map ul li.last{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAUAQMAAACK1e4oAAAABlBMVEUAAwCIiIgd2JB2AAAAAXRSTlMAQObYZgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YIBhQIIhs+gc8AAAAQSURBVAjXY2hgQIf/GbAAAKCTBYBUjWvCAAAAAElFTkSuQmCC) no-repeat}#generation_map .first-section{margin-top:.5em}.inactive-gray,.inactive-gray a,.not-church-gray,.not-church-gray a{color:#d3d3d3}.accordion-menu .is-accordion-submenu-parent[aria-expanded=true]>a:after{transform:none!important;transform-origin:50% 50%!important}.accordion-menu .is-accordion-submenu-parent[aria-expanded=false]>a:after{transform:rotate(90deg)!important;transform-origin:50% 50%!important}.date_range_picker{background:#fff;border:1px solid #ccc;cursor:pointer;display:inline-block;padding:5px 10px;width:250px}.date_range_picker .dt_caret{float:right;margin:5px}.daterangepicker td,.daterangepicker th{padding:0}#metrics-sidemenu ul.menu.vertical.nested{display:none}.drill_down{list-style-type:none;margin-bottom:0}.drill_down li{display:inline;margin-right:3px}.drill_down li select{width:150px}input.dt-switch[type=checkbox]{display:none;height:0;visibility:hidden;width:0}label.dt-switch{background:gray;border-radius:100px;cursor:pointer;display:inline-block;height:20px;margin:0;position:relative;text-indent:-9999px;width:41px}label.dt-switch:after{background:#fff;border-radius:90px;content:"";height:16px;left:3px;position:absolute;top:2px;transition:.3s;width:16px}input.dt-switch:checked+label{background:#3f729b}input.dt-switch:checked+label:after{left:calc(100% - 3px);transform:translate(-100%)}label.dt-switch:active:after{width:20px}.ul-no-bullets{list-style-type:none;margin:0}#user_modal_content .bordered-box{margin-bottom:20px}#user_modal_content #hero_stats .bordered-box{flex-basis:19%}#user_modal_content .user_modal_column{flex-basis:50%}@media screen and (max-width:640px){#user_modal_content #hero_stats .bordered-box{flex-grow:1;margin:5px}#user_modal_content #hero_stats{margin-bottom:20px}#user_modal_content .user_modal_column{flex-basis:100%;padding:0!important}}.template-settings #multiplier .section-subheader img{height:15px}.template-settings #multiplier .section-subheader{margin-bottom:4px}.template-settings #multiplier dt-location,.template-settings #multiplier dt-location-map{display:block;margin-bottom:2rem}.template-settings #multiplier .settings-user-languages-multiselect{display:block;--success-color:var(--primary-color);margin-bottom:2rem}.template-settings #multiplier .settings-people-groups-connection{display:block}.template-settings #apps{overflow-x:auto;-webkit-overflow-scrolling:touch}.template-settings #apps .form-table{max-width:100%;width:100%}.template-settings #apps .form-table tbody td{vertical-align:middle}.template-settings #apps .form-table tbody td:nth-child(3),.template-settings #apps .form-table tbody td:nth-child(4),.template-settings #apps .form-table thead td:nth-child(3),.template-settings #apps .form-table thead td:nth-child(4){text-align:center}.template-settings #apps .form-table tbody td:nth-child(3) .app-copy,.template-settings #apps .form-table tbody td:nth-child(3) .app-link{align-items:center;box-sizing:border-box;display:flex;height:2.5rem;justify-content:center;line-height:1;margin-inline:auto;margin-bottom:.35rem;min-height:2.5rem;min-width:2.5rem;padding:0;width:2.5rem}.template-settings #apps .form-table tbody td:nth-child(3) .app-copy:last-child,.template-settings #apps .form-table tbody td:nth-child(3) .app-link:last-child{margin-bottom:0}.template-settings #apps .form-table tbody td:nth-child(4) dt-toggle.settings-app-toggle{display:block;margin-inline:auto;max-width:100%;width:-moz-fit-content;width:fit-content}.template-settings #apps .form-table tbody td dt-toggle.settings-app-toggle::part(label-container){display:none}.template-settings #apps .form-table tbody td dt-toggle.settings-app-toggle::part(root){margin-bottom:0}.template-settings #notifications{overflow-x:auto;-webkit-overflow-scrolling:touch}.template-settings #notifications .form-table{max-width:100%;width:100%}.template-settings #notifications .form-table tbody td{vertical-align:middle}.template-settings #notifications .form-table tbody td:not(:first-child),.template-settings #notifications .form-table thead td:not(:first-child){text-align:center;white-space:nowrap;width:1%}.template-settings #notifications .form-table thead td:first-child{text-align:start}.template-settings #notifications .form-table tbody td:not(:first-child) dt-toggle{display:block;margin-inline:auto;max-width:100%;width:-moz-fit-content;width:fit-content}.template-settings #notifications .form-table tbody td:first-child{word-break:break-word}.template-settings #notifications .form-table tbody td dt-toggle.settings-notification-toggle:not(.settings-follow-all-toggle)::part(label-container){display:none}.template-settings #notifications .form-table tbody td dt-toggle.settings-notification-toggle:not(.settings-follow-all-toggle)::part(root){margin-bottom:0}.template-settings #notifications .settings-follow-all-toggle{margin-top:.5rem}.dt-status-square{border-radius:2px;display:inline-block;height:13px;width:13px}img.dt-icon{height:15px;width:15px}i.dt-icon,img.dt-icon{filter:invert(18%) sepia(0) saturate(19%) hue-rotate(170deg) brightness(108%) contrast(98%)}i.dt-icon{font-size:15px}i.dt-blue-icon,img.dt-blue-icon{filter:invert(41%) sepia(42%) saturate(518%) hue-rotate(164deg) brightness(94%) contrast(100%)}i.dt-white-icon,img.dt-white-icon{filter:invert(100%) sepia(100%) saturate(6%) hue-rotate(105deg) brightness(102%) contrast(102%)}i.dt-green-icon,img.dt-green-icon{filter:invert(52%) sepia(77%) saturate(383%) hue-rotate(73deg) brightness(98%) contrast(83%)}i.dt-red-icon,img.dt-red-icon{filter:invert(23%) sepia(34%) saturate(4972%) hue-rotate(343deg) brightness(121%) contrast(92%)}i.dt-black-icon,img.dt-black-icon{filter:invert(0) sepia(0) saturate(17%) hue-rotate(193deg) brightness(99%) contrast(101%)}.dt-metrics-plus-count{font-size:12px;font-weight:700;vertical-align:text-bottom}.dt-metrics-node-icon-small{font-size:15px;max-height:15px;max-width:15px;min-height:15px;min-width:15px}.error-text{color:red}.template-new-post .type-options{display:flex;flex-wrap:wrap;margin-bottom:15px}.template-new-post .type-option.selected .type-option-border,.template-new-post .type-option:hover .type-option-border{background-color:#ecf5fc;border:1px solid #c2e0ff;border-radius:15px}.template-new-post .type-option{display:flex;flex-basis:25%;padding-right:10px}.template-new-post .type-option .type-option-border{border:1px solid #c2e0ff;border-radius:15px;padding:5px 10px;width:100%}.template-new-post .type-option input{align-self:center;margin-bottom:0;margin-right:5px}.template-new-post .type-option .type-option-title{color:#3f729b;font-size:larger}.template-new-post .type-option .type-option-rows{display:inline-block}.template-new-post .type-option .type-option-rows div{display:block;margin-bottom:5px}.template-new-post .error-text{text-align:center}@media screen and (max-width:640px){.template-new-post .type-option{flex-basis:100%;margin-bottom:1.25em}}#record_history_activities{max-height:500px;min-height:500px;overflow-y:auto;padding-right:20px}.record-history-activity-block{border:1px solid #e8e8e8;border-radius:5px;margin-bottom:10px;max-height:70px;min-height:70px;padding:10px}.record-history-activity-block .record-history-activity-block-body{font-family:Arial,Helvetica,sans-serif}.record-history-activity-block .record-history-activity-block-body .record-history-activity-heading{font-size:14px;font-weight:700}.record-history-activity-block .record-history-activity-block-body .record-history-activity-gravatar{align-items:center;display:flex}.record-history-activity-block .record-history-activity-block-body .record-history-activity-gravatar img{margin-right:10px}.record-history-activity-block .record-history-activity-block-body .record-history-activity-owner{font-size:13px;font-weight:700}.record-history-activity-block .record-history-activity-block-body .record-history-activity-date{color:#989898;font-size:13px;font-weight:400}.record-history-activity-block:hover{border:1px solid #000;color:#989898;cursor:pointer}.advanced-search-modal-form table tbody,.advanced-search-modal-form table tbody tr{border:none}.advanced-search-modal-form table tbody tr td{vertical-align:middle}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:450px}.advanced-search-modal-form-button{max-height:40px;max-width:40px;min-height:40px;min-width:40px;padding:10px 5px 5px}.advanced-search-modal-form-button img{max-height:20px;max-width:20px;min-height:20px;min-width:20px}.advanced-search-modal-results-div{display:none}.advanced-search-modal-results-div table,.advanced-search-modal-results-div table tbody,.advanced-search-modal-results-div table tbody tr{border:none}.advanced-search-modal-results-div-col-results-list{max-width:450px;min-width:450px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:150px;min-width:150px;alignment:right;vertical-align:top}.advanced-search-modal-results-div-col-post-type label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results{height:400px;overflow-x:hidden;overflow-y:scroll;text-align:center}.advanced-search-modal-results-table,.advanced-search-modal-results-table tbody{border:none}.advanced-search-modal-results-table tbody tr{background:#fff;cursor:pointer;padding:0}.advanced-search-modal-results-table tbody tr:hover{background-color:#f5f5f5}.advanced-search-modal-results-table-section-head-options{background-color:#f5f5f5;cursor:default;padding:10px;text-align:left}.advanced-search-modal-results-table-section-head-options a{margin:0;max-height:20px;min-height:20px;padding:2px 5px}.advanced-search-modal-results-table-section-head-post-type{background-color:#f5f5f5;cursor:default;text-align:right}.advanced-search-modal-results-table-col-hits{min-width:250px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:none}.advanced-search-modal-results-post-types-view-at-side{display:inline}@media screen and (max-width:840px){.advanced-search-modal-form td{padding:1px}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-results-div td{padding:4px}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:250px}.advanced-search-modal-results-div-col-results-list{max-width:300px;min-width:300px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:0;min-width:0}.advanced-search-modal-results-table-col-hits{min-width:250px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:inline}.advanced-search-modal-results-post-types-view-at-top label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button{max-width:345px;min-width:345px}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button img{float:right;padding:5px 5px 2px}.advanced-search-modal-results-post-types-view-at-side,.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-content{display:none}}@media screen and (max-width:375px){.advanced-search-modal-form td{padding:1px}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-results-div td{padding:4px}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:150px}.advanced-search-modal-results-div-col-results-list{max-width:250px;min-width:250px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:0;min-width:0}.advanced-search-modal-results-table-col-hits{min-width:200px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:inline}.advanced-search-modal-results-post-types-view-at-top label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button{max-width:300px;min-width:300px}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button img{float:right;padding:5px 5px 2px}.advanced-search-modal-results-post-types-view-at-side,.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-content{display:none}}@media screen and (max-width:340px){.advanced-search-modal-form td{padding:1px}.advanced-search-modal-form a,.advanced-search-modal-form input{margin-bottom:0}.advanced-search-modal-results-div td{padding:4px}.advanced-search-modal-form-input{display:inline-block;margin-right:0;min-width:150px}.advanced-search-modal-results-div-col-results-list{max-width:290px;min-width:290px;vertical-align:top}.advanced-search-modal-results-div-col-post-type{max-width:0;min-width:0}.advanced-search-modal-results-table-col-hits{min-width:190px;text-align:left}.advanced-search-modal-results-table-col-hits span{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-table-col-hits-type{min-width:50px;text-align:right}.advanced-search-modal-results-post-types-view-at-top{display:inline}.advanced-search-modal-results-post-types-view-at-top label{color:#4a4a4a;font-size:10pt}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button{max-width:270px;min-width:270px}.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-button img{float:right;padding:5px 5px 2px}.advanced-search-modal-results-post-types-view-at-side,.advanced-search-modal-results-post-types-view-at-top .advanced-search-modal-results-post-types-view-at-top-collapsible-content{display:none}}#release-modal p img{display:block;margin:auto}#release-modal{outline:transparent}#release-modal .release-banner{background:linear-gradient(0deg,#79a2c2,#3e729a);border-bottom:1px solid #cacaca;color:#fff;display:block;left:0;position:absolute;top:0;width:100%}#release-modal .release-banner-text{margin:8px}#release-modal #release-modal-content{margin-top:75px}#release-modal .white-button{color:#f4f4f4}.dt-tab-wrapper{border-bottom:1px solid #d3d3d3}.dt-tab{background-color:#fff;border:1px solid #d3d3d3;line-height:1.71428571;padding:5px 10px}.dt-tab:hover{background-color:#d3d3d3}.dt-tab-active{border-bottom:1px solid #fff;border-top:1px solid gray}.dt-tab-active:hover{background-color:#fff}.dt-tab-content{margin:20px 10px 0}.dt-tab-content-heading{font-weight:bolder}.dt-hide-content{display:none}.side-menu-item-highlight{font-weight:700}.communication-channel-error{color:red;font-style:italic;margin:-12px 0 12px}#form_fields_records{overflow-x:auto!important}#form_fields_records .form-fields-record{display:flex}#form_fields_records .record-divider{background-color:#ecf5fc;display:none;margin:3px -15px 15px;text-align:center}#form_fields_records .record-divider span{margin:0;padding:0}#form_fields_records .record-removal-button{margin:5px;min-width:25px!important}#form_fields_records .landscape-record-removal-button{display:block}#form_fields_records .landscape-record-removal-button .record-removal-button{margin:10px 0 0}#form_fields_records .form-field{flex-basis:200px;flex-grow:0;flex-shrink:0;margin-inline-end:10px}#form_fields_records .form-fields-record-subsequent .field-value-copy-controls,#form_fields_records .form-fields-record-subsequent .help-text,#form_fields_records .form-fields-record-subsequent .section-subheader{display:none!important}#form_fields_records .dt_location_grid .typeahead__container button{overflow:hidden;white-space:nowrap;width:65px}@media only screen and (max-width:782px){#form_fields_records .form-fields-record{flex-direction:column}#form_fields_records .form-field{flex-basis:50px}#form_fields_records .record-divider{display:block}#form_fields_records .landscape-record-removal-button{display:none}#form_fields_records .form-fields-record-subsequent .help-text,#form_fields_records .form-fields-record-subsequent .section-subheader{display:block!important}#form_fields_records .form-fields-record-subsequent .field-value-copy-controls{display:none!important}#form_fields_records .dt_location_grid .typeahead__container button{width:auto}}.button.select-button{border-radius:5px;margin-bottom:5px;margin-right:5px}.button.select-button:hover{background-color:#4caf50;color:#fff;opacity:.5}.button.select-button.empty-select-button,.button.select-button.empty-select-button:focus,.button.select-button[disabled]{background-color:#eee;color:#000}.button.select-button.selected-select-button,.button.select-button.selected-select-button:focus{background-color:#4caf50;color:#fff}.dt_multi_select .dt-icon{filter:none;margin-right:5px}.submitting-select-button{opacity:.5}.button.clear-date-button{background:#eee;border:1px solid #cacaca;border-left:0;color:#cc4b37}.button.clear-date-button:hover{background-color:#cc4b37;color:#fefefe}html[dir=rtl] .button.clear-date-button{border:1px solid #cacaca;border-right:0}.button.delete-button-style{background:#eee;border:1px solid #cacaca;border-left:0;border-radius:0;color:#cc4b37}.button.delete-button-style:hover{background-color:#cc4b37;color:#fefefe}html[dir=rtl] .button.delete-button-style{border:1px solid #cacaca;border-radius:0;border-right:0}.item-details-header{font-size:1.7rem}.item-details-header-row{margin-bottom:15px}.item-details-header-row .button{padding:.45em 1em}.item-details-header-row .label{font-size:.9rem}.contact-quick-button-number{background-color:#3f729b;border-radius:20px;color:#fff;font-size:10px;margin-left:3px;padding:2px 4px;position:absolute;top:0}.contact-quick-buttons{display:flex;flex-wrap:wrap;justify-content:center;width:100%}.contact-quick-buttons img{height:20px;width:20px}.contact-quick-button{flex:0 1 100px;margin:5px 0 10px;position:relative;width:-moz-min-content;width:min-content}.contact-quick-button p{font-size:12px;margin-bottom:0;word-spacing:100vw}.quick-action-menu a{vertical-align:middle}.quick-action-menu a img{height:20px;width:20px}#comment-activity-section{scroll-margin-top:60px;scroll-snap-margin-top:60px}#comment-activity-section .button.select-button:hover,#comment-activity-section .selected-select-button,#comment-activity-section .selected-select-button :focus{background-color:#3f729b}#comment-activity-section li{list-style-type:none}#comment-activity-section .tabs-title{margin-right:10px}#comment-activity-section .tabs-title input{margin:0}#comment-activity-section .tabs-title button{color:#3f729b;font-size:12px}#comment-activity-section .tabs-content{border:none}#comment-activity-section p{line-height:1.4}#comment-activity-section .gravatar{align-self:center;display:flex}#comment-activity-section .gravatar img{height:16px}#comment-activity-section .activity-block .comment-header{align-items:baseline;display:flex;grid-gap:5px}#comment-activity-section #add-comment-button{height:3rem;margin-bottom:0}#comment-activity-section #add-comment-button-container{display:flex;flex-direction:row;justify-content:flex-end}#comment-activity-section .comment-bubble{word-wrap:break-word;padding-bottom:2px}#comment-activity-section .comment-bubble .comment-text{min-height:1em}#comment-activity-section .comment-bubble .comment-text ul li{list-style:disc!important}#comment-activity-section .comment-bubble .comment-text ol br,#comment-activity-section .comment-bubble .comment-text ul br{display:none}#comment-activity-section .emoji{height:1.4rem;width:1.4rem}#comment-activity-section .edit-comment-controls a{font-size:12px}#comment-activity-section .edit-comment-controls img{height:10px}#comment-activity-section .edit-comment-controls object path{fill:red}#comment-activity-section .comment-reactions{display:flex;flex-wrap:wrap}#comment-activity-section .comment-reaction,#comment-activity-section .reactions__button{align-items:center;background-color:#f8f8f8;border:1px solid transparent;border-radius:100px;cursor:pointer;display:flex;margin-right:4px;margin-top:4px;padding:.1rem .5rem}#comment-activity-section .comment-reaction:hover,#comment-activity-section .reactions__button:hover{border-color:#8a8a8a}#comment-activity-section .comment-reaction{align-items:center;background-color:#f8f8f8;border:1px solid transparent;border-radius:100px;cursor:pointer;display:flex;font-size:.9rem;height:1.6rem;line-height:.9rem;padding:.1rem .5rem}#comment-activity-section .comment-reaction *{pointer-events:none}#comment-activity-section .comment-reaction .emoji{height:1rem;width:1rem}#comment-activity-section .comment-reaction span+span{font-size:.8rem;padding-left:4px}#comment-activity-section .comment-reaction[data-own-reaction=true]{background-color:#def1ff;border-color:#3f729b}#comment-activity-section .comment-reaction[data-own-reaction=true]:hover{border-color:#3f729b}#comment-activity-section .comment-reaction:active{transform:scale(.9)}#comment-activity-section .reaction-controls{align-items:center;display:flex;position:relative}#comment-activity-section .add-reaction-svg{display:flex;position:relative}#comment-activity-section .add-reaction-svg:before{background-color:#fff;border-radius:100px;content:"+";font-size:.8rem;font-weight:600;line-height:.8rem;padding:0 .1rem;pointer-events:none;position:absolute;right:-7px;text-align:center;top:3px}#comment-activity-section .reactions__button{color:#8a8a8a;height:100%;padding-right:.7rem}#comment-activity-section .reactions__button[open]:before{background:transparent;content:" ";cursor:default;display:block;inset:0;position:fixed;z-index:8}#comment-activity-section .reactions__dropdown{border-radius:6px;bottom:35px;box-shadow:0 8px 24px #969ea633;left:8px;transform:translate(-20px,5px);width:215px;z-index:9}#comment-activity-section .reactions__dropdown:after{border:7px solid transparent;border-top-color:#fff;bottom:-14px;content:"";left:20px;position:absolute}#comment-activity-section .reactions__dropdown:before{border:8px solid transparent;border-top-color:#cacaca;bottom:-16px;content:"";left:19px;position:absolute}#comment-activity-section .add-reaction{margin:0 .2rem}#comment-activity-section .add-reaction:hover{transform:scale(1.2);transition:all .1s ease}#comment-activity-section .comment-controls{display:flex;flex-wrap:wrap;justify-content:space-between}#comment-activity-section .comment-controls>audio{width:100%}#comment-activity-section .edit-comment-controls{margin-right:10px;margin-top:4px}#comment-activity-section .comment-bubble,#comment-activity-section .comment-controls{margin:0 0 0 2em;padding:0 0 0 15px;text-align:left}#comment-activity-section html[dir=rtl] .comment-bubble,#comment-activity-section html[dir=rtl] .comment-controls{margin:0 2em 0 0;padding:0 15px 0 0;text-align:right}#comment-activity-section .comment-date{font-size:12px;margin-right:20px}#comment-activity-section .translation-bubble{border:0;border-left:2px solid #8a8a8a;margin:0 0 0 2em;padding-left:1em}#comment-activity-section .translate-button{font-size:.85em;margin:0 0 0 2em;padding:0 0 0 15px}#comment-activity-section html[dir=rtl] .translation-bubble{border:0;border-right:2px solid #8a8a8a;margin:0 2em 0 0;padding-right:1em}#comment-activity-section html[dir=rtl] .translate-button{margin:0 2em 0 0;padding:0 15px 0 0}#comment-activity-section .activity-block{margin-top:15px}#comment-activity-section .activity-bubble{word-wrap:break-word;border-inline-start:3px solid #dcdcdc;color:gray;font-style:italic;margin:0;margin-inline-start:2em;padding-bottom:2px;padding-inline-start:15px}#comment-activity-section .revert-activity{float:right}#comment-activity-section .revert-arrow-img{height:17px;margin-right:15px;padding-top:2px}#comment-activity-section .mentions-input-box textarea.loading-gif{background:url(data:image/gif;base64,R0lGODlhEAAQAPYAAP///wAAANTU1JSUlGBgYEBAQERERG5ubqKiotzc3KSkpCQkJCgoKDAwMDY2Nj4+Pmpqarq6uhwcHHJycuzs7O7u7sLCwoqKilBQUF5eXr6+vtDQ0Do6OhYWFoyMjKqqqlxcXHx8fOLi4oaGhg4ODmhoaJycnGZmZra2tkZGRgoKCrCwsJaWlhgYGAYGBujo6PT09Hh4eISEhPb29oKCgqioqPr6+vz8/MDAwMrKyvj4+NbW1q6urvDw8NLS0uTk5N7e3s7OzsbGxry8vODg4NjY2PLy8tra2np6erS0tLKyskxMTFJSUlpaWmJiYkJCQjw8PMTExHZ2djIyMurq6ioqKo6OjlhYWCwsLB4eHqCgoE5OThISEoiIiGRkZDQ0NMjIyMzMzObm5ri4uH5+fpKSkp6enlZWVpCQkEpKSkhISCIiIqamphAQEAwMDKysrAQEBJqamiYmJhQUFDg4OHR0dC4uLggICHBwcCAgIFRUVGxsbICAgAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAAHjYAAgoOEhYUbIykthoUIHCQqLoI2OjeFCgsdJSsvgjcwPTaDAgYSHoY2FBSWAAMLE4wAPT89ggQMEbEzQD+CBQ0UsQA7RYIGDhWxN0E+ggcPFrEUQjuCCAYXsT5DRIIJEBgfhjsrFkaDERkgJhswMwk4CDzdhBohJwcxNB4sPAmMIlCwkOGhRo5gwhIGAgAh+QQJCgAAACwAAAAAEAAQAAAHjIAAgoOEhYU7A1dYDFtdG4YAPBhVC1ktXCRfJoVKT1NIERRUSl4qXIRHBFCbhTKFCgYjkII3g0hLUbMAOjaCBEw9ukZGgidNxLMUFYIXTkGzOmLLAEkQCLNUQMEAPxdSGoYvAkS9gjkyNEkJOjovRWAb04NBJlYsWh9KQ2FUkFQ5SWqsEJIAhq6DAAIBACH5BAkKAAAALAAAAAAQABAAAAeJgACCg4SFhQkKE2kGXiwChgBDB0sGDw4NDGpshTheZ2hRFRVDUmsMCIMiZE48hmgtUBuCYxBmkAAQbV2CLBM+t0puaoIySDC3VC4tgh40M7eFNRdH0IRgZUO3NjqDFB9mv4U6Pc+DRzUfQVQ3NzAULxU2hUBDKENCQTtAL9yGRgkbcvggEq9atUAAIfkECQoAAAAsAAAAABAAEAAAB4+AAIKDhIWFPygeEE4hbEeGADkXBycZZ1tqTkqFQSNIbBtGPUJdD088g1QmMjiGZl9MO4I5ViiQAEgMA4JKLAm3EWtXgmxmOrcUElWCb2zHkFQdcoIWPGK3Sm1LgkcoPrdOKiOCRmA4IpBwDUGDL2A5IjCCN/QAcYUURQIJIlQ9MzZu6aAgRgwFGAFvKRwUCAAh+QQJCgAAACwAAAAAEAAQAAAHjIAAgoOEhYUUYW9lHiYRP4YACStxZRc0SBMyFoVEPAoWQDMzAgolEBqDRjg8O4ZKIBNAgkBjG5AAZVtsgj44VLdCanWCYUI3txUPS7xBx5AVDgazAjC3Q3ZeghUJv5B1cgOCNmI/1YUeWSkCgzNUFDODKydzCwqFNkYwOoIubnQIt244MzDC1q2DggIBACH5BAkKAAAALAAAAAAQABAAAAeJgACCg4SFhTBAOSgrEUEUhgBUQThjSh8IcQo+hRUbYEdUNjoiGlZWQYM2QD4vhkI0ZWKCPQmtkG9SEYJURDOQAD4HaLuyv0ZeB4IVj8ZNJ4IwRje/QkxkgjYz05BdamyDN9uFJg9OR4YEK1RUYzFTT0qGdnduXC1Zchg8kEEjaQsMzpTZ8avgoEAAIfkECQoAAAAsAAAAABAAEAAAB4iAAIKDhIWFNz0/Oz47IjCGADpURAkCQUI4USKFNhUvFTMANxU7KElAhDA9OoZHH0oVgjczrJBRZkGyNpCCRCw8vIUzHmXBhDM0HoIGLsCQAjEmgjIqXrxaBxGCGw5cF4Y8TnybglprLXhjFBUWVnpeOIUIT3lydg4PantDz2UZDwYOIEhgzFggACH5BAkKAAAALAAAAAAQABAAAAeLgACCg4SFhjc6RhUVRjaGgzYzRhRiREQ9hSaGOhRFOxSDQQ0uj1RBPjOCIypOjwAJFkSCSyQrrhRDOYILXFSuNkpjggwtvo86H7YAZ1korkRaEYJlC3WuESxBggJLWHGGFhcIxgBvUHQyUT1GQWwhFxuFKyBPakxNXgceYY9HCDEZTlxA8cOVwUGBAAA7AAAAAAAAAAAA) no-repeat 99% 6px}#comment-activity-section .mentions-input-box .mentions strong span{font-weight:300}#comment-activity-section #add-comment-section{border:1px solid #dcdcdc;border-radius:3px;margin:0 0 1.06667rem}#comment-activity-section #add-comment-section select,#comment-activity-section #add-comment-section textarea{border:none;margin-bottom:0}#comment-activity-section #add-comment-section select{box-shadow:none}#comment-activity-section #add-comment-section .section-subheader{padding-left:.5rem;padding-right:.15rem;padding-top:.53333rem}#comment-activity-section .audio-comment{margin:10px 0;width:100%}#comment-activity-section .image-comment{border-radius:25px;margin:10px 0;max-height:400px}#comment-activity-section .image-comment-btn,#comment-activity-section .voice-record-btn{align-items:center;background:transparent;border:none;border-radius:6px;color:#667;cursor:pointer;display:flex;flex-shrink:0;height:44px;justify-content:center;margin-right:10px;transition:all .2s ease;width:44px}#comment-activity-section .image-comment-btn:hover,#comment-activity-section .voice-record-btn:hover{background:#f0f0f0;border:1px solid #ddd}#comment-activity-section .image-comment-btn i,#comment-activity-section .voice-record-btn i{font-size:24px}#comment-activity-section .voice-record-btn.recording{animation:pulse 1.5s infinite;background:#f44;border:1px solid #f44;color:#fff}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}#comment-activity-section .audio-recording-controls{background:linear-gradient(135deg,#f8f9fa,#e9ecef);border:1px solid #dee2e6;border-radius:12px;box-shadow:0 4px 12px #0000001a;margin:20px 0;max-height:0;opacity:0;overflow:hidden;padding:25px;transition:all .6s ease-in-out}#comment-activity-section .audio-recording-controls.show{margin:20px 0;max-height:600px;opacity:1}#comment-activity-section .audio-recording-controls.hide{margin:0;max-height:0;opacity:0;padding:0 25px}#comment-activity-section .recording-header{margin-bottom:20px}#comment-activity-section .recording-status{align-items:center;display:flex;justify-content:space-between;margin-bottom:15px}#comment-activity-section .recording-timer{background:#fffc;border:1px solid #dee2e6;border-radius:6px;color:#495057;font-family:Courier New,monospace;font-size:1.4em;font-weight:700;padding:8px 12px}#comment-activity-section .audio-visualization-container{background:#fff;border:1px solid #dee2e6;border-radius:8px;box-shadow:inset 0 2px 4px #0000000d;margin-bottom:20px;padding:20px;position:relative}#comment-activity-section #audio-visualizer{background:#f8f9fa;border-radius:4px;height:80px;width:100%}#comment-activity-section .recording-controls{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}#comment-activity-section .recording-btn{align-items:center;border-radius:8px;display:flex;font-weight:500;gap:8px;justify-content:center;min-width:140px;padding:12px 20px;transition:all .2s ease}#comment-activity-section .recording-btn:hover{box-shadow:0 4px 8px #00000026;transform:translateY(-1px)}#comment-activity-section .start-btn{background:#00897b;border:1px solid #00897b;color:#fff}#comment-activity-section .start-btn:hover{background:#218838;border-color:#1e7e34}#comment-activity-section .stop-btn{background:#dc3545;border:1px solid #dc3545;color:#fff}#comment-activity-section .stop-btn:hover{background:#c82333;border-color:#bd2130}#comment-activity-section .play-btn{background:#007bff;border:1px solid #007bff;color:#fff}#comment-activity-section .play-btn:hover{background:#0056b3;border-color:#004085}#comment-activity-section .save-btn{background:#00897b;border:1px solid #00897b;color:#fff}#comment-activity-section .save-btn:hover{background:#218838;border-color:#1e7e34}#comment-activity-section .save-btn-success{background:#28a745;border:1px solid #28a745;color:#fff}#comment-activity-section .save-btn-success:hover{background:#218838;border-color:#1e7e34}#comment-activity-section .cancel-btn{background:#6c757d;border:1px solid #6c757d;color:#fff}#comment-activity-section .cancel-btn:hover{background:#5a6268;border-color:#545b62}#comment-activity-section .audio-preview-container{background:#fff;border:1px solid #dee2e6;border-radius:8px;box-shadow:inset 0 2px 4px #0000000d;margin-bottom:20px;padding:20px;position:relative}#comment-activity-section #recording-preview{height:40px;width:100%}@media(max-width:768px){#comment-activity-section .voice-record-btn{height:40px;margin-right:8px;width:40px}#comment-activity-section .voice-record-btn i{font-size:20px}#comment-activity-section .audio-recording-controls{margin:15px 0;padding:20px}#comment-activity-section .recording-controls{flex-direction:column}#comment-activity-section .recording-btn{min-width:auto;width:100%}#comment-activity-section .audio-preview-container,#comment-activity-section .audio-visualization-container{padding:15px}#comment-activity-section #audio-visualizer{height:60px}}#comment-activity-section .upload-error-message{animation:slideDown .3s ease-out;margin-top:15px}#comment-activity-section .upload-error-message .callout{align-items:flex-start;border-radius:6px;display:flex;font-size:14px;gap:8px;line-height:1.4;padding:12px 16px;word-wrap:break-word;-webkit-hyphens:auto;hyphens:auto;overflow-wrap:break-word}#comment-activity-section .upload-error-message .callout i{flex-shrink:0;font-size:18px;margin-top:2px}#comment-activity-section .upload-error-message .callout .error-text{flex:1;min-width:0;word-wrap:break-word;-webkit-hyphens:auto;hyphens:auto;overflow-wrap:break-word;white-space:pre-wrap}#comment-activity-section .upload-error-message .callout.alert{background-color:#f8d7da;border:1px solid #f5c6cb;color:#721c24}#comment-activity-section .upload-error-message .callout.alert i{color:#dc3545}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.display-fields ul{list-style-type:none;margin-left:0}.display-fields img{height:15px}#details-tile .detail-snippet-row{display:flex;flex-wrap:wrap}#details-tile .detail-snippet{display:none;margin-bottom:5px;overflow:hidden;padding-right:15px;text-overflow:ellipsis;white-space:nowrap}#details-tile .detail-snippet img{height:15px;margin-right:3px;vertical-align:middle;width:15px}#details-tile .detail-snippet .snippet-field-name{font-size:small}@media screen and (max-width:640px){#details-tile .detail-snippet{max-width:100%}}#details-tile .phone-open-with-container{background:#fefefe;border:1px solid #cacaca;border-radius:5px;padding:.5em}#details-tile .phone-open-with-container ul{margin:0}#details-tile .phone-open-with-container ul li{list-style:none}html[dir=rtl] .input-group-field{text-align:right}.group-progress-button-wrapper{flex:1 0 80px;text-align:center}.group-progress-button{background-color:#3f729b;border-radius:5px;height:60px;opacity:.5;padding:10px;text-align:center;width:65px}.members-section{border:1px solid #ccc}.members-section #empty-members-list-message{padding:10px}.members-section .member-row{display:flex;padding:10px}.members-section .member-row:hover{background-color:#cccccc80}.members-section .member-row .member-row-actions{color:gray;margin:0;padding:0 5px}.members-section .member-row i{padding:0 2px}.members-section .member-row .dt-icon{margin-right:5px;vertical-align:text-top}.members-header button{border:1px solid #ccc;border-bottom:2px solid #fff;height:36px;margin-bottom:-1px;padding:5px 10px;vertical-align:bottom;width:-moz-max-content;width:max-content}.members-header button img{margin-left:2px}.detail-notification-box{border:none;color:#fff;text-align:center}.detail-notification-box h4{font-weight:700}.detail-notification-box img{margin:0 10px}.accept-contact .bordered-box{background-color:#3f729b}.accept-contact .bordered-box .accept-button{background-color:#4caf50}.accept-contact .bordered-box .decline-button{background-color:#f43636}.accept-contact .bordered-box .button{margin:0 10px}select.color-select{border-radius:10px;color:#fff;font-weight:700}select.color-select option{background-color:#fff;color:#000}select.color-select{background-image:url("data:image/svg+xml;utf8,");text-shadow:rgba(0,0,0,.45) 0 0 6px}.bordered-box .grid-margin-y .cell{margin-block-end:.66rem;margin-block-start:0}.bordered-box .section-header{display:flex}.bordered-box .section-chevron{margin-inline-end:0;margin-inline-start:auto}.bordered-box .section-chevron img{vertical-align:middle;width:20px}.bordered-box .chevron_down{display:none}.bordered-box .section-body{display:flex;flex-direction:column}.bordered-box.collapsed .chevron_up{display:none}.bordered-box.collapsed .chevron_down{display:block}.bordered-box.collapsed .section-body{display:none}.single-template .section-body{gap:.8rem}.hidden-grid-item{display:none}.typeahead__query{z-index:1!important}.assigned-to-row{align-items:center;display:flex;flex-wrap:wrap}.assigned-to-row .status-square{border-radius:2px;display:inline-block;height:13px;width:13px}.assigned-to-row>span{margin-right:10px}.dt_user_select .typeahead__cancel-button{line-height:1.5;visibility:inherit}#tasks-modal .existing-task-action{color:#3f729b;font-size:10px;margin:0 5px}.details-second-bar a,.details-second-bar button,.details-second-bar span{font-size:12px}.details-second-bar .title{font-size:15px}.details-second-bar .record-name-tagline{display:inline-block;font-size:10px}.details-second-bar .record-name-tagline a,.details-second-bar .record-name-tagline span{font-size:10px;margin:0;vertical-align:baseline}.details-second-bar .dt-record-type-icon{height:10px;vertical-align:baseline;width:10px}.details-second-bar .control-buttons{grid-gap:.3em}.details-second-bar .details-bar-picture{cursor:pointer;vertical-align:middle}.details-second-bar img.details-bar-picture{border-radius:5px;height:55px;min-width:55px;-o-object-fit:cover;object-fit:cover;width:55px}.details-second-bar i.details-bar-picture{display:flex;font-size:55px;height:40px;opacity:.3}.details-second-bar i.details-bar-picture:before{align-self:center}.is-stuck #second-bar-small img.details-bar-picture{height:40px;min-width:40px;width:40px}.is-stuck #second-bar-small i.details-bar-picture{font-size:40px;height:40px}.is-stuck #second-bar-small{border-top:.5rem solid #3f729b}.is-stuck #second-bar-small .mobile-nav-actions{display:none}.is-stuck #second-bar-small #record-tagline{display:none;height:0;opacity:0}.is-stuck .hide-on-scroll{display:none}#second-bar-small{border-top:none}#second-bar-small #record-tagline{opacity:1;transition:all .3s}#second-bar-small .mobile-nav-actions{margin-bottom:5px;grid-gap:5px}.add-link-dropdown{display:inline-block;margin:0 5px;position:absolute}.add-link-dropdown:before{content:"";cursor:pointer;height:25px;position:absolute;transform:translate(-18px,-3px);width:50px}.add-link-dropdown__content{background-color:#fff;border:1px solid #cacaca;box-shadow:0 8px 16px #0003;display:none;min-width:160px;position:absolute;transform:translate(-15%);z-index:1}html[dir=rtl] .add-link-dropdown__content{transform:translate(15%)}.add-link-dropdown:hover .add-link-dropdown__content,.add-link-dropdown__content:hover{display:block}.add-link__option{cursor:pointer;padding:5px 10px}.add-link__option:hover{background-color:#3f729b;color:#fff}.link-section .section-subheader{display:none}.link-section .section-subheader:has(+div){display:block}.link-section .input-group{margin-bottom:5px}#assigned_to_user_modal #filter-tabs img{display:inline-block;height:20px;margin-right:2px;vertical-align:middle;width:20px}.dispatcher-tile .populated-list .assigned-to-row>span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dispatcher-tile .populated-list .assigned-to-row:hover{background-color:#f2f2f2}.dispatcher-tile .populated-list .assigned-to-row{border-bottom:1px solid hsla(0,0%,50%,.31);padding:5px 5px 0}.dispatcher-tile .populated-list{max-height:250px;overflow-y:scroll}.health-item{border-radius:100%;color:#000;cursor:pointer;display:none;font-size:16px;font-style:italic;height:50px;margin:auto;position:absolute;text-align:center;width:50px}.health-item img{filter:grayscale(1) opacity(.75);height:50px;width:50px}.health-item i{filter:grayscale(1) opacity(.2);font-size:50px}.practiced-item{filter:none!important}.practiced-button{background-color:#3f729b!important;opacity:unset!important}.practiced-button img{filter:none!important}.health-circle{border:3px dashed #a9a9a9;border-radius:100%;display:block;height:280px;margin:auto;width:280px}.health-grid{display:inline-block;height:100%;margin-left:auto;margin-right:auto;position:relative;width:100%}.committed{border:3px solid #4caf50!important}.group-progress-button img{filter:grayscale(1) contrast(1.35)}.empty-health{height:35px;margin-left:auto;margin-right:auto;margin-top:40%;width:35px}.empty-health-text{font-style:italic;margin-left:-15%;margin-top:-15%;text-align:center}#content.template-merge-post-details table,#content.template-merge-post-details tbody,#content.template-merge-post-details td,#content.template-merge-post-details tr{border:none}#content.template-merge-post-details #main_header{margin-bottom:10px}#content.template-merge-post-details #main_header .bordered-box{text-align:center}#content.template-merge-post-details #main_header #select_current_primary_record{max-width:60%;min-width:60%}#content.template-merge-post-details #main_archiving{margin-bottom:10px}#content.template-merge-post-details #main_archiving .main-archiving-primary-switch-but-div{text-align:center}#content.template-merge-post-details #main_archiving #main_archiving_fields_div{max-height:800px!important;min-height:500px!important;overflow:auto}#content.template-merge-post-details #main_primary{margin-bottom:10px}#content.template-merge-post-details #main_primary #main_primary_fields_div{max-height:800px!important;min-height:500px!important;overflow:auto}#content.template-merge-post-details #main_updated{margin-bottom:10px}#content.template-merge-post-details #main_updated #main_updated_fields_div{max-height:800px!important;min-height:500px!important;overflow:auto}#content.template-merge-post-details #main_footer .bordered-box{text-align:center}.merge-modal{border:1px solid #3f729b;border-radius:10px;padding:0}.merge-modal-header{background-color:#3f729b;color:#fff;text-align:center}.merge-modal-heading{font-size:1.5rem;padding:10px 0}.merge-modal-subheading{display:inline-block;font-size:1.25rem;font-weight:700;margin-bottom:0;padding:10px 0;text-align:center;width:100%}.merge-modal-spinner{display:inline-block}.merge-modal-no-dups-message{display:none;margin-top:20px;text-align:center}.merge-modal-close{float:right;margin-top:15px}.merge-modal-contact-row{background-color:#f2f2f2;overflow:hidden;padding:2%}.merge-modal-contact-name{color:#3f729b;font-weight:700}.merge-modal-contact-info{font-size:16px;font-weight:400}.merge-modal-contact-row img{max-height:1em;max-width:1em}.merge-modal-button{float:right;padding-left:10%}.duplicates-detected-button{margin-bottom:0;padding:.5em}#content.template-new-post .form-fields{display:flex;flex-direction:column;gap:1rem}#content.template-new-post .form-fields .form-field>*{margin-block-end:0}#content.template-new-post .form-fields #show-shield-banner{order:2}#content.template-new-post .form-fields .form-field.hidden,#content.template-new-post .form-fields .form-field.other-fields{order:3}#content.template-new-post .form-fields :not(.form-field){order:5}#content.template-new-post .help-text{margin-top:0}#list-actions .bordered-box{background-color:#ecf5fc}#list-actions .bordered-box .section-header{align-items:center;justify-content:space-between}#list-actions .bordered-box .section-header .list-action-close-button{color:currentColor;font-size:2rem;font-weight:lighter;position:relative;right:revert;top:revert}#list-actions .bordered-box .section-body .list_action_section,#list-actions .bordered-box .section-body .list_action_section>.close-button{display:none}#list-actions .bordered-box .section-body .grid-x{flex-wrap:wrap}#list-actions .bordered-box .section-body .grid-x:not(.grid-margin-x){gap:1rem}#list-actions .bordered-box .section-body .grid-x>.cell{flex:1 1 200px;min-width:200px;overflow-x:clip}#list-actions .bordered-box .section-body .grid-x>.cell.medium-12{flex:1 1 100%;min-width:100%}#bulk_edit_master input,.bulk_edit_checkbox input{display:none;margin:auto}@media screen and (max-width:1023px){#bulk_edit_master input,.bulk_edit_checkbox input{height:1.5rem;width:1.5rem}}table.js-list.bulk_edit_on td.index .record_picture{display:none}table.js-list.bulk_edit_on #bulk_edit_master input,table.js-list.bulk_edit_on .bulk_edit_checkbox input{display:block}table.js-list.bulk_edit_on [data-id=name]{left:32px}#bulk_edit_picker .cell{margin-block-end:.66rem}#bulk_edit_picker .button-group.small .button{border:1px solid #ccc}#bulk_edit_picker .button-group.small .button.selected-select-button{border:none}#bulk_add-comment-section{background:#fefefe;border:1px solid #dcdcdc;border-radius:3px;margin:0 0 1.06667rem}#bulk_add-comment-section select,#bulk_add-comment-section textarea{border:none;margin-bottom:0}#bulk_add-comment-section select{box-shadow:none}#bulk_add-comment-section .section-subheader{padding-left:.5rem;padding-right:.15rem;padding-top:.53333rem}#bulk_comment-input{margin:0}#bulk_edit_delete_submit,#bulk_edit_submit{width:100%}.list_field_picker ul{-moz-column-width:160px;column-width:160px;margin-bottom:10px}.list_field_picker ul li{padding-inline-start:1.2rem;text-align:start;text-indent:-1.2rem}.field-search-option{align-items:center;display:flex}.field-search-option:hover{background-color:#f0f0f0}.field-search-option:last-child{border-bottom:none}.field-search-option .dt-icon,.field-search-option i,.field-search-option img,.field-search-option svg{display:block;flex-shrink:0;height:16px;margin-right:8px;width:16px}.field-search-option.no-icon:before{content:"";display:inline-block;flex-shrink:0;height:16px;margin-right:8px;width:16px}.field-search-option>span{align-items:center;display:flex;flex:1}.enabled-field-tag{align-items:center;display:inline-flex;height:28px;line-height:1;vertical-align:top}.enabled-field-tag .dt-icon,.enabled-field-tag i,.enabled-field-tag img,.enabled-field-tag svg{display:block;flex-shrink:0;height:14px;margin-right:8px;width:14px}.enabled-field-tag img{filter:invert(100%) sepia(100%) saturate(6%) hue-rotate(105deg) brightness(102%) contrast(102%)}.enabled-field-tag i{color:#fff}.enabled-field-tag>span{align-items:center;display:flex;flex-shrink:0;height:100%;white-space:nowrap}.enabled-field-tag .remove-field-btn{align-items:center;background:none;border:none;color:#fff;cursor:pointer;display:flex;flex-shrink:0;font-size:16px;height:18px;justify-content:center;line-height:1;margin-left:8px;padding:0;width:18px}.enabled-field-tag .remove-field-btn:hover{background-color:#fff3;border-radius:2px}.field-selection-ui .field-search-label{display:block;font-weight:700;margin-bottom:5px}.field-selection-ui .field-search-container{position:relative}.field-selection-ui .field-search-input{border:1px solid #ccc;border-radius:4px;padding:8px;width:100%}.field-selection-ui .field-search-dropdown{background:#fff;border:1px solid #ccc;border-radius:0 0 4px 4px;border-top:none;display:none;left:0;max-height:200px;overflow-y:auto;position:absolute;right:0;top:100%;z-index:1000}.field-selection-ui .field-search-option-inline{border-bottom:1px solid #f0f0f0;cursor:pointer;padding:8px 12px}.field-selection-ui .no-fields-found{color:#666;font-style:italic;padding:8px 12px}.field-selection-ui .enabled-fields-section{margin-bottom:15px}.field-selection-ui .enabled-fields-label{display:block;font-weight:700;margin-bottom:5px}.field-selection-ui .enabled-fields-container{background:#f9f9f9;border:1px solid #ddd;border-radius:4px;min-height:40px;padding:8px}.field-selection-ui .no-fields-message{color:#666;font-style:italic}.field-selection-ui .enabled-field-tag-inline{background:#3f729b;border-radius:3px;color:#fff;font-size:12px;margin:2px;padding:0 8px}.field-selection-ui .remove-field-btn-inline{background:none;border:none;color:#fff;cursor:pointer}.dt-radio.button-group label{background-color:transparent;color:#000;display:inline;padding:0 20px 0 5px}#list-filters{display:flex;flex-direction:column;gap:var(--grid-gap)}@media screen and (max-width:1023px){#list-filters #tile-list-exports{display:none!important}}#list-filter-tabs{margin-top:10px;margin-inline:-1rem}#list-filter-tabs .is-active a,#list-filter-tabs .is-active a:focus{background-color:#3f729b;color:#fff}#list-filter-tabs .accordion-title{font-size:inherit;font-weight:700}#list-filter-tabs .accordion-title .tab-count-span{font-size:12px;font-weight:100}#list-filter-tabs .accordion-title{padding:.75rem 1rem}#list-filter-tabs .accordion-content,#list-filter-tabs .accordion-title{border-inline:0}.filter{border-bottom:1px solid #e2e2e2;border-top:1px solid #e2e2e2;margin:0 -1rem;padding:0 1rem 10px;width:calc(100% + 2rem)}.filter--closed{padding-bottom:0}.filter__title:hover{color:#2196f3}.filter__title:before{content:"▼";float:right}.filter--closed .filter__title:before{content:"▶";float:right}.filter--closed :not(.filter__title){display:none}.filter__title{cursor:pointer}.filter input,.list-views input{margin:0 .2rem 0 0}.typeahead__query.disabled{position:relative}.typeahead__query.disabled:after{content:"";inset:0;position:absolute;z-index:100}.filter label:hover,.list-views label:hover{color:#2196f3}.list-views{margin-bottom:.5rem}.list-views__sub{margin-left:20px}.list-view{-moz-column-gap:.2rem;column-gap:.2rem;cursor:pointer;display:flex}.list-view__count{float:right}.filter-list-name,.list-view__text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.accordion-item[data-id=split_by] .accordion{margin-block-start:.5rem}.accordion-item[data-id=split_by] .field-select-wrapper{display:flex;gap:1rem}@media screen and (max-width:639px){#content.archive-template #inner-content #list-filters{background:#00000080;display:none;inset-block:0;inset-inline:0;justify-content:end;opacity:0;overscroll-behavior-y:none;position:fixed;transition:opacity .5s ease-in-out,display .5s step-end;transition-behavior:allow-discrete;z-index:5}#content.archive-template #inner-content #list-filters:has(.bordered-box:not(.collapsed)){display:flex;opacity:1}@starting-style{#content.archive-template #inner-content #list-filters:has(.bordered-box:not(.collapsed)){opacity:0}#content.archive-template #inner-content #list-filters:has(.bordered-box:not(.collapsed)) .bordered-box{transform:translateY(100%)}}#content.archive-template #inner-content #list-filters .bordered-box{border:0;border-bottom-left-radius:0;border-bottom-right-radius:0;height:calc(100vh - 200px);overflow-y:auto;overscroll-behavior-y:contain;transition:transform .5s ease-in-out}#content.archive-template #inner-content #list-filters .bordered-box.collapsed{transform:translateY(100%)}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron{background:none;border:none;color:inherit;cursor:pointer;height:30px;padding:0;position:relative;width:30px}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron img{display:none}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:after,#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:before{background-color:currentcolor;content:"";height:2px;left:50%;position:absolute;top:50%;transform-origin:center;width:20px}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:before{transform:translate(-50%,-50%) rotate(45deg)}#content.archive-template #inner-content #list-filters .bordered-box .section-chevron:after{transform:translate(-50%,-50%) rotate(-45deg)}}#content.archive-template{max-width:100%}#content.archive-template #inner-content{--grid-gap:.75rem;display:grid;grid-template-areas:"filters" "actions" "list";grid-template-columns:1fr;grid-template-rows:min-content 0fr max-content;padding:var(--grid-gap) .33rem;transition:grid-template-columns .5s ease-in-out,grid-template-rows .5s ease-in-out,margin .5s ease-in-out}#content.archive-template #inner-content #list-filters{grid-area:filters}#content.archive-template #inner-content main{grid-area:list}#content.archive-template #inner-content #list-actions{grid-area:actions}#content.archive-template #inner-content #list-actions,#content.archive-template #inner-content #list-filters{margin:-3px;overflow:hidden;padding:3px}#content.archive-template #inner-content #list-actions>*,#content.archive-template #inner-content #list-filters>*{min-height:60px;transition:opacity .5s ease-in-out,display .5s step-end;transition-behavior:allow-discrete}#content.archive-template #inner-content.show-actions,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]){grid-template-rows:0fr 1fr max-content}#content.archive-template #inner-content.show-actions #list-filters,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters{overflow-y:hidden}#content.archive-template #inner-content.show-actions #list-filters>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters>*{display:none;opacity:0}#content.archive-template #inner-content.show-actions #list-actions>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-actions>*{display:block;opacity:1}#content.archive-template #inner-content #list-filters>:not(template){display:block;opacity:1}#content.archive-template #inner-content #list-actions{overflow-y:hidden}#content.archive-template #inner-content #list-actions>*{display:none;opacity:0}#content.archive-template .create-post-mobile{aspect-ratio:1;border-radius:50%;inset-block-end:1rem;inset-inline-end:1rem;min-height:3rem;min-width:3rem;position:fixed;z-index:1}#content.archive-template .create-post-mobile img{height:1.5rem;width:1.5rem}@media screen and (min-width:640px){#content.archive-template #inner-content{gap:var(--grid-gap);padding:var(--grid-gap)}#content.archive-template .create-post-mobile{display:none}}@media screen and (min-width:1024px){#content.archive-template #inner-content{--grid-gap:1rem;gap:var(--grid-gap);grid-template-areas:"filters list actions";grid-template-columns:1fr 3fr 0fr;grid-template-rows:1fr;margin-inline:0 calc(var(--grid-gap)*-1)}#content.archive-template #inner-content.show-actions,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]){grid-template-columns:0fr 3fr 3fr;grid-template-rows:1fr;margin-inline:calc(var(--grid-gap)*-1) 0}#content.archive-template #inner-content.show-actions #list-filters>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters>*{display:none;opacity:0}#content.archive-template #inner-content.show-actions #list-actions>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-actions>*{display:block;opacity:1}#content.archive-template #inner-content #main{margin-block-start:0;min-width:0}#content.archive-template #inner-content #list-actions>*,#content.archive-template #inner-content #list-filters>*{min-width:15vw}}@media screen and (min-width:1440px){#content.archive-template #inner-content{grid-template-columns:1fr 5fr 0fr}#content.archive-template #inner-content.show-actions,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]){grid-template-columns:1fr 3fr 2fr;margin-inline:0}#content.archive-template #inner-content.show-actions #list-filters>*,#content.archive-template #inner-content:has(.list_action_section[style*="display: block"]) #list-filters>*{display:block;opacity:1}}.js-filter-checkbox-label{-moz-column-gap:.2rem;column-gap:.2rem;cursor:pointer;display:flex}.search-wrapper{display:inline-flex;max-height:30px;transform:translateY(1px)}.search-wrapper .text-input-wrapper{display:inline-flex;position:relative;width:200px}.search-wrapper .text-input-wrapper input{display:inline-block;font:inherit;height:100%;margin:0!important;margin-right:0;max-width:200px;padding:.4em .75em;padding-inline-end:1.75rem}.search-wrapper .text-input-wrapper .search-input__clear-button{align-items:center;cursor:pointer;display:none;inset-block:0;inset-inline-end:0;justify-content:center;opacity:.5;position:absolute;width:1.75rem}.search-wrapper .text-input-wrapper input:not(:-moz-placeholder)+.search-input__clear-button{display:flex}.search-wrapper .text-input-wrapper input:not(:placeholder-shown)+.search-input__clear-button{display:flex}.search-wrapper .search-addon{align-items:center;border:1px solid #cacaca;border-inline-start:0;display:flex;justify-content:center;padding:.15em .5em;transform:none}nav.second-bar.show-for-small-only .search-wrapper,nav.second-bar.show-for-small-only .text-input-wrapper{flex-grow:1;height:3rem}nav.second-bar.show-for-small-only .search-wrapper{max-height:none;transform:none}nav.second-bar.show-for-small-only .search-wrapper .text-input-wrapper input{max-height:none;max-width:none;padding-inline-end:2.5rem}nav.second-bar.show-for-small-only .search-wrapper .search-input__clear-button{font-size:2rem;width:2.5rem}nav.second-bar.show-for-small-only .search-wrapper .search-addon img{height:20px;width:20px}nav.second-bar.show-for-small-only .button{align-items:center;display:flex;justify-content:center;min-width:3em}nav.second-bar.show-for-small-only .button.icon-button i{font-size:20px}#records-table th{cursor:pointer}.list-header{-moz-column-gap:1rem;column-gap:1rem;display:grid;grid-template:"title loading . sort options" "count count archived archived archived" auto/auto auto 1fr auto auto}.list-header .section-header{grid-area:title}.list-header #list-loading{grid-area:loading;padding-inline:1rem}.list-header #sort-menu{grid-area:sort}.list-header #more-menu{grid-area:options}.list-header .filter-result-text{font-size:.75rem;grid-area:count}.list-header #archived-switch{grid-area:archived;text-align:end}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a{align-items:center;display:flex;gap:5px;padding:.5rem 0}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .menu-label,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .menu-label{display:inline}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .mdi,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a .mdi{font-size:1.5rem}.list-header #more-menu .dropdown.menu>li.is-dropdown-submenu-parent>a:after,.list-header #sort-menu .dropdown.menu>li.is-dropdown-submenu-parent>a:after{display:none}.show-closed-switch{display:flex;gap:.5rem;justify-content:flex-end}.show-closed-switch .switch{align-items:center;display:flex;margin-bottom:0;vertical-align:middle}.list-dropdown-submenu-icon{height:15px;margin-right:6px;vertical-align:bottom;width:15px}table.js-list{table-layout:auto;word-wrap:break-word;white-space:nowrap;width:100%}table.js-list.table-remove-top-border thead{border-top:0}table.js-list thead .sortable th{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7XQMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC);background-position:100%;background-repeat:no-repeat;padding-right:1.5rem}table.js-list thead .sortable .sorting_desc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFEmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wMi0wMVQxMDowNzozMiswMTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDItMDFUMTA6MDk6MjcrMDE6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMTgtMDItMDFUMTA6MDk6MjcrMDE6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlmMjMzMjktMGYxMy1jNzRiLTkxNWMtN2Q2NjdmNWNkNTEzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQ5ZjIzMzI5LTBmMTMtYzc0Yi05MTVjLTdkNjY3ZjVjZDUxMyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjQ5ZjIzMzI5LTBmMTMtYzc0Yi05MTVjLTdkNjY3ZjVjZDUxMyI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDlmMjMzMjktMGYxMy1jNzRiLTkxNWMtN2Q2NjdmNWNkNTEzIiBzdEV2dDp3aGVuPSIyMDE4LTAyLTAxVDEwOjA3OjMyKzAxOjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnSa8d4AAACxSURBVDiN7dQxigJBEIXhTzHYe6j3MPMMm3ewuUfQtEEEI4XdA4imm20nXsHMzNzASATHxGiYaVcYjHxQSXXVzyuqqVZRFJpSuzHSG/aGvQjWqUoORstP/OBaY+ArxfD9X2dr/OGjIrZYVTVVwlIMZ0xwKj0dMU4xlPNZZ+4OyqNskOoaWrmrMRgtu/hFDwcMUwy7uvrsNlMMe0xxwSwHomabJS3Qx/xRYXbMZ9Xop70BJvgrtr8BhhwAAAAASUVORK5CYII=)}table.js-list thead .sortable .sorting_asc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFEmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wMi0wMVQxMDowMzo1OCswMTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDItMDFUMTA6MDg6MjIrMDE6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMTgtMDItMDFUMTA6MDg6MjIrMDE6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTU1MzMwNGEtNmQxNC1jYjQ3LThhZDYtMDdmZmNhOGQ0ZTA5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjk1NTMzMDRhLTZkMTQtY2I0Ny04YWQ2LTA3ZmZjYThkNGUwOSIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjk1NTMzMDRhLTZkMTQtY2I0Ny04YWQ2LTA3ZmZjYThkNGUwOSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6OTU1MzMwNGEtNmQxNC1jYjQ3LThhZDYtMDdmZmNhOGQ0ZTA5IiBzdEV2dDp3aGVuPSIyMDE4LTAyLTAxVDEwOjAzOjU4KzAxOjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrXIbv8AAACrSURBVDiN7dIxasNAEIXhT8YQCKhI79JVrpBm3bl1yAUMcmNDmoVUSZtON9iLuNNBnHuENHKjSgg5C8KVBqaZefPzmJmibVtTxWIyEpa3BCGmR3zjo6mrvzHtf5ydcMThlrAY21mI6RlnrHDBtqmrn2xnIaYCsQPBGu9dPQ+GgF2vtsdLFizEVOILT71Wic8Q00OOs7fOwe9AbvA6NDR6gNyY9Gln2Ay7B+wKEpAkCJ9ugL8AAAAASUVORK5CYII=)}table.js-list tbody tr{cursor:pointer}table.js-list tbody tr ul{list-style:none;margin:0}table.js-list tbody tr:hover{background-color:#ecf5fc}table.js-list tr{transform:translateZ(0)}table.js-list td .field-label,table.js-list th .field-label{display:none}table.js-list [data-id=name]{background-color:inherit;left:46px;position:sticky;z-index:101}table.js-list [data-id=name]:is(th){background-color:#fff}table.js-list [data-id=record_picture]{background-color:inherit;left:-1px;position:sticky}table.js-list [data-id=record_picture]:is(th){background-color:#fff}table.js-list img.list-image{border-radius:5px;height:32px;min-width:32px;-o-object-fit:cover;object-fit:cover;vertical-align:middle;width:32px}table.js-list i.list-image{font-size:32px;opacity:.125}@media screen and (min-width:1024px){.table-container{overflow-y:auto;transform:rotateX(180deg)}.list-header{grid-template:"title loading archived sort options ." "count count . . . ." auto/auto auto auto auto auto 1fr}.list-header #archived-switch{align-self:center;text-align:start}table.js-list{transform:rotateX(180deg);-webkit-transform:rotateX(180deg) translateZ(0)}table.js-list tbody tr ul{max-height:100px}table.js-list tbody tr ul,table.js-list tbody tr ul li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}table.js-list td{max-width:250px}}@media screen and (max-width:1023px){.table-container{margin-inline:-15px}table,tbody,thead{display:block}tbody{border-inline:none}table.js-list tr{align-items:center;display:grid;gap:.1rem 1rem;grid-template-columns:30px 1fr 2fr 30px;grid-template:"img name name favorite" auto/30px 1fr 2fr 30px;padding:1rem}table.js-list tr td{display:contents;padding:0}table.js-list tr td .field-label,table.js-list tr td .field-value{align-self:baseline}body.rtl table.js-list tr td .field-label,body.rtl table.js-list tr td .field-label ul,body.rtl table.js-list tr td .field-value,body.rtl table.js-list tr td .field-value ul{direction:rtl}table.js-list tr td .field-label{display:block;font-size:.75rem;grid-column:1/3}table.js-list tr td .field-value{grid-column:3/5}table.js-list tr td .field-value ul{white-space:normal}table.js-list tr td .field-value li{display:inline}table.js-list tr td .field-value li:not(:last-child):after{content:", "}table.js-list tr td:has(.field-value ul:empty){display:none}table.js-list tr [data-id=favorite],table.js-list tr [data-id=name],table.js-list tr [data-id=record_picture]{display:block;margin-block-end:.5rem}table.js-list tr [data-id=favorite] .field-label,table.js-list tr [data-id=name] .field-label,table.js-list tr [data-id=record_picture] .field-label{display:none}table.js-list tr [data-id=record_picture]{grid-area:img;order:-3}table.js-list tr [data-id=name]{font-size:1.25rem;font-weight:400;grid-area:name;grid-column:2/4;order:-2}table.js-list tr [data-id=favorite]{grid-area:favorite;order:-1}table.js-list tr.collapsed{grid-auto-rows:0fr}table.js-list tr.collapsed td:not([data-id=record_picture]):not([data-id=name]):not([data-id=favorite]) .field-label,table.js-list tr.collapsed td:not([data-id=record_picture]):not([data-id=name]):not([data-id=favorite]) .field-value{display:none}}.current-filter-list{background:#ecf5fc;border:1px solid #c2e0ff;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px 0 4px 4px;position:relative}.current-filter-list .current-filter-list-close{border-left:1px solid #c2e0ff;cursor:pointer;font-family:Arial,sans-serif;font-weight:300;margin-left:5px;padding:7px 5px}.current-filter-list .current-filter-list-close:hover{background:#c2e0ff;color:#fff}.current-filter-list.current-filter-list-excluded{background:#fcecec;border:1px solid #ffc2c2;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px 0 4px 4px;position:relative}.current-filter-list.current-filter-list-excluded .current-filter-list-close{border-left:1px solid #ffc2c2}.current-filter-list.current-filter-list-excluded .current-filter-list-close:hover{background:#ffc2c2;color:#fff}.current-filter{background:#ecf5fc;border:1px solid #c2e0ff;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px;position:relative}.current-filter .current-filter-label-button{color:#000;cursor:default;margin:0 0 0 4px}.current-filter .current-filter-label-button:hover{color:#cecece;cursor:pointer;margin:0 0 0 4px}.current-filter.current-filter-excluded{background:#fcecec;border:1px solid #ffc2c2;border-radius:2px;font-size:.875rem;margin-bottom:.375rem;margin-right:4px;padding:4px;position:relative}#filter-modal{padding:10px 0 0}#filter-modal .tabs-title>a{align-items:center;display:flex;padding:1.25rem 0 1.25rem 15px}#filter-modal .tabs-title__icon{height:1rem;margin-right:.7rem;width:1.2rem}#filter-modal h3{margin-left:10px}#filter-modal .vertical.tabs{background-color:#3f729b;border:none}#filter-modal .vertical.tabs .tabs-title>a{color:#fff}#filter-modal .vertical.tabs .tabs-title>a:hover{background-color:#224f72}#filter-modal .vertical.tabs .tabs-title>a:focus,#filter-modal .vertical.tabs .tabs-title>a[aria-selected=true]{background-color:#224f72;color:#fff}#filter-modal .vertical.tabs{max-height:500px;overflow-x:hidden;overflow-y:auto}#filter-modal .tabs-content{min-height:400px}#filter-modal .filter-modal-left{background-color:#3f729b}#filter-modal .filter-modal-right{background-color:#f2f2f2;border:none}#filter-modal .button-cancel{background-color:#f2f2f2;color:#000;margin:5px 0}#filter-modal .confirm-buttons{text-align:end}#filter-modal .grid-container{padding:0}#filter-modal #new-filter-name,#filter-modal .confirm-filter-records{margin:5px 0}.bulk-edit-field-select-wrapper{margin-bottom:16px}.bulk-edit-field-wrapper{background-color:#fafafa;border:1px solid #e0e0e0;border-radius:4px;margin-bottom:15px;padding:15px}.bulk-edit-field-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px}.bulk-edit-field-header .section-subheader{align-items:center;display:flex;flex:1;gap:8px;margin:0}.bulk-edit-remove-field-btn{align-items:center;background:transparent;border:none;color:#f44;cursor:pointer;display:flex;justify-content:center;margin-left:auto;padding:4px;transition:color .2s,transform .2s}.bulk-edit-remove-field-btn i.mdi{font-size:24px;line-height:1}.bulk-edit-remove-field-btn:hover{color:#c00;transform:scale(1.1)}.bulk-edit-remove-field-btn:focus{border-radius:2px;outline:2px solid #f44;outline-offset:2px}.bulk-edit-field-input-container{margin-top:10px}.bulk-edit-field-input-container dt-connection label,.bulk-edit-field-input-container dt-date label,.bulk-edit-field-input-container dt-datetime label,.bulk-edit-field-input-container dt-key-select label,.bulk-edit-field-input-container dt-location label,.bulk-edit-field-input-container dt-multi-select label,.bulk-edit-field-input-container dt-number label,.bulk-edit-field-input-container dt-tags label,.bulk-edit-field-input-container dt-text label,.bulk-edit-field-input-container dt-textarea label,.bulk-edit-field-input-container dt-user-select label,.bulk-edit-field-input-container dt-users-connection label{display:none!important}.bulk-edit-field-actions,.bulk-edit-selected-fields-container{margin-top:15px}.bulk-edit-field-loading{color:#999;font-style:italic;padding:10px;text-align:center}.bulk-edit-no-selection-message{background-color:#f9f9f9;border:1px solid #e0e0e0;border-radius:4px;color:#666;margin-top:20px;padding:15px;text-align:center}.bulk-edit-action-buttons{align-items:center;display:flex;gap:10px;margin-top:20px}.bulk-edit-action-buttons .button{align-items:center;display:flex;flex:1;gap:8px;justify-content:center}.bulk-edit-action-buttons .button i.mdi{font-size:18px;line-height:1}.bulk-edit-action-buttons .bulk-edit-delete-btn{background-color:#dc3545;border-color:#dc3545;color:#fff}.bulk-edit-action-buttons .bulk-edit-delete-btn:hover{background-color:#c82333;border-color:#bd2130}.bulk-edit-action-buttons .bulk-edit-delete-btn:focus{box-shadow:0 0 0 3px #dc354540}.icon-star{fill:#c7c6c1;height:1em;width:1em}.icon-star.selected{fill:#ffc105}#user-management-tools{padding:15px}#user-management-tools #user-chart{padding-left:15px;padding-right:15px;position:relative}#user-management-tools #user-chart #page-title{position:absolute}#user-management-tools #user-chart #multipliers_table{width:100%}#user-management-tools #user-chart #multipliers_table .user_row{cursor:pointer}#user-management-tools #user-chart #multipliers_table select,#user-management-tools #user-chart #multipliers_table_filter input{margin-bottom:0}#user_modal{background-color:#e2e2e2;max-width:100%}#user_modal #hero_status p{font-size:2rem}#user_modal .tabs-content{padding:0}#user_modal .tabs,#user_modal .tabs-content{background:none;border:none}#user-add-user label{font-weight:700}#user-add-user .grid-x{justify-content:space-between}@media print,screen and (min-width:40em){#user-add-user .grid-x>.medium-6{width:48%}}#map-wrapper{position:relative}#map,#map-wrapper{height:800px;width:100%}#map{left:0;top:0;z-index:1}#legend,#map{position:absolute}#legend{left:10px;right:10px;top:10px;z-index:2}#data{word-wrap:break-word}.legend{background-color:#fff;border-radius:3px;box-shadow:0 1px 2px #0000001a;font:12px/20px Roboto,Arial,sans-serif;opacity:.9;padding:10px}.legend h4{margin:0 0 10px}#spinner{display:none;left:50%;position:absolute;top:50%;z-index:20}.spinner-image{width:30px}.info-bar-font{font-size:1.5em;padding-top:9px}.border-left{border-left:1px solid #d3d3d3;padding:0 10px}#add_records_div{left:10px;max-height:100%;overflow-x:auto;position:absolute;top:90px;z-index:2}.add-records-div{background-color:#fff;border-radius:3px;box-shadow:0 1px 2px #0000001a;display:none;font:12px/20px Roboto,Arial,sans-serif;opacity:.9;padding:10px;width:300px}.close-add-records-div{cursor:pointer}#geocode-details{position:absolute;right:10px;top:15%;z-index:2}.geocode-details{background-color:#fff;border-radius:3px;box-shadow:0 1px 2px #0000001a;display:none;font:12px/20px Roboto,Arial,sans-serif;opacity:.9;padding:10px;width:300px}.close-details{cursor:pointer}#map-wrapper #legend img{height:30px;width:30px}#map-wrapper #legend #map-type{padding:0 10px}#map-wrapper #legend #map-type button{margin-bottom:0;padding:2px}#map-wrapper #legend #map-type button.selected-select-button img{filter:invert(100%) sepia(0) saturate(7481%) hue-rotate(180deg) brightness(109%) contrast(100%)}#map-wrapper #legend .map-option-buttons button{margin:0 0 0 3px}#map-wrapper #legend #loading-legend span{font-size:14px;margin:0 5px;vertical-align:middle}.timechart{height:400px}.day-activities__title{background-color:#3f729b;color:#fff;font-size:1.1rem;padding:.1rem .3rem}.post-activities{margin-bottom:.5rem}.post-activities__icon{color:#3f729b;margin-right:.1rem}.post-activities__title{color:#3f729b;display:flex;justify-content:space-between}.post-activities__item{padding-left:1.4rem}.post-activities__item--no-title{background-color:#3f729b30;padding-left:1.4rem}.activity__more-state,.fields__more-state{display:none}.fields__less-link,.fields__more-link{color:#3f729b;cursor:pointer;display:inline;padding:0 .5rem;text-decoration:underline}.activity__less-link,.fields__less-link{display:none}.activity__more-details,.fields__more-details{font-size:0;max-height:0;opacity:0;transition:.25s ease}.fields__more-state:checked~.fields__more-details{font-size:inherit;max-height:100em;opacity:1}.fields__more-state:checked~.fields__more-link{display:none}.fields__more-state:checked~.fields__less-link{display:inline}.activity__more-state:checked~.post-activities__item .activity__more-details{font-size:inherit;max-height:100em;opacity:1}.activity__more-state:checked+.post-activities__title .activity__more-link{display:none}.activity__more-state:checked+.post-activities__title .activity__less-link{display:inline}#activity_highlights .highlights-table{table-layout:fixed}#activity_highlights .highlights-table tr td:first-child{width:90%}#activity_highlights .highlights-table.striped tr:nth-child(2n){background-color:#ecf5fc;border-bottom:0}#activity_highlights h4{color:#3f729b;margin-top:1em}#activity_highlights #comment-filter{width:60px}#activity_highlights .left-margin{margin-left:.6666666667rem}#activity_highlights .comment{margin-bottom:.5rem}@media print{*{background:transparent!important;color:#000!important;filter:none!important;-ms-filter:none!important;text-shadow:none!important}a,a:visited{color:#444!important;text-decoration:underline}a:after,a:visited:after{content:" (" attr(href) ")"}a abbr[title]:after,a:visited abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.page-navigation,.respond-form,.sidebar,.wp-prev-next,nav{display:none}} diff --git a/dt-assets/build/manifest.json b/dt-assets/build/manifest.json index 2be5564d34..fe7cc808b7 100644 --- a/dt-assets/build/manifest.json +++ b/dt-assets/build/manifest.json @@ -1,47 +1,47 @@ { - "dt-assets/scss/login.scss": { - "file": "css/login.min.css", - "src": "dt-assets/scss/login.scss", - "isEntry": true, - "name": "login", - "names": [ - "login.css" - ] - }, - "dt-assets/scss/style.scss": { - "file": "css/style.min.css", - "src": "dt-assets/scss/style.scss", - "isEntry": true, - "name": "style", - "names": [ - "style.css" - ] - }, - "node_modules/@disciple.tools/web-components/src/styles/dark.css": { + "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dark.css": { "file": "css/dark.min.css", - "src": "node_modules/@disciple.tools/web-components/src/styles/dark.css", + "src": "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dark.css", "isEntry": true, "name": "dark", "names": [ "dark.css" ] }, - "node_modules/@disciple.tools/web-components/src/styles/dim.css": { + "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dim.css": { "file": "css/dim.min.css", - "src": "node_modules/@disciple.tools/web-components/src/styles/dim.css", + "src": "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dim.css", "isEntry": true, "name": "dim", "names": [ "dim.css" ] }, - "node_modules/@disciple.tools/web-components/src/styles/light.css": { + "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/light.css": { "file": "css/light.min.css", - "src": "node_modules/@disciple.tools/web-components/src/styles/light.css", + "src": "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/light.css", "isEntry": true, "name": "light", "names": [ "light.css" ] + }, + "dt-assets/scss/login.scss": { + "file": "css/login.min.css", + "src": "dt-assets/scss/login.scss", + "isEntry": true, + "name": "login", + "names": [ + "login.css" + ] + }, + "dt-assets/scss/style.scss": { + "file": "css/style.min.css", + "src": "dt-assets/scss/style.scss", + "isEntry": true, + "name": "style", + "names": [ + "style.css" + ] } } \ No newline at end of file From 0a138f97c47f6d917e98892683e46bd3294c7b86 Mon Sep 17 00:00:00 2001 From: Brady Lamansky Date: Wed, 17 Jun 2026 11:26:24 -0500 Subject: [PATCH 05/10] npm install --- dt-assets/build/components/index.es.js | 2 +- dt-assets/build/components/index.js | 65 ++++++++++-------------- dt-assets/build/components/index.umd.cjs | 65 ++++++++++-------------- dt-assets/build/manifest.json | 48 ++++++++--------- 4 files changed, 81 insertions(+), 99 deletions(-) diff --git a/dt-assets/build/components/index.es.js b/dt-assets/build/components/index.es.js index 84237067e4..30ca6d5751 100644 --- a/dt-assets/build/components/index.es.js +++ b/dt-assets/build/components/index.es.js @@ -1,4 +1,4 @@ -import { F as e, E as s, y as D, C as o, D as l, a as i, b as n, d as r, e as c, f as u, w as p, x as M, B as T, g as x, h as C, i as m, j as S, z as d, k as g, u as B, r as h, t as v, l as A, m as F, n as b, o as L, p as f, A as y, q as G, c as U, v as j } from "./index-DuJ43JYq.js"; +import { F as e, E as s, y as D, C as o, D as l, a as i, b as n, d as r, e as c, f as u, w as p, x as M, B as T, g as x, h as C, i as m, j as S, z as d, k as g, u as B, r as h, t as v, l as A, m as F, n as b, o as L, p as f, A as y, q as G, c as U, v as j } from "./index-DiWMPadv.js"; export { e as ApiService, s as ComponentService, diff --git a/dt-assets/build/components/index.js b/dt-assets/build/components/index.js index 45eb5f2751..4f8db4a999 100644 --- a/dt-assets/build/components/index.js +++ b/dt-assets/build/components/index.js @@ -2747,7 +2747,7 @@ var DtWebComponents=function(x){"use strict";var Mn=Object.defineProperty;var jn var(--dt-form-border-color-alert, var(--alert-color)) ); } - `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){console.log(this.options);const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` + `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` ${this.labelTemplate()}
1||e.key||e.value,()=>h` `,()=>h``)} +
`}renderIcons(){let e=0,t=!1;for(const[a,r]of(this.value||[]).entries())!r.value&&a!==0?e+=1:r.delete&&!t&&(t=!0);let i=.5;t===!1&&(i+=3*e);const o=`padding-block-end: ${i.toString()}rem`;return h` ${this.renderIconInvalid()} ${this.renderError()} @@ -3151,31 +3166,7 @@ var DtWebComponents=function(x){"use strict";var Mn=Object.defineProperty;var jn style="${e}" >`:null}_renderInputFields(){return(!this.value||!this.value.length)&&(this.value=[{verified:!1,value:"",tempKey:Date.now().toString()}]),h` ${H((this.value??[]).filter(e=>!e.delete),e=>e.id,e=>this._inputFieldTemplate(e,this.value.length))} - `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}labelTemplate(){return this.label?h` - - ${this.icon?null:h``} - ${this.label} - - - - - `:""}render(){return h` + `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}render(){return h` ${this.labelTemplate()}
${this._renderInputFields()} ${this.renderIcons()} @@ -4249,4 +4240,4 @@ var DtWebComponents=function(x){"use strict";var Mn=Object.defineProperty;var jn
- `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){console.log("load event");const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{console.log(`Attaching load event to ${i.tagName.toLowerCase()} with name ${i.name||i.getAttribute("name")}`),i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){console.log("get data event");const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType;console.log(t),console.log("Fetching connections with postType:",d,"and query:",o);const u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const _=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of _)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));return x.ApiService=yi,x.ComponentService=Ie,x.DtAlert=Ao,x.DtBase=N,x.DtButton=_i,x.DtChurchHealthCircle=ho,x.DtConnection=po,x.DtCopyText=bo,x.DtDate=jt,x.DtDatetime=mo,x.DtFileUpload=Eo,x.DtFormBase=P,x.DtIcon=ro,x.DtLabel=no,x.DtLocation=go,x.DtLocationMap=_o,x.DtMapModal=yo,x.DtModal=vo,x.DtMultiSelect=Ze,x.DtMultiSelectButtonGroup=So,x.DtMultiText=zt,x.DtMultiTextGroups=ko,x.DtNumberField=wo,x.DtSingleSelect=$o,x.DtTags=Ce,x.DtText=Ft,x.DtTextArea=xo,x.DtTile=To,x.DtToggle=uo,x.DtUsersConnection=fo,x.version=Va,Object.defineProperty(x,Symbol.toStringTag,{value:"Module"}),x}({}); + `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType,u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const _=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of _)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));return x.ApiService=yi,x.ComponentService=Ie,x.DtAlert=Ao,x.DtBase=N,x.DtButton=_i,x.DtChurchHealthCircle=ho,x.DtConnection=po,x.DtCopyText=bo,x.DtDate=jt,x.DtDatetime=mo,x.DtFileUpload=Eo,x.DtFormBase=P,x.DtIcon=ro,x.DtLabel=no,x.DtLocation=go,x.DtLocationMap=_o,x.DtMapModal=yo,x.DtModal=vo,x.DtMultiSelect=Ze,x.DtMultiSelectButtonGroup=So,x.DtMultiText=zt,x.DtMultiTextGroups=ko,x.DtNumberField=wo,x.DtSingleSelect=$o,x.DtTags=Ce,x.DtText=Ft,x.DtTextArea=xo,x.DtTile=To,x.DtToggle=uo,x.DtUsersConnection=fo,x.version=Va,Object.defineProperty(x,Symbol.toStringTag,{value:"Module"}),x}({}); diff --git a/dt-assets/build/components/index.umd.cjs b/dt-assets/build/components/index.umd.cjs index 6a4100775b..3a7d9ad02f 100644 --- a/dt-assets/build/components/index.umd.cjs +++ b/dt-assets/build/components/index.umd.cjs @@ -2747,7 +2747,7 @@ var(--dt-form-border-color-alert, var(--alert-color)) ); } - `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){console.log(this.options);const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` + `]}static get properties(){return{...super.properties,placeholder:{type:String},options:{type:Array},value:{type:String,reflect:!0},color:{type:String,state:!0},onchange:{type:String}}}updateColor(){if(this.value&&this.options){const e=this.options.filter(t=>t.id===this.value);e&&e.length&&(this.color=e[0].color)}}isColorSelect(){return(this.options||[]).reduce((e,t)=>e||t.color,!1)}willUpdate(e){super.willUpdate(e),e.has("value")&&this.updateColor()}_change(e){const t=e.target.value,i=new CustomEvent("change",{bubbles:!0,detail:{field:this.name,oldValue:this.value,newValue:t}});this.value=t,this._setFormValue(this.value),this.dispatchEvent(i)}_validateRequired(){const{value:e}=this;this.required&&!e?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{invalid:this.touched&&this.invalid,"color-select":this.isColorSelect()}}render(){return h` ${this.labelTemplate()}
1||e.key||e.value,()=>h` `,()=>h``)} +
`}renderIcons(){let e=0,t=!1;for(const[a,r]of(this.value||[]).entries())!r.value&&a!==0?e+=1:r.delete&&!t&&(t=!0);let i=.5;t===!1&&(i+=3*e);const o=`padding-block-end: ${i.toString()}rem`;return h` ${this.renderIconInvalid()} ${this.renderError()} @@ -3151,31 +3166,7 @@ style="${e}" >`:null}_renderInputFields(){return(!this.value||!this.value.length)&&(this.value=[{verified:!1,value:"",tempKey:Date.now().toString()}]),h` ${H((this.value??[]).filter(e=>!e.delete),e=>e.id,e=>this._inputFieldTemplate(e,this.value.length))} - `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}labelTemplate(){return this.label?h` - - ${this.icon?null:h``} - ${this.label} - - - - - `:""}render(){return h` + `}_validateRequired(){const{value:e}=this;this.required&&(!e||e.every(t=>!t.value))?(this.invalid=!0,this.internals.setValidity({valueMissing:!0},this.requiredMessage||"This field is required",this._field)):(this.invalid=!1,this.internals.setValidity({}))}get classes(){return{"text-input":!0,invalid:this.touched&&this.invalid}}render(){return h` ${this.labelTemplate()}
${this._renderInputFields()} ${this.renderIcons()} @@ -4249,4 +4240,4 @@
- `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){console.log("load event");const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{console.log(`Attaching load event to ${i.tagName.toLowerCase()} with name ${i.name||i.getAttribute("name")}`),i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){console.log("get data event");const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType;console.log(t),console.log("Fetching connections with postType:",d,"and query:",o);const u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const w=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of w)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));_.ApiService=yi,_.ComponentService=Ie,_.DtAlert=Ao,_.DtBase=N,_.DtButton=_i,_.DtChurchHealthCircle=ho,_.DtConnection=po,_.DtCopyText=bo,_.DtDate=jt,_.DtDatetime=mo,_.DtFileUpload=Eo,_.DtFormBase=M,_.DtIcon=ro,_.DtLabel=no,_.DtLocation=go,_.DtLocationMap=_o,_.DtMapModal=yo,_.DtModal=vo,_.DtMultiSelect=Ze,_.DtMultiSelectButtonGroup=So,_.DtMultiText=zt,_.DtMultiTextGroups=ko,_.DtNumberField=wo,_.DtSingleSelect=$o,_.DtTags=Ce,_.DtText=Ft,_.DtTextArea=xo,_.DtTile=To,_.DtToggle=uo,_.DtUsersConnection=fo,_.version=Va,Object.defineProperty(_,Symbol.toStringTag,{value:"Module"})}); + `}}window.customElements.define("dt-tile",To);class Ie{get api(){return this._api}constructor(e,t,i,o="wp-json"){this.postType=e,this.postId=t,this.nonce=i,this.debounceTimers={},this._api=new yi(this.nonce,o),this.apiRoot=this._api.apiRoot,this.autoSaveComponents=["dt-connection","dt-users-connection","dt-date","dt-datetime","dt-location","dt-location-map","dt-multi-select","dt-number","dt-single-select","dt-tags","dt-text","dt-textarea","dt-toggle","dt-multi-text","dt-multi-text-groups","dt-multi-select-button-group","dt-button","dt-church-health-circle"],this.dynamicLoadComponents=["dt-connection","dt-tags","dt-modal","dt-button","dt-location","dt-users-connection"]}initialize(){this.postId&&this.enableAutoSave(),this.attachLoadEvents(),this.attachFileUploadEvents()}async attachLoadEvents(e){const t=document.querySelectorAll(e||this.dynamicLoadComponents.join(","));t&&t.forEach(i=>{i.dataset.eventDtGetData||(i.addEventListener("dt:get-data",this.handleGetDataEvent.bind(this)),i.dataset.eventDtGetData=!0)})}async checkDuplicates(e,t){const i=document.querySelector("dt-modal.duplicate-detected");if(i){const o=i.shadowRoot.querySelector(".duplicates-detected-button");o&&(o.style.display="none");const a=await this._api.checkDuplicateUsers(this.postType,this.postId);t&&a.ids.length>0&&o&&(o.style.display="block")}}enableAutoSave(e){const t=document.querySelectorAll(e||this.autoSaveComponents.join(","));t&&t.forEach(i=>{i.addEventListener("change",this.handleChangeEvent.bind(this))})}attachFileUploadEvents(e){const t=document.querySelectorAll(e||"dt-file-upload");t&&t.forEach(i=>{i.dataset.eventDtUpload||(i.addEventListener("dt:upload",this.handleUploadEvent.bind(this)),i.addEventListener("dt:delete-file",this.handleDeleteFileEvent.bind(this)),i.addEventListener("dt:rename-file",this.handleRenameFileEvent.bind(this)),i.addEventListener("dt:download-file",this.handleDownloadFileEvent.bind(this)),i.dataset.eventDtUpload=!0)})}async handleGetDataEvent(e){const t=e.detail;if(t){const{field:i,query:o,onSuccess:a,onError:r}=t;try{const n=e.target.tagName.toLowerCase();let l=[];switch(n){case"dt-button":l=await this._api.getContactInfo(this.postType,this.postId);break;case"dt-connection":{const d=t.postType||this.postType,u=await this._api.listPostsCompact(d,o),p={...u,posts:u.posts.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-connection",p==null?void 0:p.posts));break}case"dt-users-connection":{const d=t.postType||this.postType,u=await this._api.searchUsers(d,o),p={...u,posts:u.filter(g=>g.ID!==parseInt(this.postId,10))};p!=null&&p.posts&&(l=Ie.convertApiValue("dt-users-connection",p==null?void 0:p.posts));break}case"dt-location":{l=await this._api.getLocations(this.postType,i,t.filter,o),l=l.location_grid.map(d=>({id:d.ID,label:d.name}));break}case"dt-tags":default:l=await this._api.getMultiSelectValues(this.postType,i,o),l=l.map(d=>({id:d,label:d}));break}a(l)}catch(n){r(n)}}}async handleChangeEvent(e){const t=e.detail;if(t){const{field:i,newValue:o,oldValue:a,remove:r}=t,n=e.target.tagName.toLowerCase(),l=Ie.convertValue(n,o,a);if(e.target.removeAttribute("saved"),e.target.setAttribute("loading",!0),n==="dt-number"){const d=`${this.postType}-${this.postId}-${i}`;this.debounce(d,async()=>{try{const u=await this._api.updatePost(this.postType,this.postId,{[i]:l});document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(u){console.error(u),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",u.message||u.toString())}},1e3)}else try{const d={[i]:l};if(n==="dt-location-map"){const p=l.values.filter(g=>!g.lng||!g.lat);d[i].values=l.values.filter(g=>g.lng&&g.lat),d.contact_address=p,d.contact_address.length===0&&delete d.contact_address,d[i].values.length===0&&delete d[i]}const u=await this._api.updatePost(this.postType,this.postId,d);if(document.dispatchEvent(new CustomEvent("dt:post:update",{detail:{response:u,field:i,value:l,component:n}})),n==="dt-location-map"||n==="dt-multi-text-groups"){const p=e.target;p.value=u[i]}e.target.removeAttribute("loading"),e.target.setAttribute("error",""),e.target.setAttribute("saved",!0)}catch(d){console.error(d),e.target.removeAttribute("loading"),e.target.setAttribute("invalid",!0),e.target.setAttribute("error",d.message||d.toString())}}}async handleUploadEvent(e){const t=e.detail;if(!t)return;const{files:i,metaKey:o,keyPrefix:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.uploadFiles(this.postType,this.postId,i,o,a||""),p=(await this._api.getPost(this.postType,this.postId))[o]||[];r&&r({result:d,fieldValue:p})}catch(d){l.setAttribute("error",d.message||"Upload failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDeleteFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,metaKey:o,onSuccess:a,onError:r}=t,n=e.target;n.setAttribute("loading",!0),n.removeAttribute("saved"),n.removeAttribute("error");try{await this._api.deleteFile(this.postType,this.postId,o,i),a&&a()}catch(l){n.setAttribute("error",l.message||"Delete failed"),r&&r(l)}finally{n.removeAttribute("loading")}}async handleRenameFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,newName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;l.setAttribute("loading",!0),l.removeAttribute("saved"),l.removeAttribute("error");try{const d=await this._api.renameFile(this.postType,this.postId,a,i,o);r&&r(d)}catch(d){l.setAttribute("error",d.message||"Rename failed"),n&&n(d)}finally{l.removeAttribute("loading")}}async handleDownloadFileEvent(e){const t=e.detail;if(!t)return;const{fileKey:i,fileName:o,metaKey:a,onSuccess:r,onError:n}=t,l=e.target;try{const d=await this._api.downloadFile(this.postType,this.postId,a,i),u=window.URL.createObjectURL(d),p=document.createElement("a");p.href=u,p.download=o||"download",document.body.appendChild(p),p.click(),document.body.removeChild(p),window.URL.revokeObjectURL(u),r&&r()}catch(d){l.setAttribute("error",d.message||"Download failed"),n&&n(d)}}debounce(e,t,i){this.debounceTimers[e]&&clearTimeout(this.debounceTimers[e]),this.debounceTimers[e]=setTimeout(()=>{t()},i)}static convertApiValue(e,t){let i=t;switch(e){case"dt-connection":i=t.map(o=>({id:o.ID,label:o.name??o.post_title,link:o.permalink,status:o.status}));break;case"dt-users-connection":t&&!Array.isArray(t)&&(t.id||t.ID)?i=[{id:t.id||t.ID,label:t.display,avatar:t.avatar||""}]:Array.isArray(t)&&(i=t.map(o=>({id:o.id||o.ID,label:o.display||o.name,avatar:o.avatar||""})));break}return i}static convertValue(e,t,i=null){let o=t;if(t)switch(e.toLowerCase()){case"dt-toggle":typeof t=="string"&&(o=t.toLowerCase()==="true");break;case"dt-church-health-circle":case"dt-multi-select":case"dt-multi-select-button-group":case"dt-tags":typeof t=="string"&&(o=[t]),o={values:o.map(n=>{if(typeof n=="string"){const d={value:n};return n.startsWith("-")&&(d.delete=!0,d.value=n.substring(1)),d}const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-users-connection":{const n=[],l=o.filter(u=>!u.delete);if(l.length<=1){o=l.length===1?parseInt(l[0].id,10):"";break}const d=new Map((i||[]).map(u=>[u.id,u]));for(const u of o){const p=d.get(u.id),g={id:u.id,changes:{}};if(p){let y=!1;const w=new Set([...Object.keys(p),...Object.keys(u)]);for(const T of w)u[T]!==p[T]&&(g.changes[T]=Object.prototype.hasOwnProperty.call(u,T)?u[T]:void 0,y=!0);if(y){n.push(g);break}}else{g.changes={...u},n.push(g);break}}o=n[0].id;break}case"dt-connection":typeof t=="string"&&(o=[{id:t}]),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location":const a=new Set((i||[]).map(n=>n.id));typeof t=="string"?o=[{id:t}]:o=t.filter(n=>!(a.has(n.id)&&!n.delete)),o={values:o.map(n=>{const l={value:n.id};return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-location-map":if(o=t.filter(n=>!((i||[]).includes(n)&&!n.delete)),i)for(const n of i)t.some(d=>n.id&&d.id&&n.id===d.id||n.key&&d.key&&n.key===d.key&&(!d.lat||!d.lng))||(n.delete=!0,o.push(n));o={values:o.map(n=>{const l=n;return n.delete&&(l.delete=n.delete),l}),force_values:!1};break;case"dt-multi-text":Array.isArray(t)?o=t.map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(o=[{value:t}]);break;case"dt-multi-text-groups":let r=[];Array.isArray(t)?r=t.filter(n=>n.value!=="").map(n=>{const l={...n};return delete l.tempKey,l}):typeof t=="string"&&(r=[{value:t}]),o={values:r,force_values:!1};break}return o}static valueArrayDiff(e,t){const i={value1:[],value2:[]};if(Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.length>0&&typeof e[0]!="object")return i.value1=e.filter(n=>!t.includes(n)),i.value2=t.filter(n=>!e.includes(n)),i;const o=n=>JSON.stringify(n),a=new Map(e.map(n=>[o(n),n])),r=new Map(t.map(n=>[o(n),n]));for(const[n,l]of a)r.has(n)||i.value1.push(l);for(const[n,l]of r)a.has(n)||i.value2.push(l);return i}}const Va="0.8.12",Ba={s226be12a5b1a27e8:"ሰነዶቹን ያንብቡ",s33f85f24c0f5f008:"አስቀምጥ",s36cb242ac90353bc:"መስኮች",s41cb4006238ebd3b:"የጅምላ አርትዕ",s5e8250fb85d64c23:"ገጠመ",s625ad019db843f94:"ተጠቀም",sac83d7f9358b43db:m`${0} ዝርዝር`,sbf1ca928ec1deb62:"ተጨማሪ እገዛ ይፈልጋሉ?",sd1a8dc951b2b6a98:"በዝርዝሩ ውስጥ እንደ ዓምዶች የትኞቹን መስኮች እንደሚያሳዩ ይምረጡ",sf9aee319a006c9b4:"አክል",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ha=Object.freeze(Object.defineProperty({__proto__:null,templates:Ba},Symbol.toStringTag,{value:"Module"})),Ka={s04ceadb276bbe149:"خيارات التحميل...",s226be12a5b1a27e8:"اقرأ الوثائق",s29e25f5e4622f847:"افتح",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"غلق",s625ad019db843f94:"استخدام",s9d51bfd93b5dbeca:"عرض المحفوظات",sac83d7f9358b43db:m`${0}قائمة الأعضاء`,sb1bd536b63e9e995:"المجال الخاص: أنا فقط أستطيع رؤية محتواه",sb59d68ed12d46377:"جار التحميل",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",scb9a1ff437efbd2a:m`حَدِّد جميع ${0} التي تريد تحديثها من القائمة ، وقم بتحديثها أدناه`,sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",seafe6ef133ede7da:m`عرض 1 of ${0}`,sf9aee319a006c9b4:"لأضف",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Ga=Object.freeze(Object.defineProperty({__proto__:null,templates:Ka},Symbol.toStringTag,{value:"Module"})),Wa={s226be12a5b1a27e8:"اقرأ الوثائق",s33f85f24c0f5f008:"حفظ",s36cb242ac90353bc:"مجالات",s41cb4006238ebd3b:"التحرير بالجملة",s5e8250fb85d64c23:"أغلق",s625ad019db843f94:"استخدام",sbf1ca928ec1deb62:"هل تريد المزيد من المساعدة؟",sd1a8dc951b2b6a98:"اختر المجالات المراد عرضها كأعمدة في القائمة",sf9aee319a006c9b4:"إضافة",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Za=Object.freeze(Object.defineProperty({__proto__:null,templates:Wa},Symbol.toStringTag,{value:"Module"})),Ja={s226be12a5b1a27e8:"Прочетете документацията",s33f85f24c0f5f008:"Запазете",s36cb242ac90353bc:"Полета",s41cb4006238ebd3b:"Групово редактиране",s5e8250fb85d64c23:"Близо",s625ad019db843f94:"Използвайте",sbf1ca928ec1deb62:"Имате нужда от повече помощ?",sd1a8dc951b2b6a98:"Изберете кои полета да се показват като колони в списъка",sf9aee319a006c9b4:"Добавяне",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qa=Object.freeze(Object.defineProperty({__proto__:null,templates:Ja},Symbol.toStringTag,{value:"Module"})),Xa={s226be12a5b1a27e8:"নথিপত্রাদি পাঠ করুন",s33f85f24c0f5f008:"সংরক্ষণ করুন",s36cb242ac90353bc:"ক্ষেত্র",s41cb4006238ebd3b:"বাল্ক এডিট",s5e8250fb85d64c23:"বন্ধ",s625ad019db843f94:"ব্যবহার",sbf1ca928ec1deb62:"আরও সাহায্য প্রয়োজন?",sd1a8dc951b2b6a98:"তালিকার কলাম হিসাবে কোন ক্ষেত্রগুলি প্রদর্শিত হবে তা চয়ন করুন",sf9aee319a006c9b4:"অ্যাড",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ya=Object.freeze(Object.defineProperty({__proto__:null,templates:Xa},Symbol.toStringTag,{value:"Module"})),er={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitajte dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate više pomoći?",scb9a1ff437efbd2a:m`Odaberite sve ${0} koje želite ažurirati sa liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Odaberite koja polja će se prikazati kao kolone na listi",seafe6ef133ede7da:m`Prikazuje se 1 od ${0}`,sf9aee319a006c9b4:"Dodati",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},tr=Object.freeze(Object.defineProperty({__proto__:null,templates:er},Symbol.toStringTag,{value:"Module"})),ir={s226be12a5b1a27e8:"Přečtěte si dokumentaci",s33f85f24c0f5f008:"Uložit",s36cb242ac90353bc:"Pole",s41cb4006238ebd3b:"Hromadná úprava",s5e8250fb85d64c23:"Zavřít",s625ad019db843f94:"Použití",sbf1ca928ec1deb62:"Potřebujete další pomoc?",sd1a8dc951b2b6a98:"Vyberte pole, která chcete v seznamu zobrazit jako sloupce",sf9aee319a006c9b4:"Přidat",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},or=Object.freeze(Object.defineProperty({__proto__:null,templates:ir},Symbol.toStringTag,{value:"Module"})),sr={s226be12a5b1a27e8:"Lesen Sie die Dokumentation",s33f85f24c0f5f008:"Speichern",s36cb242ac90353bc:"Felder",s41cb4006238ebd3b:"Im Stapel bearbeiten",s5e8250fb85d64c23:"Schließen",s625ad019db843f94:"Verwenden",sbf1ca928ec1deb62:"Benötigen Sie weitere Hilfe?",sd1a8dc951b2b6a98:"Wählen Sie aus, welche Felder in der Liste als Spalte angezeigt werden sollen",sf9aee319a006c9b4:"Hinzufügen",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ar=Object.freeze(Object.defineProperty({__proto__:null,templates:sr},Symbol.toStringTag,{value:"Module"})),rr={s226be12a5b1a27e8:"Διαβάστε την τεκμηρίωση",s33f85f24c0f5f008:"Αποθήκευση",s36cb242ac90353bc:"Πεδία",s41cb4006238ebd3b:"Μαζική Επεξεργασία",s5e8250fb85d64c23:"Κλείσιμο",s625ad019db843f94:"Χρήση",sbf1ca928ec1deb62:"Χρειάζεστε περισσότερη βοήθεια;",sd1a8dc951b2b6a98:"Επιλέξτε ποια πεδία θα εμφανίζονται ως στήλες στη λίστα",sf9aee319a006c9b4:"Προσθήκη",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},nr=Object.freeze(Object.defineProperty({__proto__:null,templates:rr},Symbol.toStringTag,{value:"Module"})),lr={sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",sf9aee319a006c9b4:"Add",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog",s33f85f24c0f5f008:"Save",s49730f3d5751a433:"Loading...",s625ad019db843f94:"Use",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},dr=Object.freeze(Object.defineProperty({__proto__:null,templates:lr},Symbol.toStringTag,{value:"Module"})),cr={s8900c9de2dbae68b:"No hay opciones disponibles",sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sf9aee319a006c9b4:"Añadir",sd1a8dc951b2b6a98:"Choose which fields to display as columns in the list",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sb9b8c412407d5691:"This is where the bulk edit form will go.",sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s36cb242ac90353bc:"Fields",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading",sbf1ca928ec1deb62:"Need more help?",s226be12a5b1a27e8:"Read the documentation",s5e8250fb85d64c23:"Close",s29e25f5e4622f847:"Open Dialog"},ur=Object.freeze(Object.defineProperty({__proto__:null,templates:cr},Symbol.toStringTag,{value:"Module"})),hr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Leer la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},pr=Object.freeze(Object.defineProperty({__proto__:null,templates:hr},Symbol.toStringTag,{value:"Module"})),fr={s04ceadb276bbe149:"Cargando opciones...",s226be12a5b1a27e8:"Lee la documentación",s29e25f5e4622f847:"Abrir Diálogo",s33f85f24c0f5f008:"Guardar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edición masiva",s5e8250fb85d64c23:"Cerrar",s625ad019db843f94:"Usar",s9d51bfd93b5dbeca:"Mostrar archivado",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privado: Solo yo puedo ver su contenido",sb59d68ed12d46377:"Cargando",sbf1ca928ec1deb62:"¿Necesitas más ayuda?",scb9a1ff437efbd2a:m`Selecciona todos los ${0} que quieras actualizar del listado y actualízalos debajo`,sd1a8dc951b2b6a98:"Elige qué campos mostrar como columnas en el listado",seafe6ef133ede7da:m`Mostrando 1 de ${0}`,sf9aee319a006c9b4:"Agregar",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},br=Object.freeze(Object.defineProperty({__proto__:null,templates:fr},Symbol.toStringTag,{value:"Module"})),mr={s04ceadb276bbe149:"در حال بارگیری گزینه‌ها...",s226be12a5b1a27e8:"راهنمای سایت",s29e25f5e4622f847:"جعبه محاوره ای را باز کنید",s33f85f24c0f5f008:"صرفه جویی",s36cb242ac90353bc:"حوزه‌ها",s41cb4006238ebd3b:"ویرایش انبوه",s5e8250fb85d64c23:"بستن",s625ad019db843f94:"استفاده کنید",s9d51bfd93b5dbeca:"نمایش بایگانی شده",sac83d7f9358b43db:m`لیست ${0}`,sb1bd536b63e9e995:"زمینه خصوصی: فقط من می توانم محتوای آن را داشته باشم",sb59d68ed12d46377:"بارگیری",sbf1ca928ec1deb62:"آیا به راهنمایی بیشتری نیاز دارید؟",scb9a1ff437efbd2a:m`همۀ ${0} مورد نظر برای به روزرسانی را از لیست انتخاب کنید و آن‌ها را در زیر به روز کنید`,sd1a8dc951b2b6a98:"انتخاب کنید که کدام یک از حوزه‌ها به‌عنوان ستون در لیست نمایش داده شوند",seafe6ef133ede7da:m`نمایش 1 از ${0}`,sf9aee319a006c9b4:"افزودن",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},gr=Object.freeze(Object.defineProperty({__proto__:null,templates:mr},Symbol.toStringTag,{value:"Module"})),vr={s04ceadb276bbe149:"Chargement les options...",s226be12a5b1a27e8:"Lire la documentation",s29e25f5e4622f847:"Ouvrir la boîte de dialogue",s33f85f24c0f5f008:"sauver",s36cb242ac90353bc:"Champs",s41cb4006238ebd3b:"Modification groupée",s5e8250fb85d64c23:"Fermer",s625ad019db843f94:"Utiliser",s9d51bfd93b5dbeca:"Afficher Archivé",sac83d7f9358b43db:m`${0} Liste`,sb1bd536b63e9e995:"Champ privé : je suis le seul à voir son contenu",sb59d68ed12d46377:"Chargement",sbf1ca928ec1deb62:"Besoin d'aide ?",scb9a1ff437efbd2a:m`Sélectionnez tous les ${0} que vous souhaitez mettre à jour dans la liste et mettez-les à jour ci-dessous`,sd1a8dc951b2b6a98:"Choisissez les champs à afficher sous forme de colonnes dans la liste",seafe6ef133ede7da:m`Affichage de 1 sur ${0}`,sf9aee319a006c9b4:"Ajouter",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},yr=Object.freeze(Object.defineProperty({__proto__:null,templates:vr},Symbol.toStringTag,{value:"Module"})),_r={s226be12a5b1a27e8:"डॉक्यूमेंटेशन पढ़ें",s33f85f24c0f5f008:"बचाना",s36cb242ac90353bc:"खेत",s41cb4006238ebd3b:"थोक संपादित",s5e8250fb85d64c23:"बंद",s625ad019db843f94:"उपयोग",sbf1ca928ec1deb62:"क्या और मदद चाहिये?",sd1a8dc951b2b6a98:"सूची में कॉलम के रूप में प्रदर्शित करने के लिए कौन से फ़ील्ड चुनें",sf9aee319a006c9b4:"जोडें",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},wr=Object.freeze(Object.defineProperty({__proto__:null,templates:_r},Symbol.toStringTag,{value:"Module"})),$r={s04ceadb276bbe149:"Učitavanje opcija...",s226be12a5b1a27e8:"Pročitaj dokumentaciju",s29e25f5e4622f847:"Otvorite dijalog",s33f85f24c0f5f008:"Spremi",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Skupno uređivanje",s5e8250fb85d64c23:"Zatvoriti",s625ad019db843f94:"Koristi",s9d51bfd93b5dbeca:"Prikaži arhivirano",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Privatno polje: Samo ja mogu vidjeti njegov sadržaj",sb59d68ed12d46377:"Učitavanje",sbf1ca928ec1deb62:"Trebate li pomoć?",scb9a1ff437efbd2a:m`Odaberite sve${0}koje želite ažurirati s liste i ažurirajte ih ispod`,sd1a8dc951b2b6a98:"Izaberite polja koja će se prikazivati kao stupci na popisu",seafe6ef133ede7da:m`Prikazuje se 1 od${0}`,sf9aee319a006c9b4:"Dodaj",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},xr=Object.freeze(Object.defineProperty({__proto__:null,templates:$r},Symbol.toStringTag,{value:"Module"})),kr={s226be12a5b1a27e8:"Olvasd el a dokumentációt",s33f85f24c0f5f008:"Megment",s36cb242ac90353bc:"Mezők",s41cb4006238ebd3b:"Tömeges Szerkesztés",s5e8250fb85d64c23:"Bezár",s625ad019db843f94:"Használ",sbf1ca928ec1deb62:"Több segítség szükséges?",sd1a8dc951b2b6a98:"Válassza ki, melyik mezők jelenjenek meg oszlopként a listában",sf9aee319a006c9b4:"Hozzáadás",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Sr=Object.freeze(Object.defineProperty({__proto__:null,templates:kr},Symbol.toStringTag,{value:"Module"})),Er={s226be12a5b1a27e8:"Bacalah dokumentasi",s33f85f24c0f5f008:"Simpan",s36cb242ac90353bc:"Larik",s41cb4006238ebd3b:"Edit Massal",s5e8250fb85d64c23:"Menutup",s625ad019db843f94:"Gunakan",sbf1ca928ec1deb62:"Perlukan bantuan lagi?",sd1a8dc951b2b6a98:"Pilih larik mana yang akan ditampilkan sebagai kolom dalam daftar",sf9aee319a006c9b4:"Tambah",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ar=Object.freeze(Object.defineProperty({__proto__:null,templates:Er},Symbol.toStringTag,{value:"Module"})),Tr={s04ceadb276bbe149:"Caricando opzioni...",s226be12a5b1a27e8:"Leggi la documentazione",s29e25f5e4622f847:"Apri Dialogo",s33f85f24c0f5f008:"Salvare",s36cb242ac90353bc:"Campi",s41cb4006238ebd3b:"Modifica in blocco",s5e8250fb85d64c23:"Chiudi",s625ad019db843f94:"Uso",s9d51bfd93b5dbeca:"Visualizza Archiviati",sac83d7f9358b43db:m`${0} Lista`,sb1bd536b63e9e995:"Campo Privato: Solo io posso vedere i suoi contenuti",sb59d68ed12d46377:"Caricando",sbf1ca928ec1deb62:"Hai bisogno di ulteriore assistenza?",scb9a1ff437efbd2a:m`Seleziona tutti i ${0}vuoi aggiornare dalla lista e aggiornali sotto`,sd1a8dc951b2b6a98:"Scegli quali campi visualizzare come colonne nell'elenco",seafe6ef133ede7da:m`Visualizzando 1 di ${0}`,sf9aee319a006c9b4:"Inserisci",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},Or=Object.freeze(Object.defineProperty({__proto__:null,templates:Tr},Symbol.toStringTag,{value:"Module"})),Cr={s226be12a5b1a27e8:"ドキュメントを読む",s33f85f24c0f5f008:"セーブ",s36cb242ac90353bc:"田畑",s41cb4006238ebd3b:"一括編集",s5e8250fb85d64c23:"閉じる",s625ad019db843f94:"使用する",sbf1ca928ec1deb62:"もっと助けが必要ですか?",sd1a8dc951b2b6a98:"リストの列として表示するフィールドを選択します",sf9aee319a006c9b4:"追加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Ir=Object.freeze(Object.defineProperty({__proto__:null,templates:Cr},Symbol.toStringTag,{value:"Module"})),Lr={s226be12a5b1a27e8:"문서 읽기",s33f85f24c0f5f008:"구하다",s36cb242ac90353bc:"필드",s41cb4006238ebd3b:"대량 수정",s5e8250fb85d64c23:"닫기",s625ad019db843f94:"사용",sbf1ca928ec1deb62:"더 많은 도움이 필요하신가요?",sd1a8dc951b2b6a98:"목록에서 어떤 필드를 표시할지 고르세요",sf9aee319a006c9b4:"추가",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Pr=Object.freeze(Object.defineProperty({__proto__:null,templates:Lr},Symbol.toStringTag,{value:"Module"})),Mr={s226be12a5b1a27e8:"Прочитај ја документацијата",s33f85f24c0f5f008:"Зачувај",s36cb242ac90353bc:"Полиња",s41cb4006238ebd3b:"Уреди повеќе",s5e8250fb85d64c23:"Затвори",s625ad019db843f94:"Користи",sbf1ca928ec1deb62:"Дали ти треба повеќе помош?",sd1a8dc951b2b6a98:"Избери кои полиња да се прикажат како колони во листата",sf9aee319a006c9b4:"Додади",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},jr=Object.freeze(Object.defineProperty({__proto__:null,templates:Mr},Symbol.toStringTag,{value:"Module"})),Fr={s226be12a5b1a27e8:"कागदपत्रे वाचा.",s33f85f24c0f5f008:"जतन करा",s36cb242ac90353bc:"क्षेत्रे",s41cb4006238ebd3b:"बल्क एडिट करा",s5e8250fb85d64c23:"बंद करा",s625ad019db843f94:"वापर",sbf1ca928ec1deb62:"अधिक मदत आवश्यक आहे का?",sd1a8dc951b2b6a98:"यादीत कोणती क्षेत्रे स्तंभ म्हणून दर्शवली जावीत हे निवडा",sf9aee319a006c9b4:"समाविष्ट करा",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Fr},Symbol.toStringTag,{value:"Module"})),Dr={s226be12a5b1a27e8:"စာရွက်စာတမ်းများကိုဖတ်ပါ",s33f85f24c0f5f008:"သိမ်းဆည်းပါ",s36cb242ac90353bc:"နယ်ပယ်ဒေသများ",s5e8250fb85d64c23:"ပိတ်သည်",s625ad019db843f94:"အသုံးပြုပါ",sbf1ca928ec1deb62:"နောက်ထပ်အကူအညီလိုပါသလား။",sd1a8dc951b2b6a98:"စာရင်းရှိကော်လံများအနေဖြင့်ဖော်ပြမည့်မည်သည့်နယ်ပယ်ဒေသများကိုရွေးချယ်ပါ",sf9aee319a006c9b4:"ထည့်ပါ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s41cb4006238ebd3b:"Bulk Edit",s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Rr=Object.freeze(Object.defineProperty({__proto__:null,templates:Dr},Symbol.toStringTag,{value:"Module"})),Nr={s226be12a5b1a27e8:"कागजात पढ्नुहोस्",s33f85f24c0f5f008:"सुरक्षित गर्नुहोस",s36cb242ac90353bc:"क्षेत्रहरू",s41cb4006238ebd3b:"थोक सम्पादन",s5e8250fb85d64c23:"बन्द गर्नुहोस",s625ad019db843f94:"प्रयोग गर्नुहोस्",sbf1ca928ec1deb62:"थप मद्दत चाहिन्छ?",sd1a8dc951b2b6a98:"सूचीमा स्तम्भहरूको रूपमा कुन क्षेत्रहरू प्रदर्शन गर्ने छनौट गर्नुहोस्",sf9aee319a006c9b4:"थप",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Nr},Symbol.toStringTag,{value:"Module"})),Ur={s04ceadb276bbe149:"aan het laden.....",s226be12a5b1a27e8:"Lees de documentatie",s29e25f5e4622f847:"Dialoogvenster openen",s33f85f24c0f5f008:"Opslaan",s36cb242ac90353bc:"Velden",s41cb4006238ebd3b:"Bulkbewerking",s5e8250fb85d64c23:"sluit",s625ad019db843f94:"Gebruiken",sac83d7f9358b43db:m`${0} Lijst`,sb1bd536b63e9e995:"Privéveld: alleen ik kan de inhoud zien",sb59d68ed12d46377:"aan het laden",sbf1ca928ec1deb62:"Meer hulp nodig?",sd1a8dc951b2b6a98:"Kies welke velden u als kolommen in de lijst wilt weergeven",seafe6ef133ede7da:m`1 van ${0} laten zien`,sf9aee319a006c9b4:"Toevoegen",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,s9d51bfd93b5dbeca:"Show Archived"},Vr=Object.freeze(Object.defineProperty({__proto__:null,templates:Ur},Symbol.toStringTag,{value:"Module"})),Br={s226be12a5b1a27e8:"ਦਸਤਾਵੇਜ਼ ਪੜ੍ਹੋ",s33f85f24c0f5f008:"ਸੇਵ",s36cb242ac90353bc:"ਖੇਤਰ",s41cb4006238ebd3b:"ਥੋਕ ਸੰਪਾਦਨ",s5e8250fb85d64c23:"ਬੰਦ ਕਰੋ",s625ad019db843f94:"ਵਰਤੋਂ",sbf1ca928ec1deb62:"ਹੋਰ ਮਦਦ ਦੀ ਲੋੜ ਹੈ?",sd1a8dc951b2b6a98:"ਸੂਚੀ ਵਿੱਚ ਕਾਲਮ ਦੇ ਰੂਪ ਵਿੱਚ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕਿਹੜੇ ਖੇਤਰ ਚੁਣੋ",sf9aee319a006c9b4:"ਸ਼ਾਮਲ ਕਰੋ",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Hr=Object.freeze(Object.defineProperty({__proto__:null,templates:Br},Symbol.toStringTag,{value:"Module"})),Kr={s226be12a5b1a27e8:"Przeczytaj dokumentację",s33f85f24c0f5f008:"Zapisać",s36cb242ac90353bc:"Pola",s41cb4006238ebd3b:"Edycja zbiorcza",s5e8250fb85d64c23:"Zamknij",s625ad019db843f94:"Posługiwać się",sbf1ca928ec1deb62:"Potrzebujesz pomocy?",sd1a8dc951b2b6a98:"Wybierz, które pola mają być wyświetlane jako kolumny na liście",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Gr=Object.freeze(Object.defineProperty({__proto__:null,templates:Kr},Symbol.toStringTag,{value:"Module"})),Wr={s226be12a5b1a27e8:"Leia a documentação",s33f85f24c0f5f008:"Salvar",s36cb242ac90353bc:"Campos",s41cb4006238ebd3b:"Edição em massa",s5e8250fb85d64c23:"Fechar",s625ad019db843f94:"Usar",sbf1ca928ec1deb62:"Precisa de mais ajuda?",sd1a8dc951b2b6a98:"Escolha quais campos exibir como colunas na lista",sf9aee319a006c9b4:"Adicionar",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Zr=Object.freeze(Object.defineProperty({__proto__:null,templates:Wr},Symbol.toStringTag,{value:"Module"})),Jr={s226be12a5b1a27e8:"Citiți documentația",s33f85f24c0f5f008:"Salvați",s36cb242ac90353bc:"Câmpuri",s41cb4006238ebd3b:"Editare masivă",s5e8250fb85d64c23:"Închide",s625ad019db843f94:"Utilizare",sbf1ca928ec1deb62:"Ai nevoie de mai mult ajutor?",sd1a8dc951b2b6a98:"Alegeți câmpurile care să fie afișate în coloane în listă",sf9aee319a006c9b4:"Adăuga",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Qr=Object.freeze(Object.defineProperty({__proto__:null,templates:Jr},Symbol.toStringTag,{value:"Module"})),Xr={s226be12a5b1a27e8:"Читать документацию",s33f85f24c0f5f008:"Сохранить",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Массовое редактирование",s5e8250fb85d64c23:"Закрыть",s625ad019db843f94:"Использовать",sbf1ca928ec1deb62:"Нужна дополнительная помощь?",sd1a8dc951b2b6a98:"Выберите, какие поля отображать как столбцы в списке",sf9aee319a006c9b4:"Добавить",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},Yr=Object.freeze(Object.defineProperty({__proto__:null,templates:Xr},Symbol.toStringTag,{value:"Module"})),en={s226be12a5b1a27e8:"Preberite dokumentacijo",s33f85f24c0f5f008:"Shrani",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"Urejanje v velikem obsegu",s5e8250fb85d64c23:"Zapri",s625ad019db843f94:"Uporaba",sbf1ca928ec1deb62:"Potrebujete več pomoči?",sd1a8dc951b2b6a98:"Izberite, katera polja naj bodo prikazana kot stolpci na seznamu",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},tn=Object.freeze(Object.defineProperty({__proto__:null,templates:en},Symbol.toStringTag,{value:"Module"})),on={s226be12a5b1a27e8:"Pročitajte dokumentaciju",s33f85f24c0f5f008:"Sačuvaj",s36cb242ac90353bc:"Polja",s41cb4006238ebd3b:"masovno uređivanje",s5e8250fb85d64c23:"Zatvori",s625ad019db843f94:"Koristiti",sbf1ca928ec1deb62:"Treba vam više pomoći?",sd1a8dc951b2b6a98:"Izaberite koja polja da se prikazuju kao kolone na listi",sf9aee319a006c9b4:"Dodaj",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},sn=Object.freeze(Object.defineProperty({__proto__:null,templates:on},Symbol.toStringTag,{value:"Module"})),an={s04ceadb276bbe149:"Inapakia chaguo...",s226be12a5b1a27e8:"Soma nyaraka",s29e25f5e4622f847:"Fungua Kidirisha",s33f85f24c0f5f008:"Hifadhi",s36cb242ac90353bc:"Mashamba",s41cb4006238ebd3b:"Hariri kwa Wingi",s5e8250fb85d64c23:"Funga",s625ad019db843f94:"Tumia",s9d51bfd93b5dbeca:"Onyesha Kumbukumbu",sac83d7f9358b43db:m`Orodha ya${0}`,sb1bd536b63e9e995:"Sehemu ya Faragha: Ni mimi pekee ninayeweza kuona maudhui yake",sb59d68ed12d46377:"Inapakia",sbf1ca928ec1deb62:"Unahitaji msaada zaidi?",scb9a1ff437efbd2a:m`Chagua ${0} zote ungependa kusasisha kutoka kwenye orodha, na uzisasishe hapa chini.`,sd1a8dc951b2b6a98:"Chagua ni sehemu zipi zitaonyeshwa kama safu wima kwenye orodha",seafe6ef133ede7da:m`Inaonyesha 1 kati ya ${0}`,sf9aee319a006c9b4:"Ongeza",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},rn=Object.freeze(Object.defineProperty({__proto__:null,templates:an},Symbol.toStringTag,{value:"Module"})),nn={s226be12a5b1a27e8:"อ่านเอกสาร",s33f85f24c0f5f008:"บันทึก",s36cb242ac90353bc:"ฟิลด์",s41cb4006238ebd3b:"แก้ไขเป็นกลุ่ม",s5e8250fb85d64c23:"ปิด",s625ad019db843f94:"ใช้",sbf1ca928ec1deb62:"ต้องการความช่วยเหลือเพิ่มเติมหรือไม่?",sd1a8dc951b2b6a98:"เลือกฟิลด์ที่จะแสดงเป็นคอลัมน์ในรายการ",sf9aee319a006c9b4:"เพิ่ม",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},ln=Object.freeze(Object.defineProperty({__proto__:null,templates:nn},Symbol.toStringTag,{value:"Module"})),dn={s226be12a5b1a27e8:"Basahin ang dokumentasyon",s33f85f24c0f5f008:"I-save",s36cb242ac90353bc:"Mga Field",s41cb4006238ebd3b:"Maramihang Pag-edit",s5e8250fb85d64c23:"Isara",s625ad019db843f94:"Gamitin",sbf1ca928ec1deb62:"Kailangan mo pa ba ng tulong?",sd1a8dc951b2b6a98:"Piliin kung aling mga field ang ipapakita bilang mga column sa listahan",sf9aee319a006c9b4:"Idagdag",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},cn=Object.freeze(Object.defineProperty({__proto__:null,templates:dn},Symbol.toStringTag,{value:"Module"})),un={s04ceadb276bbe149:"Seçenekler Yükleniyor...",s226be12a5b1a27e8:"Belgeleri oku",s29e25f5e4622f847:"İletişim Kutusunu Aç",s33f85f24c0f5f008:"Kaydet",s36cb242ac90353bc:"Alanlar",s41cb4006238ebd3b:"Toplu Düzenleme",s5e8250fb85d64c23:"Kapat",s625ad019db843f94:"Kullan",s9d51bfd93b5dbeca:"Arşivlenmiş Göster",sac83d7f9358b43db:m`${0} Listesi`,sb1bd536b63e9e995:"Özel Alan: İçeriğini sadece ben görebilirim",sb59d68ed12d46377:"Yükleniyor",sbf1ca928ec1deb62:"Daha fazla yardıma ihtiyacınız var mı?",scb9a1ff437efbd2a:m`Listeden güncellemek istediğiniz tüm ${0} 'i seçin ve aşağıda güncelleyin`,sd1a8dc951b2b6a98:"Listede Hangi Alanların Sütun Olarak Görüntüleneceğini Seçin",seafe6ef133ede7da:m`Gösteriliyor 1 of ${0}`,sf9aee319a006c9b4:"Ekle",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},hn=Object.freeze(Object.defineProperty({__proto__:null,templates:un},Symbol.toStringTag,{value:"Module"})),pn={s226be12a5b1a27e8:"Прочитайте документацію",s33f85f24c0f5f008:"Зберегти",s36cb242ac90353bc:"Поля",s41cb4006238ebd3b:"Масове редагування",s5e8250fb85d64c23:"Закрити",s625ad019db843f94:"Використати",sbf1ca928ec1deb62:"Потрібна додаткова допомога?",sd1a8dc951b2b6a98:"Виберіть, яке поле відображати у вигляді стовпців у списку",sf9aee319a006c9b4:"Додати",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},fn=Object.freeze(Object.defineProperty({__proto__:null,templates:pn},Symbol.toStringTag,{value:"Module"})),bn={s226be12a5b1a27e8:"Đọc tài liệu",s33f85f24c0f5f008:"Lưu",s36cb242ac90353bc:"Trường",s41cb4006238ebd3b:"Chỉnh sửa Hàng loạt",s5e8250fb85d64c23:"Đóng",s625ad019db843f94:"Sử dụng",sbf1ca928ec1deb62:"Bạn cần trợ giúp thêm?",sd1a8dc951b2b6a98:"Chọn các trường để hiển thị dưới dạng cột trong danh sách",sf9aee319a006c9b4:"Bổ sung",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},mn=Object.freeze(Object.defineProperty({__proto__:null,templates:bn},Symbol.toStringTag,{value:"Module"})),gn={s226be12a5b1a27e8:"阅读文档",s33f85f24c0f5f008:"保存",s36cb242ac90353bc:"字段",s41cb4006238ebd3b:"批量编辑",s5e8250fb85d64c23:"关",s625ad019db843f94:"使用",sbf1ca928ec1deb62:"需要更多帮助吗?",sd1a8dc951b2b6a98:"选择哪些字段要在列表中显示为列",sf9aee319a006c9b4:"添加",sb1bd536b63e9e995:"Private Field: Only I can see its content",s04ceadb276bbe149:"Loading options...",sd2e180dab4fbcfb9:"No Data Available",s29e25f5e4622f847:"Open Dialog",s49730f3d5751a433:"Loading...",scb9a1ff437efbd2a:m`Select all the ${0} you want to update from the list, and update them below`,sac83d7f9358b43db:m`${0} List`,seafe6ef133ede7da:m`Showing 1 of ${0}`,s9d51bfd93b5dbeca:"Show Archived",sb59d68ed12d46377:"Loading"},vn=Object.freeze(Object.defineProperty({__proto__:null,templates:gn},Symbol.toStringTag,{value:"Module"})),yn={s04ceadb276bbe149:"正在載入選項...",s226be12a5b1a27e8:"閱讀文檔",s29e25f5e4622f847:"開啟對話視窗",s33f85f24c0f5f008:"儲存",s36cb242ac90353bc:"欄位",s41cb4006238ebd3b:"大量編輯",s5e8250fb85d64c23:"關",s625ad019db843f94:"使用",s9d51bfd93b5dbeca:"顯示已儲存",sac83d7f9358b43db:m`${0} 清單`,sb1bd536b63e9e995:"私人欄位:只有我可以看見內容",sb59d68ed12d46377:"載入中",sbf1ca928ec1deb62:"需要更多幫助嗎?",scb9a1ff437efbd2a:m`從清單中選取要更新的項目${0},並在下面進行更新`,sd1a8dc951b2b6a98:"選擇哪些欄位要顯示為列表中的直行",seafe6ef133ede7da:m`第1頁 (共${0}頁)`,sf9aee319a006c9b4:"新增",sd2e180dab4fbcfb9:"No Data Available",s49730f3d5751a433:"Loading..."},_n=Object.freeze(Object.defineProperty({__proto__:null,templates:yn},Symbol.toStringTag,{value:"Module"}));_.ApiService=yi,_.ComponentService=Ie,_.DtAlert=Ao,_.DtBase=N,_.DtButton=_i,_.DtChurchHealthCircle=ho,_.DtConnection=po,_.DtCopyText=bo,_.DtDate=jt,_.DtDatetime=mo,_.DtFileUpload=Eo,_.DtFormBase=M,_.DtIcon=ro,_.DtLabel=no,_.DtLocation=go,_.DtLocationMap=_o,_.DtMapModal=yo,_.DtModal=vo,_.DtMultiSelect=Ze,_.DtMultiSelectButtonGroup=So,_.DtMultiText=zt,_.DtMultiTextGroups=ko,_.DtNumberField=wo,_.DtSingleSelect=$o,_.DtTags=Ce,_.DtText=Ft,_.DtTextArea=xo,_.DtTile=To,_.DtToggle=uo,_.DtUsersConnection=fo,_.version=Va,Object.defineProperty(_,Symbol.toStringTag,{value:"Module"})}); diff --git a/dt-assets/build/manifest.json b/dt-assets/build/manifest.json index fe7cc808b7..2be5564d34 100644 --- a/dt-assets/build/manifest.json +++ b/dt-assets/build/manifest.json @@ -1,47 +1,47 @@ { - "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dark.css": { + "dt-assets/scss/login.scss": { + "file": "css/login.min.css", + "src": "dt-assets/scss/login.scss", + "isEntry": true, + "name": "login", + "names": [ + "login.css" + ] + }, + "dt-assets/scss/style.scss": { + "file": "css/style.min.css", + "src": "dt-assets/scss/style.scss", + "isEntry": true, + "name": "style", + "names": [ + "style.css" + ] + }, + "node_modules/@disciple.tools/web-components/src/styles/dark.css": { "file": "css/dark.min.css", - "src": "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dark.css", + "src": "node_modules/@disciple.tools/web-components/src/styles/dark.css", "isEntry": true, "name": "dark", "names": [ "dark.css" ] }, - "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dim.css": { + "node_modules/@disciple.tools/web-components/src/styles/dim.css": { "file": "css/dim.min.css", - "src": "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/dim.css", + "src": "node_modules/@disciple.tools/web-components/src/styles/dim.css", "isEntry": true, "name": "dim", "names": [ "dim.css" ] }, - "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/light.css": { + "node_modules/@disciple.tools/web-components/src/styles/light.css": { "file": "css/light.min.css", - "src": "../../../../../../../Documents/XG/disciple-tools/disciple-tools-web-components/src/styles/light.css", + "src": "node_modules/@disciple.tools/web-components/src/styles/light.css", "isEntry": true, "name": "light", "names": [ "light.css" ] - }, - "dt-assets/scss/login.scss": { - "file": "css/login.min.css", - "src": "dt-assets/scss/login.scss", - "isEntry": true, - "name": "login", - "names": [ - "login.css" - ] - }, - "dt-assets/scss/style.scss": { - "file": "css/style.min.css", - "src": "dt-assets/scss/style.scss", - "isEntry": true, - "name": "style", - "names": [ - "style.css" - ] } } \ No newline at end of file From 1a238eb4a3de681366481c87d4145018ddc795a5 Mon Sep 17 00:00:00 2001 From: Brady Lamansky Date: Thu, 2 Jul 2026 14:15:36 -0500 Subject: [PATCH 06/10] filters, checkboxes, comments field fixes --- archive-template.php | 50 +- dt-assets/js/modular-list-bulk.js | 6 +- dt-assets/js/modular-list.js | 800 ++++++++-------------------- dt-core/utilities/dt-components.php | 2 +- 4 files changed, 279 insertions(+), 579 deletions(-) diff --git a/archive-template.php b/archive-template.php index 2c35a3f6bf..5177134b44 100644 --- a/archive-template.php +++ b/archive-template.php @@ -960,8 +960,6 @@ class="loading-spinner">
$field => $field_options[$field] ], [], [] ); break; - case 'location_meta': - DT_Components::render_location_meta( $field, [ - $field => $field_options[$field] - ], [], [] ); - break; case 'date': DT_Components::render_date( $field, [ $field => $field_options[$field] @@ -1014,6 +1007,7 @@ class="loading-spinner"> ], [], [] ); break; case 'text': + case 'communication_channel': DT_Components::render_text( $field, [ $field => $field_options[$field] ], [], [] ); @@ -1028,11 +1022,6 @@ class="loading-spinner"> $field => $field_options[$field] ], [], [] ); break; - case 'communication_channel': - DT_Components::render_communication_channel( $field, [ - $field => $field_options[$field] - ], [], [] ); - break; case 'file_upload': ?>

Unsupported field type: ' . esc_html( $type ) . '
'; } + if ( $field_options[$field]['type'] === 'connection' ) : ?> +

+ + +

+ + +

+ +

+ + +

+ + + + +

+
diff --git a/dt-assets/js/modular-list-bulk.js b/dt-assets/js/modular-list-bulk.js index 60a0c86b5f..16a69c7ad7 100644 --- a/dt-assets/js/modular-list-bulk.js +++ b/dt-assets/js/modular-list-bulk.js @@ -536,7 +536,7 @@ if (commentFieldSelected) { // Find the comment input for the comments field const commentInput = $( - '#bulk_edit_selected_fields_container textarea[id^="bulk_comment-input_"]', + '#bulk_edit_selected_fields_container dt-textarea[id^="bulk_comment-input_"]', ); if (commentInput.length > 0) { commentPayload['commentText'] = commentInput.val(); @@ -751,8 +751,8 @@ return; // Skip normal processing for remove operations } - // Skip share field - it's handled separately via sharePayload - if (fieldType === 'share') { + // Skip share and comment fields - they are handled separately via their own payloads + if (fieldType === 'share' || fieldType === 'comment') { return; } diff --git a/dt-assets/js/modular-list.js b/dt-assets/js/modular-list.js index dc2bc52289..0c7fc1fcf2 100644 --- a/dt-assets/js/modular-list.js +++ b/dt-assets/js/modular-list.js @@ -363,23 +363,24 @@ if (current_filter.query['fields']) { let fields = []; $.each(current_filter.query['fields'], function (idx, val) { - // Do we have a match...? - let field = val[field_details.id]; - if (field) { - let field_values = []; - $.each(field, function (field_idx, field_val) { - if (id !== field_val) { - field_values.push(field_val); + let field_values = []; + + // filter out only the specific ID + if (!val[field_details.id]) { + // push the filter if it's not our field + fields.push(val); + } else if (field_details.id !== id) { + // filter the selected option if it's an array (connections) + $.each(val[field_details.id], function (i, v) { + if (v !== id.toString()) { + field_values.push(v); } }); + } - // Update new fields array, if still populated - if (field_values.length > 0) { - let updated_field = {}; - updated_field[field_details.id] = field_values; - fields.push(updated_field); - } - } else { + // if there are still connections left for this field, keep them + if (field_values.length > 0) { + val[field_details.id] = field_values; fields.push(val); } }); @@ -1394,129 +1395,77 @@ list_settings, `post_type_settings.fields.${field}.type`, ); - if (type === 'connection') { - const allConnections = $(`#${field} .all-connections`); - const withoutConnections = $(`#${field} .all-without-connections`); - if (allConnections.prop('checked') === true) { - search_query.push({ [field]: [ALL_ID] }); - } else if (withoutConnections.prop('checked') === true) { - search_query.push({ [field]: [ALL_WITHOUT_ID] }); - } else { - search_query.push({ - [field]: adjust_search_query_filter_states( - field, - type, - window.lodash.map( - window.lodash.get( - window.Typeahead[`.js-typeahead-${field}`], - 'items', - ), - 'ID', - ), - ), - }); - } - } - if (type === 'user_select') { - search_query.push({ - [field]: adjust_search_query_filter_states( - field, - type, - window.lodash.map( - window.lodash.get( - window.Typeahead[`.js-typeahead-${field}`], - 'items', - ), - 'ID', - ), - ), - }); - } else if (type === 'multi_select') { - search_query.push({ - [field]: adjust_search_query_filter_states( - field, - type, - window.lodash.map( - window.lodash.get( - window.Typeahead[`.js-typeahead-${field}`], - 'items', - ), - 'key', - ), - ), - }); - } else if (type === 'tags') { - search_query.push({ - [field]: adjust_search_query_filter_states( - field, - type, - window.lodash.map( - window.lodash.get( - window.Typeahead[`.js-typeahead-${field}`], - 'items', - ), - 'key', - ), - ), - }); - } else if (type === 'location' || type === 'location_meta') { - search_query.push({ - location_grid: adjust_search_query_filter_states( - 'location_grid', - type, - window.lodash.map( - window.lodash.get( - window.Typeahead[`.js-typeahead-${field}`], - 'items', - ), - 'ID', - ), - ), - }); - } else if (type === 'date' || type === 'datetime') { - let date = {}; - let start = $( - `.dt_date_picker[data-field="${field}"][data-delimit="start"]`, - ).val(); - if (start) { - date.start = start; - } - let end = $( - `.dt_date_picker[data-field="${field}"][data-delimit="end"]`, - ).val(); - if (end) { - date.end = end; - } - search_query.push({ [field]: date }); - } else if (type === 'text' || type === 'communication_channel') { - let filter = $('#' + field + '_text_comms_filter').val(); - let value = filter; - - switch ($('.filter-by-text-comms-option:checked').val()) { - case 'all-with-set-value': { - value = '*'; - break; - } - case 'all-without-set-value': { - value = null; - break; + let customComponent = document.querySelector( + `dt-toggle[name="${field}"], dt-tags[name="${field}"], dt-date[name="${field}"], dt-location[name="${field}"], dt-users-connection[name="${field}"], dt-connection[name="${field}"], dt-single-select[name="${field}"], dt-multi-select[name="${field}"], dt-multi-select-button-group[name="${field}"], dt-multi-text[name="${field}"], dt-text[name="${field}"]`, + ); + + if (customComponent) { + let val = []; + + if (type === 'connection') { + val = customComponent.value + .filter((label) => !label.delete) + .map((item) => item.id); + const allConnections = $(`#${field} .all-connections`); + const withoutConnections = $(`#${field} .all-without-connections`); + if (allConnections.prop('checked') === true) { + search_query.push({ [field]: [ALL_ID] }); + } else if (withoutConnections.prop('checked') === true) { + search_query.push({ [field]: [ALL_WITHOUT_ID] }); + } else { + search_query.push({ + [field]: adjust_search_query_filter_states(field, type, val), + }); } - case 'all-with-filtered-value': { - value = filter; - break; + } else if (type === 'text' || type === 'communication_channel') { + val = customComponent.value; + + switch ($('.filter-by-text-comms-option:checked').val()) { + case 'all-with-set-value': { + val = '*'; + break; + } + case 'all-without-set-value': { + val = null; + break; + } + case 'all-with-filtered-value': { + val = customComponent.value; + break; + } + case 'all-without-filtered-value': { + val = '-' + customComponent.value; + break; + } } - case 'all-without-filtered-value': { - value = '-' + filter; - break; + + search_query.push({ [field]: val !== null ? [val] : [] }); + } else { + // Extract the value from each field type + if (type === 'user_select' || type === 'location') { + val = customComponent.value + .filter((label) => !label.delete) + .map((item) => item.id); + } else if (type === 'multi_select' || type === 'tags') { + val = customComponent.value.filter( + (label) => label.charAt(0) !== '-', + ); + } else { + // For single selects or toggles + val = customComponent.value ? [customComponent.value] : []; } - } - // Package accordingly based on field type. - switch (type) { - case 'text': - case 'communication_channel': { - search_query.push({ [field]: value !== null ? [value] : [] }); - break; + if (val && val.length > 0) { + // replace any '<' or '>' characters to save properly + val = val.map((v) => + typeof v === 'string' + ? v.replace(//g, '>') + : v, + ); + + search_query.push({ + [field]: adjust_search_query_filter_states(field, type, val), + }); } } } else if (type === 'file_upload') { @@ -1684,7 +1633,6 @@ // Prefix exclusion flag, accordingly return (excluded.length > 0 ? '-' : '') + value; }); - return adjusted_filters; } @@ -1790,6 +1738,12 @@ `post_type_settings.fields.${field}.name`, field, ); + if ( + typeof value === 'string' && + (value.includes('<') || value.includes('>')) + ) { + value = value.replace(//g, '>'); + } const filterName = `${name}: ${value}`; return { newLabel: { id, name: filterName, field }, @@ -1801,31 +1755,11 @@ let name = window.lodash.get( listSettings, `post_type_settings.fields.location_grid.name`, - 'location_grid', - ); - return { - newLabel: { id, name: `${name}: ${value}`, field, type: 'location_grid' }, - name, - }; - } - - function create_date_label(field, date, delimiter) { - let field_name = window.lodash.get( - list_settings, - `post_type_settings.fields.${field}.name`, field, ); - let delimiter_label = list_settings.translations[`range_${delimiter}`]; - return { - newLabel: { - id: `${field}_${delimiter}`, - name: `${field_name} ${delimiter_label}: ${date}`, - field, - date: date, - }, - field_name, - delimiter_label, + newLabel: { id, name: `${name}: ${value}`, field, type: field }, + name, }; } @@ -1916,7 +1850,7 @@ const { id, field } = options || { id: null, field: null }; if (id && field) { // Adjust filter text field state accordingly, based on option selection. - let filter_text_field = $('#' + field + '_text_comms_filter'); + let filter_text_field = $('#' + field); $(filter_text_field).prop( 'disabled', ['all-with-set-value', 'all-without-set-value'].includes(id), @@ -1976,9 +1910,16 @@ if ( ['all-with-filtered-value', 'all-without-filtered-value'].includes(id) ) { - let filtered_value = $(`#${field}_text_comms_filter`).val(); + let filtered_value = document.querySelector( + `dt-multi-text#${field}, dt-text#${field}`, + ).value; + if (Array.isArray(filtered_value)) { + filtered_value = filtered_value + .filter((label) => label.value.length > 0) + .map((item) => item.value); + } newLabel['name'] = - filterName = `${esc(list_settings.post_type_settings.fields[field] ? list_settings.post_type_settings.fields[field].name : '')}: ${esc(filtered_value)}`; + filterName = `${esc(list_settings.post_type_settings.fields[field] ? list_settings.post_type_settings.fields[field].name : '')}: ${filtered_value}`; } selected_filters.append( @@ -2008,186 +1949,116 @@ (label) => label.field !== field, ); $(selected_filters).find(`.current-filter.${field}`).remove(); - - selected_filters.append( - `${filterName}`, - ); - new_filter_labels.push(newLabel); } + // attach .on('change') to all dt-* fields + $(document).on( + 'change', + 'dt-location, dt-toggle, dt-tags, dt-date, dt-users-connection, dt-connection, dt-single-select, dt-multi-select, dt-multi-select-button-group, dt-multi-text, dt-text', + function (e) { + const element = e.target; + const tagName = element.tagName.toLowerCase(); + const nameAttr = element.name ? ` name="${element.name}"` : ''; + const idAttr = element.id ? ` id="${element.id}"` : ''; + const classAttr = element.className + ? ` class="${element.className}"` + : ''; - let load_multi_select_typeaheads = - async function load_multi_select_typeaheads() { - for (let input of $( - '#filter-modal .multi_select .typeahead__query input', - )) { - let field = $(input).data('field'); - let typeahead_name = `.js-typeahead-${field}`; + let val = []; - if (window.Typeahead[typeahead_name]) { - return; - } + // If the element is an array ('delete' property used to track deleted items) + if ( + tagName == 'dt-connection' || + tagName == 'dt-users-connection' || + tagName == 'dt-location' + ) { + // Get array of values without 'delete' property + val = Array.isArray(e.target.value) + ? e.target.value.filter((label) => !label.delete) + : []; + const fieldName = e.target.name; - let source_data = { data: [] }; - let field_options = window.lodash.get( - list_settings, - `post_type_settings.fields.${field}.default`, - {}, + // Find labels that are no longer in the component's value + const labelsToRemove = new_filter_labels.filter( + (label) => + label.field === fieldName && + !val.some((item) => item.id === label.id), ); - if (Object.keys(field_options).length > 0) { - window.lodash.forOwn(field_options, (val, key) => { - if (!val.deleted) { - source_data.data.push({ - key: key, - name: key, - value: val.label || key, - }); - } - }); - } else { - source_data = { - [field]: { - display: ['value'], - ajax: { - url: - window.wpApiShare.root + - `dt-posts/v2/${list_settings.post_type}/multi-select-values`, - data: { - s: '{{query}}', - field, - }, - beforeSend: function (xhr) { - xhr.setRequestHeader('X-WP-Nonce', window.wpApiShare.nonce); - }, - callback: { - done: function (data) { - return (data || []).map((tag) => { - let label = window.lodash.get( - field_options, - tag + '.label', - tag, - ); - return { value: label, key: tag }; - }); - }, - }, - }, - }, - }; - } - $.typeahead({ - input: `.js-typeahead-${field}`, - minLength: 0, - maxItem: 20, - searchOnFocus: true, - template: function (query, item) { - return `${window.SHAREDFUNCTIONS.escapeHTML(item.value)}`; - }, - source: source_data, - display: 'value', - templateValue: '{{value}}', - dynamic: true, - multiselect: { - matchOn: ['key'], - data: [], - callback: { - onCancel: function (node, item) { - $(`.current-filter[data-id="${item.key}"].${field}`).remove(); - window.lodash.pullAllBy( - new_filter_labels, - [{ id: item.key }], - 'id', - ); - }, - }, - }, - callback: { - onClick: function (node, a, item) { - const { newLabel, name } = create_name_value_label( - field, - item.key, - item.value, - list_settings, - ); - selected_filters.append( - `${window.SHAREDFUNCTIONS.escapeHTML(name)}:${window.SHAREDFUNCTIONS.escapeHTML(item.value)}`, - ); - new_filter_labels.push(newLabel); - }, - onResult: function (node, query, result, resultCount) { - let text = window.TYPEAHEADS.typeaheadHelpText( - resultCount, - query, - result, - ); - $(`#${field}-result-container`).html(text); - }, - onHideLayout: function () { - $(`#${field}-result-container`).html(''); - }, - }, + + labelsToRemove.forEach((label) => { + // Remove the specific span + $( + `.current-filter[data-id="${window.SHAREDFUNCTIONS.escapeHTML(label.id)}"].${window.SHAREDFUNCTIONS.escapeHTML(fieldName)}`, + ).remove(); + new_filter_labels = new_filter_labels.filter( + (existingLabel) => + existingLabel.id !== label.id || + existingLabel.field !== fieldName, + ); }); - } - }; - let load_post_type_typeaheads = () => { - $(".typeahead__query [data-type='connection']").each((key, el) => { - let field_key = $(el).data('field'); - let post_type = window.lodash.get( - list_settings, - `post_type_settings.fields.${field_key}.post_type`, - field_key, - ); - if (!window.Typeahead[`.js-typeahead-${field_key}`]) { - $.typeahead({ - input: `.js-typeahead-${field_key}`, - minLength: 0, - accent: true, - searchOnFocus: true, - maxItem: 20, - template: function (query, item) { - return `${window.SHAREDFUNCTIONS.escapeHTML(item.name)} (#${window.SHAREDFUNCTIONS.escapeHTML(item.ID)})`; - }, - source: window.TYPEAHEADS.typeaheadPostsSource(post_type), - display: 'name', - templateValue: '{{name}}', - dynamic: true, - multiselect: { - matchOn: ['ID'], - data: [], - callback: { - onCancel: function (node, item, event) { - remove_filter_labels(item.ID, field_key); - }, - }, - }, - callback: { - onResult: function (node, query, result, resultCount) { - let text = window.TYPEAHEADS.typeaheadHelpText( - resultCount, - query, - result, - ); - $(`#${field_key}-result-container`).html(text); - }, - onHideLayout: function () { - $(`#${field_key}-result-container`).html(''); - }, - onClick: function (node, a, item) { - const { newLabel } = create_value_label( - field_key, - item.ID, - item.name, - ); - new_filter_labels.push(newLabel); - selected_filters.append( - `${window.SHAREDFUNCTIONS.escapeHTML(item.name)}`, - ); - }, - }, + // Loop through newly added labels, creating one label for each value + val.forEach((item) => { + const exists = new_filter_labels.some( + (label) => label.field === fieldName && label.id === item.id, + ); + + if (!exists) { + // Create correct label based on the tag + const { newLabel } = + tagName === 'dt-location' + ? create_location_label( + fieldName, + item.id, + item.label, + list_settings, + ) + : create_value_label(fieldName, item.id, item.label); + + selected_filters.append( + `${window.SHAREDFUNCTIONS.escapeHTML(item.label)}`, + ); + new_filter_labels.push(newLabel); + } }); + } else { + // Else, if the element is a select array ('-' used to track deleted items) + if ( + tagName == 'dt-multi-select' || + tagName == 'dt-multi-select-button-group' || + tagName == 'dt-tags' + ) { + val = e.target.value.filter((label) => label.charAt(0) !== '-'); + } else if (tagName == 'dt-multi-text') { + // Else, if the element is a text array + val = e.target.value + .filter((label) => label.value.length > 0) + .map((item) => item.value); + } else { + // All other elements + val = e.target.value; + } + + if (val.length == 0) { + val = false; + } + + const { newLabel, name } = create_name_value_label( + e.target.name, + e.target.name, + val, + list_settings, + ); + + remove_all_filter_labels(e.target.name); + if (val) { + selected_filters.append( + `${window.SHAREDFUNCTIONS.escapeHTML(name)}: ${window.SHAREDFUNCTIONS.escapeHTML(val)}`, + ); + new_filter_labels.push(newLabel); + } } - }); - }; + }, + ); const remove_filter_labels = (id, field_key) => { $(`.current-filter[data-id="${id}"].${field_key}`).remove(); @@ -2205,68 +2076,6 @@ ids.forEach((id) => remove_filter_labels(id, field_key)); }; - let load_user_select_typeaheads = () => { - $(".typeahead__query [data-type='user_select']").each((key, el) => { - let field_key = $(el).data('field'); - if (!window.Typeahead[`.js-typeahead-${field_key}`]) { - $.typeahead({ - input: `.js-typeahead-${field_key}`, - minLength: 0, - accent: true, - searchOnFocus: true, - maxItem: 20, - template: function (query, item) { - return `${window.SHAREDFUNCTIONS.escapeHTML(item.name)} (#${window.SHAREDFUNCTIONS.escapeHTML(item.ID)})`; - }, - source: window.TYPEAHEADS.typeaheadUserSource(), - display: 'name', - templateValue: '{{name}}', - dynamic: true, - multiselect: { - matchOn: ['ID'], - data: [], - callback: { - onCancel: function (node, item) { - $( - `.current-filter[data-id="${item.ID}"].${field_key}`, - ).remove(); - window.lodash.pullAllBy( - new_filter_labels, - [{ id: item.ID }], - 'id', - ); - }, - }, - }, - callback: { - onResult: function (node, query, result, resultCount) { - let text = window.TYPEAHEADS.typeaheadHelpText( - resultCount, - query, - result, - ); - $(`#${field_key}-result-container`).html(text); - }, - onHideLayout: function () { - $(`#${field_key}-result-container`).html(''); - }, - onClick: function (node, a, item) { - const { newLabel } = create_value_label( - field_key, - item.ID, - item.name, - ); - new_filter_labels.push(newLabel); - selected_filters.append( - `${window.SHAREDFUNCTIONS.escapeHTML(item.name)}`, - ); - }, - }, - }); - } - }); - }; - /** * Location */ @@ -2274,143 +2083,12 @@ delete window.location_data; }); - let load_location_typeahead = () => { - let key = 'location_grid'; - if ($('.js-typeahead-location_grid_meta').length) { - key = 'location_grid_meta'; - } - if (!window.Typeahead[`.js-typeahead-${key}`]) { - // Ensure element is present before proceeding! - if ( - $('.js-typeahead-' + window.SHAREDFUNCTIONS.escapeHTML(key)).length > 0 - ) { - $.typeahead({ - input: `.js-typeahead-${window.SHAREDFUNCTIONS.escapeHTML(key)}`, - minLength: 0, - accent: true, - searchOnFocus: true, - maxItem: 20, - dropdownFilter: [ - { - key: 'group', - value: 'used', - template: window.SHAREDFUNCTIONS.escapeHTML( - window.wpApiShare.translations.used_locations, - ), - all: window.SHAREDFUNCTIONS.escapeHTML( - window.wpApiShare.translations.all_locations, - ), - }, - ], - source: { - used: { - display: 'name', - ajax: { - url: - window.wpApiShare.root + - 'dt/v1/mapping_module/search_location_grid_by_name', - data: { - s: '{{query}}', - filter: function () { - return window.lodash.get( - window.Typeahead[`.js-typeahead-${key}`].filters.dropdown, - 'value', - 'all', - ); - }, - }, - beforeSend: function (xhr) { - xhr.setRequestHeader('X-WP-Nonce', window.wpApiShare.nonce); - }, - callback: { - done: function (data) { - if (typeof window.typeaheadTotals !== 'undefined') { - window.typeaheadTotals.field = data.total; - } - return data.location_grid; - }, - }, - }, - }, - }, - display: 'name', - templateValue: '{{name}}', - dynamic: true, - multiselect: { - matchOn: ['ID'], - data: [], - callback: { - onCancel: function (node, item) { - $( - `.current-filter[data-id="${item.ID}"].location_grid`, - ).remove(); - window.lodash.pullAllBy( - new_filter_labels, - [{ id: item.ID }], - 'id', - ); - }, - }, - }, - callback: { - onResult: function (node, query, result, resultCount) { - let text = window.TYPEAHEADS.typeaheadHelpText( - resultCount, - query, - result, - ); - $('#location_grid-result-container').html(text); - }, - onReady() { - this.filters.dropdown = { - key: 'group', - value: 'used', - template: window.SHAREDFUNCTIONS.escapeHTML( - window.wpApiShare.translations.used_locations, - ), - }; - this.container - .removeClass('filter') - .find('.' + this.options.selector.filterButton) - .html( - window.SHAREDFUNCTIONS.escapeHTML( - window.wpApiShare.translations.used_locations, - ), - ); - }, - onHideLayout: function () { - $('#location_grid-result-container').html(''); - }, - onClick: function (node, a, item) { - const { name, newLabel } = create_location_label( - key, - item.ID, - item.name, - list_settings, - ); - new_filter_labels.push(newLabel); - selected_filters.append( - `${window.SHAREDFUNCTIONS.escapeHTML(name)}:${window.SHAREDFUNCTIONS.escapeHTML(item.name)}`, - ); - }, - }, - }); - } - } - }; - /* * Setup filter box */ let typeaheads_loaded = null; $('#filter-modal').on('open.zf.reveal', function () { new_filter_labels = []; - load_location_typeahead(); - load_post_type_typeaheads(); - load_user_select_typeaheads(); - typeaheads_loaded = load_multi_select_typeaheads().catch((err) => { - console.error(err); - }); $('#new-filter-name').val(''); $('#filter-modal input.dt_date_picker').each(function () { $(this).val(''); @@ -2428,15 +2106,43 @@ $('.typeahead__query input').each(function () { let typeahead = window.Typeahead['.' + $(this).attr('class').split(/\s+/)[0]]; - if (typeahead && typeahead.items) { - for (let i = 0; i < typeahead.items.length; i) { - typeahead.cancelMultiselectItem(0); - } - typeahead.node.trigger('propertychange.typeahead'); - } }); - $('#confirm-filter-records').show(); - $('#save-filter-edits').hide(); + }); + // On close, reset all field values + $('#filter-modal').on('closed.zf.reveal', function () { + $(this) + .find( + 'dt-location, dt-location, dt-toggle, dt-tags, dt-date, dt-users-connection, dt-connection, dt-single-select, dt-multi-select, dt-multi-select-button-group, dt-multi-text, dt-text', + ) + .each(function () { + const tagName = this.tagName.toLowerCase(); + + // Reset array-based components + if ( + [ + 'dt-connection', + 'dt-users-connection', + 'dt-location-map', + 'dt-multi-select', + 'dt-multi-select-button-group', + 'dt-tags', + 'dt-multi-text', + ].includes(tagName) + ) { + this.value = []; + } else { + // Reset text and single-select + if (this.shadowRoot) { + const shadowChildren = + this.shadowRoot.querySelectorAll('[selected]'); + shadowChildren.forEach((child) => { + child.removeAttribute('selected'); + child.selected = false; + }); + } + this.value = ''; + } + }); }); var clicked; @@ -2614,38 +2320,6 @@ } }); - $('#filter-modal .dt_date_picker').datepicker({ - constrainInput: false, - dateFormat: 'yy-mm-dd', - onSelect: function (date) { - let id = $(this).data('field'); - let delimiter = $(this).data('delimit'); - //remove existing filters - window.lodash.pullAllBy( - new_filter_labels, - [{ id: `${id}_${delimiter}` }], - 'id', - ); - $(`.current-filter[data-id="${id}_${delimiter}"]`).remove(); - const { newLabel, field_name, delimiter_label } = create_date_label( - id, - date, - delimiter, - ); - //add new filters - new_filter_labels.push(newLabel); - selected_filters.append(` - - ${field_name} ${delimiter_label}:${date} - - `); - }, - changeMonth: true, - changeYear: true, - yearRange: '-20:+10', - }); - $('#filter-modal .clear-date-picker').on('click', function () { let id = $(this).data('for'); $(`#filter-modal #${id}`).datepicker('setDate', null); diff --git a/dt-core/utilities/dt-components.php b/dt-core/utilities/dt-components.php index 307dc692f7..49cd0f3656 100644 --- a/dt-core/utilities/dt-components.php +++ b/dt-core/utilities/dt-components.php @@ -341,7 +341,7 @@ public static function render_user_select( $field_key, $fields, $post, $params = ?> value="" - single> + > Date: Wed, 8 Jul 2026 14:41:50 -0500 Subject: [PATCH 07/10] fix: date range, select/boolean checkboxes, misc date filter fixes --- archive-template.php | 61 ++++++-- dt-assets/js/modular-list.js | 212 ++++++++++++---------------- dt-core/utilities/dt-components.php | 2 +- 3 files changed, 142 insertions(+), 133 deletions(-) diff --git a/archive-template.php b/archive-template.php index 5177134b44..67ddc27aff 100644 --- a/archive-template.php +++ b/archive-template.php @@ -961,10 +961,22 @@ class="loading-spinner"> $field_options[$field] - ], [], [] ); + case 'key_select':?> +
$option_value ) : + $label = $option_value['label'] ?? ''; + if ( empty( $label ) && ( $option_key === '' || $option_key === 'none' ) ){ + $label = esc_html__( 'None Set', 'disciple_tools' ); + } + ?> +
+ +
+
case 'connection': DT_Components::render_connection( $field, [ $field => $field_options[$field] - ], [], [] ); + ], [], [ 'allow_add' => false ] ); break; case 'location': DT_Components::render_location( $field, [ @@ -992,8 +1004,22 @@ class="loading-spinner"> ], [], [] ); break; case 'date': - DT_Components::render_date( $field, [ - $field => $field_options[$field] + DT_Components::render_date( $field . '_start', [ + $field . '_start' => [ + 'name' => $field_options[$field]['name'] . ' Start', + 'type' => $field_options[$field]['type'], + 'icon' => $field_options[$field]['icon'] + ] + ], [], [] ); + ?> +
+ [ + 'name' => $field_options[$field]['name'] . ' End', + 'type' => $field_options[$field]['type'], + 'icon' => $field_options[$field]['icon'] + ] ], [], [] ); break; case 'datetime': @@ -1001,10 +1027,23 @@ class="loading-spinner"> $field => $field_options[$field] ], [], [] ); break; - case 'boolean': - DT_Components::render_toggle( $field, [ - $field => $field_options[$field] - ], [], [] ); + case 'boolean':?> +
+
+ +
+
+ +
+
key !== fieldKey); - $('#selected_fields_input').val(JSON.stringify(selectedFields)); - - // Remove visual tag - $(this).closest('.enabled-field-tag').remove(); - - // Show "no fields selected" message if empty - if (selectedFields.length === 0) { - $('#enabled_fields_container').html( - 'No fields selected', - ); - } - }); - $('#save_column_choices').on('click', function () { let selectedFields; try { @@ -895,7 +891,9 @@ console.error('Error parsing selected fields JSON:', e); selectedFields = []; } - fields_to_show_in_table = selectedFields; + fields_to_show_in_table = selectedFields.filter( + (label) => label.charAt(0) !== '-', + ); window.SHAREDFUNCTIONS.save_json_cookie( 'fields_to_show_in_table', fields_to_show_in_table, @@ -1477,6 +1475,17 @@ } else if (selectedOption === 'all-without-files') { search_query.push({ [field]: [] }); } + } else if (type === 'date' || type === 'datetime') { + let date = {}; + let start = $(`#${field}_start`).val(); + if (start) { + date.start = start; + } + let end = $(`#${field}_end`).val(); + if (end) { + date.end = end; + } + search_query.push({ [field]: date }); } else { let options = []; $(`#${field}-options input:checked`).each(function () { @@ -1751,6 +1760,26 @@ }; } + function create_date_label(field, date, delimiter) { + let field_name = window.lodash.get( + list_settings, + `post_type_settings.fields.${field}.name`, + field, + ); + + let delimiter_label = list_settings.translations[`range_${delimiter}`]; + + return { + newLabel: { + id: `${field}_${delimiter}`, + name: `${field_name} ${delimiter_label}: ${date}`, + field, + date: date, + }, + field_name: `${field_name} ${delimiter_label}`, + }; + } + function create_location_label(field, id, value, listSettings) { let name = window.lodash.get( listSettings, @@ -1771,67 +1800,6 @@ $('.all-without-connections').on('click', without_connections_handler); - $('.text-comms-filter-input').on('keyup', function (e) { - // Ensure to assign default settings accordingly. - const field = $(e.target).data('field'); - const panel = $(`#${field}.tabs-panel`); - const field_settings = list_settings?.post_type_settings?.fields[field]; - if (panel && field_settings && field_settings['type']) { - switch (field_settings['type']) { - case 'text': - case 'communication_channel': { - const checked_options = $(panel).find( - `.filter-by-text-comms-option:checked`, - ); - const existing_label = new_filter_labels.find( - (label) => label['field'] === field, - ); - - // Only apply default settings if unable to detect and previous selections. - if (checked_options.length === 0 && existing_label === undefined) { - const default_option = $(panel).find( - `.filter-by-text-comms-option[value="all-with-filtered-value"]`, - ); - if (default_option) { - $(default_option).prop('checked', true); - $(default_option).trigger('click'); - } - } - - // Update label with latest filtered value. - const filtered_value = $(e.target).val(); - const latest_checked_option = $(panel).find( - `.filter-by-text-comms-option:checked`, - ); - const latest_existing_label = new_filter_labels.find( - (label) => label['field'] === field, - ); - if ( - latest_checked_option.length === 1 && - latest_existing_label !== undefined && - ['all-with-filtered-value', 'all-without-filtered-value'].includes( - $(latest_checked_option).val(), - ) - ) { - const updated_label_text = `${esc(list_settings.post_type_settings.fields[field] ? list_settings.post_type_settings.fields[field].name : '')}: ${esc(filtered_value)}`; - $(selected_filters) - .find( - `.current-filter[data-id="${$(latest_checked_option).val()}"].${field}`, - ) - .text(updated_label_text); - - // Update global filter labels array. - const label_idx = new_filter_labels.findIndex( - (label) => label['field'] === field, - ); - new_filter_labels[label_idx]['name'] = updated_label_text; - } - break; - } - } - } - }); - $('.filter-by-text-comms-option').on('click', function (e) { handle_filter_by_text_comms({ id: $(this).val(), @@ -2020,19 +1988,43 @@ new_filter_labels.push(newLabel); } }); + } else if (tagName == 'dt-date') { + // Else, if the element is a date + val = e.target.value; + + const fieldName = e.target.name || ''; + const delimiter = fieldName.endsWith('_start') + ? 'start' + : fieldName.endsWith('_end') + ? 'end' + : ''; + const id = fieldName.replace(/_(start|end)$/, ''); + + const { newLabel, field_name } = create_date_label(id, val, delimiter); + remove_all_filter_labels(fieldName); + + if (val) { + selected_filters.append( + `${window.SHAREDFUNCTIONS.escapeHTML(field_name)}: ${window.SHAREDFUNCTIONS.escapeHTML(val)}`, + ); + new_filter_labels.push(newLabel); + } } else { // Else, if the element is a select array ('-' used to track deleted items) if ( tagName == 'dt-multi-select' || - tagName == 'dt-multi-select-button-group' || - tagName == 'dt-tags' + tagName == 'dt-multi-select-button-group' ) { val = e.target.value.filter((label) => label.charAt(0) !== '-'); - } else if (tagName == 'dt-multi-text') { - // Else, if the element is a text array - val = e.target.value - .filter((label) => label.value.length > 0) - .map((item) => item.value); + // parse through each val, and find the corresponding label from e.target.options + val = val.map((value) => { + const selectedOption = Array.from(e.target.options).find( + (option) => option.id === value, + ); + return selectedOption ? selectedOption.label : false; + }); + } else if (tagName == 'dt-tags') { + val = e.target.value.filter((label) => label.charAt(0) !== '-'); } else { // All other elements val = e.target.value; @@ -2112,17 +2104,18 @@ $('#filter-modal').on('closed.zf.reveal', function () { $(this) .find( - 'dt-location, dt-location, dt-toggle, dt-tags, dt-date, dt-users-connection, dt-connection, dt-single-select, dt-multi-select, dt-multi-select-button-group, dt-multi-text, dt-text', + 'dt-location, dt-toggle, dt-tags, dt-date, dt-users-connection, dt-connection, dt-single-select, dt-multi-select, dt-multi-select-button-group, dt-multi-text, dt-text', ) .each(function () { const tagName = this.tagName.toLowerCase(); - // Reset array-based components - if ( + if (tagName === 'dt-date') { + this.reset(); + } else if ( [ 'dt-connection', 'dt-users-connection', - 'dt-location-map', + 'dt-single-select', 'dt-multi-select', 'dt-multi-select-button-group', 'dt-tags', @@ -2155,22 +2148,6 @@ $(document).mouseup(function (e) { clicked = null; }); - $('#filter-modal input.dt_date_picker').on('blur', function (e) { - if (clicked && clicked.closest('.ui-datepicker').length === 1) { - // we have clicked in the datepicker, so don't run the blur - return; - } - // delay the blur so that if the user has clicked we get the correct date from the input - setTimeout(() => { - if (!e.target.value) { - const clearButton = $(this).prev('.clear-date-picker'); - clearButton.click(); - return; - } - $(this).datepicker('setDate', e.target.value); - $('.ui-datepicker-current-day').click(); - }, 100); - }); function edit_saved_filter(filter) { $('#filter-modal').foundation('open'); @@ -2320,13 +2297,6 @@ } }); - $('#filter-modal .clear-date-picker').on('click', function () { - let id = $(this).data('for'); - $(`#filter-modal #${id}`).datepicker('setDate', null); - window.lodash.pullAllBy(new_filter_labels, [{ id: `${id}` }], 'id'); - $(`.current-filter[data-id="${id}"]`).remove(); - }); - //save the filter in the user meta $(`#confirm-filter-save`).on('click', function () { let filterName = $('#filter-name').val(); diff --git a/dt-core/utilities/dt-components.php b/dt-core/utilities/dt-components.php index a62fad36b8..8462fe8557 100644 --- a/dt-core/utilities/dt-components.php +++ b/dt-core/utilities/dt-components.php @@ -322,7 +322,7 @@ public static function render_toggle( $field_key, $fields, $post, $params = [] ) $shared_attributes = self::shared_attributes( $field_key, $fields, $post, $params ); ?> - > + > Date: Mon, 20 Jul 2026 09:59:56 -0500 Subject: [PATCH 08/10] removed unneeded code --- archive-template.php | 103 ++++----- dt-assets/js/modular-list.js | 390 ++++++++++++++++------------------- dt-users/users.php | 36 +++- 3 files changed, 271 insertions(+), 258 deletions(-) diff --git a/archive-template.php b/archive-template.php index 67ddc27aff..e576843beb 100644 --- a/archive-template.php +++ b/archive-template.php @@ -963,6 +963,14 @@ class="loading-spinner"> switch ( $type ) { case 'key_select':?>
+
+ +
+ $option_value ) : $label = $option_value['label'] ?? ''; if ( empty( $label ) && ( $option_key === '' || $option_key === 'none' ) ){ @@ -979,29 +987,45 @@ class="loading-spinner"> ?>
$field_options[$field] - ], [], [] ); + ], [], [ 'hide_label' => true, 'placeholder' => __( 'Type to search', 'disciple_tools' ) ] ); break; case 'tags': DT_Components::render_tags( $field, [ $field => $field_options[$field] - ], [], [] ); + ], [], [ 'allow_add' => false, 'hide_label' => true, 'placeholder' => __( 'Type to search', 'disciple_tools' ) ] ); break; case 'user_select': DT_Components::render_user_select( $field, [ $field => $field_options[$field] - ], [], [] ); + ], [], [ 'hide_label' => true, 'placeholder' => __( 'Type to search', 'disciple_tools' ) ] ); break; case 'connection': DT_Components::render_connection( $field, [ $field => $field_options[$field] - ], [], [ 'allow_add' => false ] ); + ], [], [ 'allow_add' => false, 'hide_label' => true, 'placeholder' => __( 'Type to search', 'disciple_tools' ) ] ); + ?>

+ + +

+

+ +

+ $field_options[$field] - ], [], [] ); + ], [], [ 'hide_label' => true, 'placeholder' => __( 'Type to search', 'disciple_tools' ) ] ); break; case 'date': DT_Components::render_date( $field . '_start', [ @@ -1010,7 +1034,7 @@ class="loading-spinner"> 'type' => $field_options[$field]['type'], 'icon' => $field_options[$field]['icon'] ] - ], [], [] ); + ], [], [ 'hide_label' => true ] ); ?>
'type' => $field_options[$field]['type'], 'icon' => $field_options[$field]['icon'] ] - ], [], [] ); + ], [], [ 'hide_label' => true ] ); break; case 'datetime': DT_Components::render_datetime( $field, [ $field => $field_options[$field] - ], [], [] ); + ], [], [ 'hide_label' => true ] ); break; case 'boolean':?>
@@ -1049,17 +1073,37 @@ class="loading-spinner"> case 'communication_channel': DT_Components::render_text( $field, [ $field => $field_options[$field] - ], [], [] ); + ], [], [ 'hide_label' => true, 'placeholder' => __( 'Filter by value', 'disciple_tools' ) ] ); + ?> +
+

+ + + + +

$field_options[$field] - ], [], [] ); + ], [], [ 'hide_label' => true, 'placeholder' => __( 'Filter by value', 'disciple_tools' ) ] ); break; case 'number': DT_Components::render_number( $field, [ $field => $field_options[$field] - ], [], [] ); + ], [], [ 'hide_label' => true, 'placeholder' => __( 'Filter by value', 'disciple_tools' ) ] ); break; case 'file_upload': ?>

@@ -1088,43 +1132,6 @@ class="filter-by-file-upload-option" default: echo '

Unsupported field type: ' . esc_html( $type ) . '
'; } - if ( $field_options[$field]['type'] === 'connection' ) : ?> -

- - -

- - -

- -

- - -

- - - - -

-
diff --git a/dt-assets/js/modular-list.js b/dt-assets/js/modular-list.js index a51fe895ca..90e75e8fc5 100644 --- a/dt-assets/js/modular-list.js +++ b/dt-assets/js/modular-list.js @@ -884,13 +884,8 @@ }); $('#save_column_choices').on('click', function () { - let selectedFields; - try { - selectedFields = $('#field_search_input').val() || '[]'; - } catch (e) { - console.error('Error parsing selected fields JSON:', e); - selectedFields = []; - } + let selectedFields = $('#field_search_input').val() || '[]'; + fields_to_show_in_table = selectedFields.filter( (label) => label.charAt(0) !== '-', ); @@ -901,19 +896,6 @@ ); window.location.reload(); }); - $('#reset_column_choices').on('click', function () { - fields_to_show_in_table = []; - $('#selected_fields_input').val('[]'); - $('#enabled_fields_container').html( - 'No fields selected', - ); - window.SHAREDFUNCTIONS.save_json_cookie( - 'fields_to_show_in_table', - fields_to_show_in_table, - list_settings.post_type, - ); - window.location.reload(); - }); archivedSwitch.on('click', function () { const showArchived = this.checked; @@ -1393,17 +1375,12 @@ list_settings, `post_type_settings.fields.${field}.type`, ); - let customComponent = document.querySelector( - `dt-toggle[name="${field}"], dt-tags[name="${field}"], dt-date[name="${field}"], dt-location[name="${field}"], dt-users-connection[name="${field}"], dt-connection[name="${field}"], dt-single-select[name="${field}"], dt-multi-select[name="${field}"], dt-multi-select-button-group[name="${field}"], dt-multi-text[name="${field}"], dt-text[name="${field}"]`, - ); + let customComponent = document.querySelector(`[name="${field}"]`); if (customComponent) { let val = []; if (type === 'connection') { - val = customComponent.value - .filter((label) => !label.delete) - .map((item) => item.id); const allConnections = $(`#${field} .all-connections`); const withoutConnections = $(`#${field} .all-without-connections`); if (allConnections.prop('checked') === true) { @@ -1411,6 +1388,9 @@ } else if (withoutConnections.prop('checked') === true) { search_query.push({ [field]: [ALL_WITHOUT_ID] }); } else { + val = customComponent.value + .filter((label) => !label.delete) + .map((item) => item.id); search_query.push({ [field]: adjust_search_query_filter_states(field, type, val), }); @@ -1418,7 +1398,11 @@ } else if (type === 'text' || type === 'communication_channel') { val = customComponent.value; - switch ($('.filter-by-text-comms-option:checked').val()) { + switch ( + $( + `#filter_by_text_comms_option_${field} .filter-by-text-comms-option:checked`, + ).val() + ) { case 'all-with-set-value': { val = '*'; break; @@ -1440,7 +1424,11 @@ search_query.push({ [field]: val !== null ? [val] : [] }); } else { // Extract the value from each field type - if (type === 'user_select' || type === 'location') { + if ( + type === 'user_select' || + type === 'location' || + type === 'location_meta' + ) { val = customComponent.value .filter((label) => !label.delete) .map((item) => item.id); @@ -1454,13 +1442,9 @@ } if (val && val.length > 0) { - // replace any '<' or '>' characters to save properly - val = val.map((v) => - typeof v === 'string' - ? v.replace(//g, '>') - : v, - ); - + if (type === 'location_meta' || type === 'location') { + field = 'location_grid'; + } search_query.push({ [field]: adjust_search_query_filter_states(field, type, val), }); @@ -1681,15 +1665,14 @@ const id = without ? ALL_WITHOUT_ID : ALL_ID; const tabsPanel = $(this).closest('.tabs-panel'); const field = tabsPanel.length === 1 ? tabsPanel[0].id : ''; - const typeaheadQueryElement = tabsPanel.find('.typeahead__query'); - const typeaheadCancelButtons = tabsPanel.find('.typeahead__cancel-button'); - const typeahead = tabsPanel.find(`.js-typeahead-${field}`); + const connectionElement = tabsPanel.find(`#${field}`); toggle_all_connection_option(tabsPanel, without); if ($(this).prop('checked') === true) { - typeahead.prop('disabled', true); - typeaheadQueryElement.addClass('disabled'); + // disable connection field's input when this happens (no longer typeahead) + connectionElement.prop('disabled', true); + connectionElement.val(''); // remove the current filters and leave anything in the typeahead as it is remove_all_filter_labels(field); const { newLabel, filterName } = create_label_all( @@ -1703,14 +1686,8 @@ ); new_filter_labels.push(newLabel); } else { - typeahead.prop('disabled', false); - typeaheadQueryElement.removeClass('disabled'); + connectionElement.prop('disabled', false); remove_filter_labels(id, field); - // clear the typeahead by manually clicking each selected item. - // This is done at this point as it triggers the typeahead to open which we don't want just after we have disabled it. - typeaheadCancelButtons.each(function () { - $(this).trigger('click', { botClick: true }); - }); } } @@ -1747,12 +1724,6 @@ `post_type_settings.fields.${field}.name`, field, ); - if ( - typeof value === 'string' && - (value.includes('<') || value.includes('>')) - ) { - value = value.replace(//g, '>'); - } const filterName = `${name}: ${value}`; return { newLabel: { id, name: filterName, field }, @@ -1787,7 +1758,7 @@ field, ); return { - newLabel: { id, name: `${name}: ${value}`, field, type: field }, + newLabel: { id, name: `${name}: ${value}`, field, type: 'location_grid' }, name, }; } @@ -1887,7 +1858,7 @@ .map((item) => item.value); } newLabel['name'] = - filterName = `${esc(list_settings.post_type_settings.fields[field] ? list_settings.post_type_settings.fields[field].name : '')}: ${filtered_value}`; + filterName = `${esc(list_settings.post_type_settings.fields[field] ? list_settings.post_type_settings.fields[field].name : '')}: ${esc(filtered_value)}`; } selected_filters.append( @@ -1925,24 +1896,40 @@ function (e) { const element = e.target; const tagName = element.tagName.toLowerCase(); - const nameAttr = element.name ? ` name="${element.name}"` : ''; - const idAttr = element.id ? ` id="${element.id}"` : ''; - const classAttr = element.className - ? ` class="${element.className}"` - : ''; let val = []; + const isConnectionLike = + tagName === 'dt-connection' || + tagName === 'dt-users-connection' || + tagName === 'dt-location'; + const isMultiSelectLike = + tagName === 'dt-multi-select' || + tagName === 'dt-multi-select-button-group' || + tagName === 'dt-tags'; + + // If the element creates multiple separate items (connections or multi-selects) + if (isConnectionLike || isMultiSelectLike) { + if (isConnectionLike) { + // Get array of values without 'delete' property + val = Array.isArray(e.target.value) + ? e.target.value.filter((label) => !label.delete) + : []; + } else { + // Get array of values for multi-selects and tags (filtering out negative '-' deletions) + const rawVal = Array.isArray(e.target.value) ? e.target.value : []; + val = rawVal + .filter((id) => typeof id === 'string' && id.charAt(0) !== '-') + .map((id) => { + const selectedOption = Array.from(e.target.options || []).find( + (option) => option.id === id, + ); + return { + id: id, + label: selectedOption ? selectedOption.label : id, + }; + }); + } - // If the element is an array ('delete' property used to track deleted items) - if ( - tagName == 'dt-connection' || - tagName == 'dt-users-connection' || - tagName == 'dt-location' - ) { - // Get array of values without 'delete' property - val = Array.isArray(e.target.value) - ? e.target.value.filter((label) => !label.delete) - : []; const fieldName = e.target.name; // Find labels that are no longer in the component's value @@ -1972,18 +1959,38 @@ if (!exists) { // Create correct label based on the tag - const { newLabel } = - tagName === 'dt-location' - ? create_location_label( - fieldName, - item.id, - item.label, - list_settings, - ) - : create_value_label(fieldName, item.id, item.label); + let newLabel, displayLabel; + + if (tagName === 'dt-location') { + const locLabel = create_location_label( + fieldName, + item.id, + item.label, + list_settings, + ); + newLabel = locLabel.newLabel; + displayLabel = locLabel.newLabel.name; + } else if (isMultiSelectLike) { + const nameValLabel = create_name_value_label( + fieldName, + item.id, + item.label, + list_settings, + ); + newLabel = nameValLabel.newLabel; + displayLabel = nameValLabel.newLabel.name; // prefixes with field name + } else { + const valLabel = create_value_label( + fieldName, + item.id, + item.label, + ); + newLabel = valLabel.newLabel; + displayLabel = item.label; + } selected_filters.append( - `${window.SHAREDFUNCTIONS.escapeHTML(item.label)}`, + `${window.SHAREDFUNCTIONS.escapeHTML(displayLabel)}`, ); new_filter_labels.push(newLabel); } @@ -2010,27 +2017,10 @@ new_filter_labels.push(newLabel); } } else { - // Else, if the element is a select array ('-' used to track deleted items) - if ( - tagName == 'dt-multi-select' || - tagName == 'dt-multi-select-button-group' - ) { - val = e.target.value.filter((label) => label.charAt(0) !== '-'); - // parse through each val, and find the corresponding label from e.target.options - val = val.map((value) => { - const selectedOption = Array.from(e.target.options).find( - (option) => option.id === value, - ); - return selectedOption ? selectedOption.label : false; - }); - } else if (tagName == 'dt-tags') { - val = e.target.value.filter((label) => label.charAt(0) !== '-'); - } else { - // All other elements - val = e.target.value; - } + // All other standard elements (e.g., dt-text, dt-single-select) + val = e.target.value; - if (val.length == 0) { + if (!val || val.length == 0) { val = false; } @@ -2078,27 +2068,16 @@ /* * Setup filter box */ - let typeaheads_loaded = null; $('#filter-modal').on('open.zf.reveal', function () { new_filter_labels = []; $('#new-filter-name').val(''); - $('#filter-modal input.dt_date_picker').each(function () { - $(this).val(''); - }); $('#filter-modal input:checked').each(function () { $(this).prop('checked', false); }); $('#filter-modal input:disabled').each(function () { $(this).prop('disabled', false); }); - $('#filter-modal .typeahead__query.disabled').each(function () { - $(this).removeClass('disabled'); - }); selected_filters.empty(); - $('.typeahead__query input').each(function () { - let typeahead = - window.Typeahead['.' + $(this).attr('class').split(/\s+/)[0]]; - }); }); // On close, reset all field values $('#filter-modal').on('closed.zf.reveal', function () { @@ -2107,35 +2086,12 @@ 'dt-location, dt-toggle, dt-tags, dt-date, dt-users-connection, dt-connection, dt-single-select, dt-multi-select, dt-multi-select-button-group, dt-multi-text, dt-text', ) .each(function () { - const tagName = this.tagName.toLowerCase(); - - if (tagName === 'dt-date') { - this.reset(); - } else if ( - [ - 'dt-connection', - 'dt-users-connection', - 'dt-single-select', - 'dt-multi-select', - 'dt-multi-select-button-group', - 'dt-tags', - 'dt-multi-text', - ].includes(tagName) - ) { - this.value = []; - } else { - // Reset text and single-select - if (this.shadowRoot) { - const shadowChildren = - this.shadowRoot.querySelectorAll('[selected]'); - shadowChildren.forEach((child) => { - child.removeAttribute('selected'); - child.selected = false; - }); - } - this.value = ''; - } + this.reset(); }); + + // hide edit filters again & remove associated filter-id + $('#save-filter-edits').hide().removeData('filter-id'); + $('#confirm-filter-records').show(); }); var clicked; @@ -2151,77 +2107,96 @@ function edit_saved_filter(filter) { $('#filter-modal').foundation('open'); - typeaheads_loaded.then(() => { - let connectionTypeKeys = - list_settings.post_type_settings.connection_types; - connectionTypeKeys.push('location_grid'); - filter.labels.forEach((label) => { - // Determine exclusion status - let excluded_class = is_search_query_filter_label_excluded( - filter, - label, - ) - ? 'current-filter-excluded' - : ''; - // Proceed with displaying of filter modal - selected_filters.append( - `${window.SHAREDFUNCTIONS.escapeHTML(label.name)}`, - ); - let type = window.lodash.get( - list_settings, - `post_type_settings.fields.${label.field}.type`, - ); - if ( - type === 'key_select' || - type === 'boolean' || - type === 'file_upload' - ) { - $( - `#filter-modal #${label.field}-options input[value="${label.id}"]`, - ).prop('checked', true); - } else if (type === 'date' || type === 'datetime') { - $(`#filter-modal #${label.field}-options #${label.id}`).datepicker( - 'setDate', - label.date, + let connectionTypeKeys = [ + ...list_settings.post_type_settings.connection_types, + 'location_grid', + ]; + + // Helper function to handle the new dt-* component state updates + const appendValueToDtComponent = (field, itemObject) => { + const dtComponent = document.querySelector(`[name="${field}"]`); + + if (dtComponent) { + // Assuming the dt-* component's value expects an array of selected objects + const currentValue = Array.isArray(dtComponent.value) + ? dtComponent.value + : []; + dtComponent.value = [...currentValue, itemObject]; + } else { + console.warn(`Could not find dt-* component for field: ${field}`); + } + }; + + filter.labels.forEach((label) => { + // Determine exclusion status + let excluded_class = is_search_query_filter_label_excluded(filter, label) + ? 'current-filter-excluded' + : ''; + + let type = window.lodash.get( + list_settings, + `post_type_settings.fields.${label.field}.type`, + ); + + const displayField = type === 'date' ? label.id : label.field; + + // Proceed with displaying of filter modal + selected_filters.append( + `${window.SHAREDFUNCTIONS.escapeHTML(label.name)}`, + ); + + if ( + type === 'key_select' || + type === 'boolean' || + type === 'file_upload' + ) { + // Find all checkboxes for this specific field + $( + `#filter-modal #${label.field}-options input[data-field="${label.field}"]`, + ) + // Filter down to the one where the JS value exactly matches label.id + .filter(function () { + return this.value === label.id; + }) + .prop('checked', true); + } else if (type === 'date' || type === 'datetime') { + const dateComponent = document.querySelector(`[name="${label.id}"]`); + if (dateComponent) { + dateComponent.value = label.date; + } + } else if (connectionTypeKeys.includes(label.field)) { + if (label.id === '*') { + const fieldAllConnectionsElement = document.querySelector( + `#filter-modal #${label.field} .all-connections`, ); - } else if (connectionTypeKeys.includes(label.field)) { - if (label.id === '*') { - const fieldAllConnectionsElement = document.querySelector( - `#filter-modal #${label.field} .all-connections`, - ); - const boundAllConnectionsClickHandler = - all_connections_click_handler.bind(fieldAllConnectionsElement); - $(fieldAllConnectionsElement).prop('checked', true); - boundAllConnectionsClickHandler(); - } else { - window.Typeahead[ - `.js-typeahead-${label.field}` - ].addMultiselectItemLayout({ ID: label.id, name: label.name }); - } - } else if (type === 'multi_select') { - window.Typeahead[ - `.js-typeahead-${label.field}` - ].addMultiselectItemLayout({ key: label.id, value: label.name }); - } else if (type === 'tags') { - window.Typeahead[ - `.js-typeahead-${label.field}` - ].addMultiselectItemLayout({ key: label.id, value: label.id }); - } else if (type === 'user_select') { - window.Typeahead[ - `.js-typeahead-${label.field}` - ].addMultiselectItemLayout({ name: label.name, ID: label.id }); + const boundAllConnectionsClickHandler = + all_connections_click_handler.bind(fieldAllConnectionsElement); + $(fieldAllConnectionsElement).prop('checked', true); + boundAllConnectionsClickHandler(); + } else { + appendValueToDtComponent(label.field, { + id: label.id, + label: label.name, + }); } - }); - // moved this below the forEach as the global new_filter_labels was messing with the loop. - new_filter_labels = filter.labels; - (filter.query.combine || []).forEach((c) => { - $(`#combine_${c}`).prop('checked', true); - }); - $('#new-filter-name').val(filter.name); - $('#confirm-filter-records').hide(); - $('#save-filter-edits').data('filter-id', filter.ID).show(); + } else if (type === 'multi_select' || type === 'tags') { + appendValueToDtComponent(label.field, label.id); + } else if (type === 'user_select') { + appendValueToDtComponent(label.field, { + label: label.name, + id: label.id, + }); + } }); + + new_filter_labels = filter.labels; + (filter.query.combine || []).forEach((c) => { + $(`#combine_${c}`).prop('checked', true); + }); + $('#new-filter-name').val(filter.name); + $('#confirm-filter-records').hide(); + $('#save-filter-edits').data('filter-id', filter.ID).show(); } $('#save-filter-edits').on('click', function () { @@ -2243,9 +2218,6 @@ const panel = $(`#${field}.tabs-panel`); $(`.tabs-panel`).removeClass('is-active'); $(panel).addClass('is-active'); - if (field && window.Typeahead[`.js-typeahead-${field}`]) { - window.Typeahead[`.js-typeahead-${field}`].adjustInputSize(); - } }); //watch all other checkboxes diff --git a/dt-users/users.php b/dt-users/users.php index 2a3f3f6142..b02beb90a6 100644 --- a/dt-users/users.php +++ b/dt-users/users.php @@ -766,7 +766,41 @@ public static function get_user_filters( $post_type, $force_refresh = false ){ public static function save_user_filter( $filter, $post_type ){ $current_user_id = get_current_user_id(); if ( $current_user_id && isset( $filter['ID'] ) ){ - $filter = filter_var_array( $filter, FILTER_SANITIZE_STRING ); + + if ( isset( $filter['name'] ) ) { + $filter['name'] = sanitize_text_field( $filter['name'] ); + } + if ( isset( $filter['type'] ) ) { + $filter['type'] = sanitize_key( $filter['type'] ); + } + if ( isset( $filter['tab'] ) ) { + $filter['tab'] = sanitize_key( $filter['tab'] ); + } + if ( isset( $filter['ID'] ) ) { + $filter['ID'] = is_scalar( $filter['ID'] ) ? (string) $filter['ID'] : ''; + } + + if ( isset( $filter['labels'] ) && is_array( $filter['labels'] ) ) { + foreach ( $filter['labels'] as $key => $label ) { + + if ( isset( $label['name'] ) ) { + $filter['labels'][$key]['name'] = sanitize_text_field( $label['name'] ); + } + + if ( isset( $label['field'] ) ) { + $filter['labels'][$key]['field'] = sanitize_key( $label['field'] ); + } + + if ( isset( $label['id'] ) ) { + $filter['labels'][$key]['id'] = is_scalar( $label['id'] ) ? (string) $label['id'] : ''; + } + } + } + + if ( array_key_exists( 'query', $filter ) && ! is_array( $filter['query'] ) ) { + $filter['query'] = []; + } + $filters = get_user_option( 'saved_filters', $current_user_id ); if ( !isset( $filters[$post_type] ) ){ $filters[$post_type] = []; From 1903c90ce83f74c650124ba0b5d00a7397a47bbb Mon Sep 17 00:00:00 2001 From: Brady Lamansky Date: Tue, 21 Jul 2026 14:01:45 -0500 Subject: [PATCH 09/10] fix: fixed tags allowAdd, fixed edit_saved_filter for text fields --- dt-assets/js/modular-list.js | 57 ++++++++++++++++++++++++++++- dt-core/utilities/dt-components.php | 5 ++- 2 files changed, 59 insertions(+), 3 deletions(-) diff --git a/dt-assets/js/modular-list.js b/dt-assets/js/modular-list.js index 90e75e8fc5..1ee8673fbd 100644 --- a/dt-assets/js/modular-list.js +++ b/dt-assets/js/modular-list.js @@ -1789,7 +1789,7 @@ const { id, field } = options || { id: null, field: null }; if (id && field) { // Adjust filter text field state accordingly, based on option selection. - let filter_text_field = $('#' + field); + let filter_text_field = document.querySelector(`[name="${field}"]`); $(filter_text_field).prop( 'disabled', ['all-with-set-value', 'all-without-set-value'].includes(id), @@ -2187,6 +2187,61 @@ label: label.name, id: label.id, }); + } else if ( + type === 'text' || + type === 'communication_channel' || + type === 'textarea' || + type === 'number' + ) { + const dtComponent = document.querySelector(`[name="${label.field}"]`); + + let textValue = ''; + let queryArray = []; + + if (filter.query && filter.query.fields) { + const queryField = filter.query.fields.find( + (f) => f[label.field] !== undefined, + ); + if (queryField && queryField[label.field]) { + queryArray = queryField[label.field]; + } + } else if (filter.query && filter.query[label.field]) { + queryArray = filter.query[label.field]; + } + + // Handle '-' and '*' signs + if (queryArray && queryArray.length > 0) { + let queryVal = queryArray[0]; + if (typeof qVal === 'string') { + if (queryVal.startsWith('-') && queryVal !== '-*') { + textValue = queryVal.substring(1); + } else if (queryVal !== '*' && queryVal !== '-*') { + textValue = queryVal; + } + } + } + + if (dtComponent) { + dtComponent.value = textValue; + + if ( + ['all-with-set-value', 'all-without-set-value'].includes(label.id) + ) { + dtComponent.disabled = true; + } else { + dtComponent.disabled = false; + } + } + + if (type === 'text' || type === 'communication_channel') { + $( + `#filter-modal #filter_by_text_comms_option_${label.field} input[data-field="${label.field}"]`, + ) + .filter(function () { + return this.value === label.id; + }) + .prop('checked', true); + } } }); diff --git a/dt-core/utilities/dt-components.php b/dt-core/utilities/dt-components.php index 8462fe8557..d208a35de6 100644 --- a/dt-core/utilities/dt-components.php +++ b/dt-core/utilities/dt-components.php @@ -273,6 +273,8 @@ public static function render_tags( $field_key, $fields, $post, $params = [] ) { return $value; }, $post[$field_key] ?? []); + $params['allow_add'] ?? true; + $options = null; if ( isset( $params['static_options'] ) && $params['static_options'] ) { $raw_options = DT_Posts::get_multi_select_options( $post['post_type'] ?? 'contacts', $field_key ); @@ -289,9 +291,8 @@ public static function render_tags( $field_key, $fields, $post, $params = [] ) { ?> value='' - placeholder="" - allowAdd> + > Date: Wed, 22 Jul 2026 13:35:24 -0500 Subject: [PATCH 10/10] fix: text button bug, set all required to false --- archive-template.php | 1 + dt-assets/js/modular-list.js | 135 ++++++++++++++++++----------------- 2 files changed, 70 insertions(+), 66 deletions(-) diff --git a/archive-template.php b/archive-template.php index e576843beb..aa4b10aced 100644 --- a/archive-template.php +++ b/archive-template.php @@ -960,6 +960,7 @@ class="loading-spinner">
label['id'] === id && label['field'] === field, + // identify all old labels + let removed_old_filter_labels = new_filter_labels.filter( + (label) => label['field'] === field, ); - if (existing_label === undefined) { - // Identify stale labels to be deleted. - let removed_old_filter_labels = []; - new_filter_labels.forEach((label) => { - if (label['field'] === field) { - if (!(label['id'] === id)) { - removed_old_filter_labels.push(label); - } - } - }); - - // Remove stale labels, if detected. - if (removed_old_filter_labels.length > 0) { - new_filter_labels = new_filter_labels.filter((existing_label) => { - let filtered = false; - removed_old_filter_labels.forEach((stale_label) => { - if ( - existing_label['id'] !== stale_label['id'] && - existing_label['name'] !== stale_label['name'] && - existing_label['field'] !== stale_label['field'] - ) { - filtered = true; - } - }); - return filtered; - }); + if (removed_old_filter_labels.length > 0) { + // remove them from the active array + new_filter_labels = new_filter_labels.filter( + (existing_label) => existing_label['field'] !== field, + ); - // Remove associated ui labels. - removed_old_filter_labels.forEach((label) => { - $(selected_filters) - .find( - `.current-filter[data-id="${label['id']}"].${label['field']}`, - ) - .remove(); - }); - } + // remove associated UI labels + removed_old_filter_labels.forEach((label) => { + $(selected_filters) + .find(`.current-filter[data-id="${label['id']}"].${label['field']}`) + .remove(); + }); + } - // Create new generic filter label. - let { newLabel, filterName } = create_label_all( - field, - ['all-without-set-value', 'all-without-filtered-value'].includes(id), - id, - list_settings, - ); + // create new generic filter label. + let { newLabel, filterName } = create_label_all( + field, + ['all-without-set-value', 'all-without-filtered-value'].includes(id), + id, + list_settings, + ); - // Adjust label to reflect filtered text. - if ( - ['all-with-filtered-value', 'all-without-filtered-value'].includes(id) - ) { - let filtered_value = document.querySelector( - `dt-multi-text#${field}, dt-text#${field}`, - ).value; - if (Array.isArray(filtered_value)) { - filtered_value = filtered_value - .filter((label) => label.value.length > 0) - .map((item) => item.value); - } - newLabel['name'] = - filterName = `${esc(list_settings.post_type_settings.fields[field] ? list_settings.post_type_settings.fields[field].name : '')}: ${esc(filtered_value)}`; + // adjust label to reflect filtered text + if ( + ['all-with-filtered-value', 'all-without-filtered-value'].includes(id) + ) { + let filtered_value = document.querySelector( + `dt-multi-text#${field}, dt-text#${field}`, + ).value; + if (Array.isArray(filtered_value)) { + filtered_value = filtered_value + .filter((label) => label.value.length > 0) + .map((item) => item.value); } - - selected_filters.append( - `${filterName}`, - ); - new_filter_labels.push(newLabel); + newLabel['name'] = + filterName = `${esc(list_settings.post_type_settings.fields[field] ? list_settings.post_type_settings.fields[field].name : '')}: ${esc(filtered_value)}`; } + + selected_filters.append( + `${filterName}`, + ); + new_filter_labels.push(newLabel); } } @@ -2024,6 +2000,29 @@ val = false; } + const radioContainer = $( + `#filter_by_text_comms_option_${e.target.name}`, + ); + if (radioContainer.length > 0) { + let radioChecked = radioContainer + .find('.filter-by-text-comms-option:checked') + .val(); + + // default to 'All with filtered value' if they typed but no radio was selected + if (!radioChecked) { + radioChecked = 'all-with-filtered-value'; + radioContainer + .find(`input[value="${radioChecked}"]`) + .prop('checked', true); + } + + handle_filter_by_text_comms({ + id: radioChecked, + field: e.target.name, + }); + return; // skip the generic label creation + } + const { newLabel, name } = create_name_value_label( e.target.name, e.target.name, @@ -2044,7 +2043,9 @@ const remove_filter_labels = (id, field_key) => { $(`.current-filter[data-id="${id}"].${field_key}`).remove(); - window.lodash.pullAllBy(new_filter_labels, [{ id: id }], 'id'); + new_filter_labels = new_filter_labels.filter( + (label) => !(label.id === id && label.field === field_key), + ); }; const remove_all_filter_labels = (field_key) => { @@ -2212,11 +2213,13 @@ // Handle '-' and '*' signs if (queryArray && queryArray.length > 0) { let queryVal = queryArray[0]; - if (typeof qVal === 'string') { + if (typeof queryVal === 'string') { if (queryVal.startsWith('-') && queryVal !== '-*') { textValue = queryVal.substring(1); } else if (queryVal !== '*' && queryVal !== '-*') { textValue = queryVal; + } else { + textValue = ''; } } }