From 1f02bcad4c567b6a4482ac47c519aa15dde7df05 Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Wed, 27 Sep 2023 10:30:43 -0700 Subject: [PATCH 1/3] SASS files cleanup in TheAdmin theme --- .../TheAdmin/Assets/scss/_variables.scss | 24 +- .../Assets/scss/components/_action-bar.scss | 5 +- .../scss/components/_bootstrap-select.scss | 6 - .../Assets/scss/components/_codemirror.scss | 2 +- .../Assets/scss/components/_dropdown.scss | 52 +--- .../Assets/scss/components/_monaco.scss | 2 +- .../Assets/scss/components/_sidebar-menu.scss | 17 +- .../TheAdmin/Assets/scss/index.scss | 2 +- .../scss/themes/dark/_theme_helpers.scss | 19 +- .../scss/themes/light/_theme_helpers.scss | 10 +- .../TheAdmin/wwwroot/css/TheAdmin.css | 230 +++++++++++------- .../TheAdmin/wwwroot/css/TheAdmin.min.css | 2 +- 12 files changed, 186 insertions(+), 185 deletions(-) diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss index 1c298f27a35..f562ac1a559 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss @@ -1,18 +1,17 @@ -// Global variables to override Bootstrap variables. -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ @import '../../node_modules/bootstrap/scss/_functions'; @import '../../node_modules/bootstrap/scss/_variables'; -// Override any of Bootstrap variables. -$link-decoration: none; -$link-hover-decoration: underline; - // Custom variables. $top-nav-height: 52px !default; $footer-height: 40px !default; $left-navigation-width: 260px !default; $left-navigation-width-when-compact: 48px !default; $link-padding-left: 16px !default; +$dropdown-max-height: 250px !default; :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); @@ -25,14 +24,21 @@ $link-padding-left: 16px !default; --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: #{$zindex-dropdown}; + --oc-height-dropdown: #{$dropdown-max-height}; --oc-top-nav-height: #{$top-nav-height}; - --oc-top-nav-zindex: 1034; // $zindex-fixed + 4 + --oc-top-nav-zindex: #{$zindex-fixed + 4}; --oc-footer-height: #{$footer-height}; --oc-start-navigation-width: #{$left-navigation-width}; --oc-start-navigation-width-when-compact: #{$left-navigation-width-when-compact}; - --oc-start-navigation-zindex: 1033; // $zindex-fixed + 3 + --oc-start-navigation-zindex: #{$zindex-fixed + 3}; --oc-link-padding-left: #{$link-padding-left}; - --oc-editor-fullscreen: 1054; // $zindex-modal - 1 + --oc-editor-fullscreen: #{$zindex-modal - 1}; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: #{$zindex-dropdown - 20}; + --oc-second-action-bar-zindex: #{$zindex-dropdown - 17}; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: #{$zindex-dropdown}; --bs-zindex-fixed: #{$zindex-fixed}; + --bs-bg-opacity: 1; } diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_action-bar.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_action-bar.scss index 8203e8ab2d5..54a86c531d1 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_action-bar.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_action-bar.scss @@ -1,11 +1,10 @@ @import '../_variables'; -/* Action bar should always be less than dropdown menu */ .action-bar { top: 3.3rem; - z-index: calc(var(--bs-dropdown-zindex, 1000) - 20); + z-index: var(--oc-action-bar-zindex); } .second-action-bar { - z-index: calc(var(--bs-dropdown-zindex, 1000) - 10); + z-index: var(--oc-second-action-bar-zindex); } diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_bootstrap-select.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_bootstrap-select.scss index d7ad4cc4125..1f54effc789 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_bootstrap-select.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_bootstrap-select.scss @@ -1,4 +1,3 @@ -// bootstrap-select customizations @import "../../../node_modules/bootstrap-select/sass/bootstrap-select"; .multiselect__content-wrapper ul { @@ -20,11 +19,6 @@ html[dir="rtl"] .bootstrap-select .bs-ok-default:after { .bootstrap-select { .popover-header { .close { - /* - @extend .btn; - @extend .btn-close; - @extend .float-end; - */ border: 0; background: none; box-shadow: none; diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_codemirror.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_codemirror.scss index 05e989eea05..02d07ee5a85 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_codemirror.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_codemirror.scss @@ -42,5 +42,5 @@ } .CodeMirror-focused .CodeMirror-activeline-background { - background: rgba(100, 100, 100, 0.1) !important; + background: rgba(var(--bs-secondary-bg-rgb), 0.1) !important; } diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_dropdown.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_dropdown.scss index f7bd8269a8d..74079bdd564 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_dropdown.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_dropdown.scss @@ -1,6 +1,7 @@ .dropdown-menu.scrollable { overflow-y: auto; - max-height: 250px; + max-height: var(--oc-height-dropdown); + scrollbar-width: thin; } .btn-dropdown { @@ -9,55 +10,8 @@ } .dropdown-menu { - max-height: 200px; + max-height: var(--oc-height-dropdown); overflow: hidden auto; scrollbar-width: thin; } } - -/* rtl:ignore */ -/* -[dir="rtl"] .dropdown-menu { - left: auto !important; - right: 0px !important; - transform: translate3d(0px, 38px, 0px) !important; -} - -.btn-dropdown-wrapper { - &:hover { - > .btn-dropdown { - border-width: 5px; - opacity: 1; - } - } -} - - -.btn-dropdown { - position: relative; - z-index: var(--bs-dropdown-zindex); - opacity: 0.8; - transition: 0.3s opacity; - - > .btn-group { - margin: 0 auto; - bottom: 17px; - } -} - -.btn-dropdown.show { - z-index: calc(var(--bs-dropdown-zindex) + 10); -} - -[dir="ltr"] .btn-dropdown { - > .btn-group { - left: calc(-14px + 50%); - } -} - -[dir="rtl"] .btn-dropdown { - > .btn-group { - right: calc(-14px + 50%); - } -} -*/ diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_monaco.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_monaco.scss index c6be656ecf8..fcbbd89fec3 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_monaco.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_monaco.scss @@ -24,7 +24,7 @@ div.editor-widget.find-widget { background-color: transparent; border-color: transparent; display: flex; - color: rgb(97,97,97); + color: var(--bs-secondary-color); box-shadow: none; } diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_sidebar-menu.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_sidebar-menu.scss index 8a79b091fa2..2091555e31a 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_sidebar-menu.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/components/_sidebar-menu.scss @@ -101,7 +101,7 @@ body:not(.left-sidebar-compact) { // first level menu items that have no items and are active > li.active:not(.has-items)::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -211,7 +211,7 @@ body:not(.left-sidebar-compact) { li.active > figure > ul > li.active > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -328,6 +328,7 @@ body:not(.left-sidebar-compact) { } } } + // Layout 4 : ta-left-sidebar when compacted // ----------------------------------------- .left-sidebar-compact { @@ -492,7 +493,7 @@ body:not(.left-sidebar-compact) { > li.active:not(.has-items) > figure > figcaption > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -522,7 +523,7 @@ body:not(.left-sidebar-compact) { > li.has-items.active > figure > figcaption > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -636,7 +637,7 @@ body:not(.left-sidebar-compact) { // first level menu items that have no items and are active > li.active:not(.has-items)::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -681,7 +682,7 @@ body:not(.left-sidebar-compact) { li.active > figure > ul > li.active > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -691,7 +692,7 @@ body:not(.left-sidebar-compact) { li.active > figure > ul > li.active ul > li.active .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -701,7 +702,7 @@ body:not(.left-sidebar-compact) { li.active > figure > ul > li.active > figure > figcaption > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/index.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/index.scss index 2ba39c1f16a..768e191ca23 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/index.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/index.scss @@ -27,6 +27,6 @@ @import 'components/validations'; @import 'components/vue-multiselect'; -/* Include themes */ +/* Import themes */ @import 'themes/light/index'; @import 'themes/dark/index'; diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/dark/_theme_helpers.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/dark/_theme_helpers.scss index d1ed8ae2a95..c9cd8865306 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/dark/_theme_helpers.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/dark/_theme_helpers.scss @@ -11,28 +11,27 @@ background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity, 1)); } - .btn-theme { - color: #fff; - background-color: #212529; - border-color: #212529; + color: var(--bs-white); + background-color: var(--bs-gray-900); + border-color: var(--bs-gray-900); } .btn-theme:hover { - color: #fff; + color: var(--bs-white); background-color: #1c1f23; border-color: #1a1e21; } .btn-check:focus + .btn-theme, .btn-theme:focus { - color: #fff; + color: var(--bs-white); background-color: #1c1f23; border-color: #1a1e21; box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } .btn-check:checked + .btn-theme, .btn-check:active + .btn-theme, .btn-theme:active, .btn-theme.active, .show > .btn-theme.dropdown-toggle { - color: #fff; + color: var(--bs-white); background-color: #1a1e21; border-color: #191c1f; } @@ -42,7 +41,7 @@ } .btn-theme:disabled, .btn-theme.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; + color: var(--bs-white); + background-color: var(--bs-gray-900); + border-color: var(--bs-gray-900); } diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/light/_theme_helpers.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/light/_theme_helpers.scss index dbba7b8406f..dd133a0d6a3 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/light/_theme_helpers.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/themes/light/_theme_helpers.scss @@ -13,26 +13,26 @@ } .btn-theme { - color: #000; + color: var(--bs-black); background-color: #f8f9fa; border-color: #f8f9fa; } .btn-theme:hover { - color: #000; + color: var(--bs-black); background-color: #f9fafb; border-color: #f9fafb; } .btn-check:focus + .btn-theme, .btn-theme:focus { - color: #000; + color: var(--bs-black); background-color: #f9fafb; border-color: #f9fafb; box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } .btn-check:checked + .btn-theme, .btn-check:active + .btn-theme, .btn-theme:active, .btn-theme.active, .show > .btn-theme.dropdown-toggle { - color: #000; + color: var(--bs-black); background-color: #f9fafb; border-color: #f9fafb; } @@ -42,7 +42,7 @@ } .btn-theme:disabled, .btn-theme.disabled { - color: #000; + color: var(--bs-black); background-color: #f8f9fa; border-color: #f8f9fa; } diff --git a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css index 9aca2a9ff5a..a40b3d93818 100644 --- a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css +++ b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css @@ -1,6 +1,8 @@ @charset "UTF-8"; -/* Import variables first */ -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* Import variables first */ /* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -12,6 +14,7 @@ --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -20,12 +23,21 @@ --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } /* Import the files from main folder before importing any component */ -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -37,6 +49,7 @@ --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -45,8 +58,14 @@ --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } .w-xs-25 { @@ -148,7 +167,10 @@ a:hover { text-decoration: underline; } -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -160,6 +182,7 @@ a:hover { --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -168,8 +191,14 @@ a:hover { --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } body { @@ -216,7 +245,10 @@ body { } /* Import the components files */ -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -228,6 +260,7 @@ body { --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -236,18 +269,23 @@ body { --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } -/* Action bar should always be less than dropdown menu */ .action-bar { top: 3.3rem; - z-index: calc(var(--bs-dropdown-zindex, 1000) - 20); + z-index: var(--oc-action-bar-zindex); } .second-action-bar { - z-index: calc(var(--bs-dropdown-zindex, 1000) - 10); + z-index: var(--oc-second-action-bar-zindex); } .ta-badge { @@ -679,11 +717,6 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { } .bootstrap-select .popover-header .close { - /* - @extend .btn; - @extend .btn-close; - @extend .float-end; - */ border: 0; background: none; box-shadow: none; @@ -694,7 +727,10 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { background: unset; } -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -706,6 +742,7 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -714,8 +751,14 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } :root { @@ -760,70 +803,28 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { } .CodeMirror-focused .CodeMirror-activeline-background { - background: rgba(100, 100, 100, 0.1) !important; + background: rgba(var(--bs-secondary-bg-rgb), 0.1) !important; } .dropdown-menu.scrollable { overflow-y: auto; - max-height: 250px; + max-height: var(--oc-height-dropdown); + scrollbar-width: thin; } .btn-dropdown ::-webkit-scrollbar { width: 4px; } .btn-dropdown .dropdown-menu { - max-height: 200px; + max-height: var(--oc-height-dropdown); overflow: hidden auto; scrollbar-width: thin; } -/* rtl:ignore */ -/* -[dir="rtl"] .dropdown-menu { - left: auto !important; - right: 0px !important; - transform: translate3d(0px, 38px, 0px) !important; -} - -.btn-dropdown-wrapper { - &:hover { - > .btn-dropdown { - border-width: 5px; - opacity: 1; - } - } -} - - -.btn-dropdown { - position: relative; - z-index: var(--bs-dropdown-zindex); - opacity: 0.8; - transition: 0.3s opacity; - - > .btn-group { - margin: 0 auto; - bottom: 17px; - } -} - -.btn-dropdown.show { - z-index: calc(var(--bs-dropdown-zindex) + 10); -} - -[dir="ltr"] .btn-dropdown { - > .btn-group { - left: calc(-14px + 50%); - } -} - -[dir="rtl"] .btn-dropdown { - > .btn-group { - right: calc(-14px + 50%); - } -} +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -835,6 +836,7 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -843,8 +845,14 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } .hint { @@ -8044,7 +8052,7 @@ div.editor-widget.find-widget .button.codicon { background-color: transparent; border-color: transparent; display: flex; - color: rgb(97, 97, 97); + color: var(--bs-secondary-color); box-shadow: none; } div.editor-widget.find-widget .button.codicon:focus { @@ -8496,7 +8504,10 @@ ul.pager { justify-content: center; } -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -8508,6 +8519,7 @@ ul.pager { --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -8516,8 +8528,14 @@ ul.pager { --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } body:not(.left-sidebar-compact) #ta-left-sidebar { @@ -8602,7 +8620,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav > ul > li > figure > } body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav > ul > li.active:not(.has-items)::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -8689,7 +8707,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar li > figure > ul > li.active > } body:not(.left-sidebar-compact) #ta-left-sidebar li.active > figure > ul > li.active > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -8920,7 +8938,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus { } .left-sidebar-compact #ta-left-sidebar #left-nav > ul > li.active:not(.has-items) > figure > figcaption > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -8945,7 +8963,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus { } .left-sidebar-compact #ta-left-sidebar #left-nav > ul > li.has-items.active > figure > figcaption > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -9042,7 +9060,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus { } .left-sidebar-compact #ta-left-sidebar #left-nav > ul > li.active:not(.has-items)::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -9080,7 +9098,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus { } .left-sidebar-compact #ta-left-sidebar li.active > figure > ul > li.active > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -9089,7 +9107,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus { } .left-sidebar-compact #ta-left-sidebar li.active > figure > ul > li.active ul > li.active .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -9098,7 +9116,7 @@ body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus { } .left-sidebar-compact #ta-left-sidebar li.active > figure > ul > li.active > figure > figcaption > .item-label::before { border-left: 3px solid; - border-left-color: #0078d4; + border-left-color: var(--oc-selected-indicator-color); bottom: 0; content: ""; left: 0; @@ -9272,7 +9290,10 @@ html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin > li > .item-label transform: scale(-2, 1); } -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -9284,6 +9305,7 @@ html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin > li > .item-label --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -9292,15 +9314,24 @@ html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin > li > .item-label --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } .ui-sortable { min-height: 1rem; } -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -9312,6 +9343,7 @@ html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin > li > .item-label --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -9320,8 +9352,14 @@ html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin > li > .item-label --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } .tab-pane { @@ -9513,7 +9551,7 @@ span.field-validation-error { background-color: var(--bs-body-bg) !important; } -/* Include themes */ +/* Import themes */ /* The light theme is also the default theme. */ /* Do not wrap the these classes for the light theme specific. */ .ta-badge { @@ -9565,26 +9603,26 @@ span.field-validation-error { } .btn-theme { - color: #000; + color: var(--bs-black); background-color: #f8f9fa; border-color: #f8f9fa; } .btn-theme:hover { - color: #000; + color: var(--bs-black); background-color: #f9fafb; border-color: #f9fafb; } .btn-check:focus + .btn-theme, .btn-theme:focus { - color: #000; + color: var(--bs-black); background-color: #f9fafb; border-color: #f9fafb; box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } .btn-check:checked + .btn-theme, .btn-check:active + .btn-theme, .btn-theme:active, .btn-theme.active, .show > .btn-theme.dropdown-toggle { - color: #000; + color: var(--bs-black); background-color: #f9fafb; border-color: #f9fafb; } @@ -9594,12 +9632,15 @@ span.field-validation-error { } .btn-theme:disabled, .btn-theme.disabled { - color: #000; + color: var(--bs-black); background-color: #f8f9fa; border-color: #f8f9fa; } -/* IMPORTANT: Never import Bootstrap directly into the theme. TheAdmin.css will depend on Bootstrap, but we never want to compile it. */ +/* + IMPORTANT: Never import Bootstrap directly into the theme. + TheAdmin.css will depend on Bootstrap, but we never want to compile it. +*/ :root { --oc-border-content: var(--bs-border-width) solid var(--bs-border-color); --oc-admin-menu-bg-color: var(--bs-secondary-bg-subtle); @@ -9611,6 +9652,7 @@ span.field-validation-error { --oc-admin-menu-item-font-color-active: var(--bs-emphasis-color); --oc-li-hover-bg-color: var(--bs-list-group-action-hover-bg); --oc-zindex-dropdown: 1000; + --oc-height-dropdown: 250px; --oc-top-nav-height: 52px; --oc-top-nav-zindex: 1034; --oc-footer-height: 40px; @@ -9619,8 +9661,14 @@ span.field-validation-error { --oc-start-navigation-zindex: 1033; --oc-link-padding-left: 16px; --oc-editor-fullscreen: 1054; + --oc-selected-indicator-color: var(--bs-primary); + /* Action bar should always be less than dropdown menu */ + --oc-action-bar-zindex: 980; + --oc-second-action-bar-zindex: 983; + /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; + --bs-bg-opacity: 1; } [data-bs-theme=dark] { @@ -9657,23 +9705,23 @@ span.field-validation-error { background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity, 1)); } [data-bs-theme=dark] .btn-theme { - color: #fff; - background-color: #212529; - border-color: #212529; + color: var(--bs-white); + background-color: var(--bs-gray-900); + border-color: var(--bs-gray-900); } [data-bs-theme=dark] .btn-theme:hover { - color: #fff; + color: var(--bs-white); background-color: #1c1f23; border-color: #1a1e21; } [data-bs-theme=dark] .btn-check:focus + .btn-theme, [data-bs-theme=dark] .btn-theme:focus { - color: #fff; + color: var(--bs-white); background-color: #1c1f23; border-color: #1a1e21; box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } [data-bs-theme=dark] .btn-check:checked + .btn-theme, [data-bs-theme=dark] .btn-check:active + .btn-theme, [data-bs-theme=dark] .btn-theme:active, [data-bs-theme=dark] .btn-theme.active, [data-bs-theme=dark] .show > .btn-theme.dropdown-toggle { - color: #fff; + color: var(--bs-white); background-color: #1a1e21; border-color: #191c1f; } @@ -9681,7 +9729,7 @@ span.field-validation-error { box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } [data-bs-theme=dark] .btn-theme:disabled, [data-bs-theme=dark] .btn-theme.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; + color: var(--bs-white); + background-color: var(--bs-gray-900); + border-color: var(--bs-gray-900); } diff --git a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css index 2dc9a59b1f3..17b21258947 100644 --- a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css +++ b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css @@ -1 +1 @@ -@charset "UTF-8";:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}.w-xs-25{width:25%!important}.w-xs-50{width:50%!important}.w-xs-75{width:75%!important}@media (min-width:576px){.w-sm-25{width:25%!important}}@media (min-width:576px){.w-sm-50{width:50%!important}}@media (min-width:576px){.w-sm-75{width:75%!important}}@media (min-width:768px){.w-md-25{width:25%!important}}@media (min-width:768px){.w-md-50{width:50%!important}}@media (min-width:768px){.w-md-75{width:75%!important}}@media (min-width:992px){.w-lg-25{width:25%!important}}@media (min-width:992px){.w-lg-50{width:50%!important}}@media (min-width:992px){.w-lg-75{width:75%!important}}@media (min-width:1200px){.w-xl-25{width:25%!important}}@media (min-width:1200px){.w-xl-50{width:50%!important}}@media (min-width:1200px){.w-xl-75{width:75%!important}}@media (min-width:1400px){.w-xxl-25{width:25%!important}}@media (min-width:1400px){.w-xxl-50{width:50%!important}}@media (min-width:1400px){.w-xxl-75{width:75%!important}}.unset{all:unset}a{text-decoration:none}a:hover{text-decoration:underline}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}body{margin-bottom:var(--oc-footer-height);height:100%}.cursor-move{cursor:move}.cursor-pointer{cursor:pointer}.ta-content{padding:15px;margin-left:var(--oc-start-navigation-width);margin-top:var(--oc-top-nav-height);margin-bottom:var(--oc-footer-height);transition:margin-left .2s ease-in-out}.ta-content h1{line-height:40px;font-size:28px;letter-spacing:-.04em;font-weight:700}@media (max-width:575.98px){.ta-content{margin-left:var(--oc-start-navigation-width-when-compact);transition:margin-left .5s ease-in-out}}.left-sidebar-compact .ta-content{margin-left:var(--oc-start-navigation-width-when-compact)}.preload *{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}.action-bar{top:3.3rem;z-index:calc(var(--bs-dropdown-zindex,1000) - 20)}.second-action-bar{z-index:calc(var(--bs-dropdown-zindex,1000) - 10)}.ta-badge{border-radius:var(--bs-border-radius-pill)!important;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:inline-flex;align-items:center;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.button{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select .dropdown-toggle .bs-select-clear-selected{position:relative;display:block;margin-right:5px;text-align:center}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected{padding-right:inherit}.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{position:relative;top:calc((-.6666666667em + 1ex)/ 2);pointer-events:none}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{top:auto}.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected{display:none}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:" "}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:"";display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;transform-style:preserve-3d;transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:"";border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:"";border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group{display:block}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group{display:block}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}.multiselect__content-wrapper ul{padding-left:unset}html[dir=rtl] .bootstrap-select .bs-ok-default:after{border-width:0 .26em .26em 0!important;transform:rotate(45deg)!important}.bootstrap-select .popover-header{padding:.5rem 1rem;margin-bottom:0;border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.bootstrap-select .popover-header .close{border:0;background:0 0;box-shadow:none;border-radius:0;float:right!important;padding-top:0;padding-right:0;background:unset}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}:root{--oc-mde-zindex:var(--oc-editor-fullscreen)!important}.CodeMirror{height:auto;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-body-bg);color:var(--bs-body-color)}.CodeMirror-gutters{background-color:var(--bs-secondary-bg);color:var(--bs-secondary-color)}.CodeMirror-fullscreen{background:var(--bs-body-bg);color:var(--bs-body-color);position:fixed!important;top:var(--oc-top-nav-height)!important;left:0;right:0;bottom:0;height:auto;z-index:var(--bs-modal-zindex);border-right:none!important;border-bottom-right-radius:0!important}.CodeMirror pre{padding-left:7px;line-height:1.25;margin-bottom:0;overflow:unset}.CodeMirror-activeline-background{background:0 0!important}.CodeMirror-focused .CodeMirror-activeline-background{background:rgba(100,100,100,.1)!important}.dropdown-menu.scrollable{overflow-y:auto;max-height:250px}.btn-dropdown ::-webkit-scrollbar{width:4px}.btn-dropdown .dropdown-menu{max-height:200px;overflow:hidden auto;scrollbar-width:thin}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}.hint{font-size:.875em;color:var(--bs-text-body-secondary)!important;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.hint.dashed::before,.text-muted.dashed::before{content:"— "}.code,.form-control.code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875em;padding:.1875rem .375rem;border-radius:.375rem}.label-link{float:right;font-size:12px}.form-control:disabled,.form-control[readonly]{background-color:var(--bs-secondary-bg);opacity:1}label .field-validation-error::before{content:"- "}input[type=password]::-ms-clear,input[type=password]::-ms-reveal{display:none}.has-filter .form-control,.has-search .form-control{padding-left:2rem;color:var(--bs-body-color)}.has-filter .form-control-feedback,.has-search .form-control-feedback{position:absolute;left:1.75rem;z-index:10;display:block;width:1rem;height:2rem;line-height:1rem;text-align:center;pointer-events:none;color:var(--bs-secondary)}.has-filter .form-control-feedback{left:4.25rem;top:.25rem}.has-search .form-control-feedback{left:1.75rem}.has-filter:not(.input-group) .form-control-feedback,.has-search:not(.input-group) .form-control-feedback{left:1.75rem;top:1.25rem}.has-filter .btn:not(.show),.has-filter .button:not(.show){border-color:var(--bs-border-color)!important}.ta-col-grouping.col-xs .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.iconpicker-popover.popover{background:0 0!important}.iconpicker-popover.popover .popover-title{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-items{background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-item{color:var(--bs-body-color)!important;box-shadow:0 0 0 1px var(--bs-border-color)}.iconpicker .iconpicker-item:hover{background-color:var(--bs-tertiary-color)!important}.with-checkbox .list-group-item{padding:.75rem .5rem}.list-group-item+.list-group-item{border-top-width:0}.monaco-editor{--vscode-foreground:var(--bs-body-color)!important;--vscode-editor-background:var(--bs-body-bg)!important;--vscode-editor-foreground:var(--bs-body-color)!important;--vscode-editorStickyScroll-background:var(--bs-body-bg)!important;--vscode-editorLink-activeForeground:var(--bs-secondary)!important;--vscode-breadcrumb-background:var(--bs-body-bg)!important;--vscode-editorGutter-background:var(--bs-body-bg)!important;--vscode-editorMarkerNavigation-background:var(--bs-body-bg)!important;--vscode-editorSuggestWidget-foreground:var(--bs-body-color)!important;--vscode-minimapSlider-background:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-minimapSlider-hoverBackground:rgba(var(--bs-body-bg-rbg), 0.35);--vscode-minimapSlider-activeBackground:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-scrollbarSlider-background:var(--oc-scrollbar-color)!important;--vscode-scrollbarSlider-hoverBackground:var(--oc-admin-menu-bg-color)!important;--vscode-scrollbarSlider-activeBackground:var(--oc-admin-menu-bg-color)!important;--vscode-dropdown-background:var(--bs-body-bg)!important;--vscode-dropdown-foreground:var(--bs-body-color)!important;--vscode-dropdown-border:var(--bs-border-color-translucent)}div.editor-widget.find-widget .button.codicon{background-color:transparent;border-color:transparent;display:flex;color:#616161;box-shadow:none}div.editor-widget.find-widget .button.codicon:focus{background-color:transparent;border-color:transparent}div.editor-widget.find-widget .button.codicon:active{background-color:transparent;border-color:transparent}.ta-navbar-top{border-bottom:var(--oc-border-content);z-index:var(--oc-top-nav-zindex);height:var(--oc-top-nav-height);box-shadow:0 .46875rem 2.1875rem rgba(4,9,20,.03),0 .9375rem 1.40625rem rgba(4,9,20,.03),0 .25rem .53125rem rgba(4,9,20,.05),0 .125rem .1875rem rgba(4,9,20,.03);padding-top:0;padding-bottom:0}.ta-navbar-top h1{font-size:24px;font-weight:700;margin-bottom:0}.ta-navbar-top .brand-wrapper-title{display:none}.ta-navbar-top .breadcrumb{background-color:transparent;margin-top:1rem}@media (min-width:576px){.ta-navbar-top .brand-wrapper-title{display:block;position:absolute;left:calc(var(--oc-start-navigation-width) + 10px)}}@media (max-width:575.98px){.ta-navbar-top .navbar-collapse li:first-child .nav-link{padding-top:15px}.ta-navbar-top .navbar-collapse li:last-child .nav-link{padding-bottom:0}}.left-sidebar-compact .ta-navbar-top .brand-wrapper-title{left:calc(var(--oc-start-navigation-width-when-compact) + 15px)}.brand-wrapper-title>h1{margin-bottom:0}.ta-navbar-brand{white-space:nowrap;transition:width .2s ease-in-out}.ta-navbar-brand span{font-size:14px;font-weight:700}.ta-navbar-brand img{height:32px}.left-sidebar-compact .ta-navbar-brand span{display:none}.user-top-navbar{padding-top:0;padding-bottom:0}.user-top-navbar .nav-item .nav-link{padding-left:.5rem;padding-right:.5rem}.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{top:-100%;width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;bottom:-17px}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background-color:var(--bs-body-bg);color:var(--bs-body-color);border-radius:var(--bs-border-radius);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-connects{border-radius:var(--bs-border-radius)}.noUi-connect{background-color:var(--bs-body-bg)}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);cursor:default;box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-active{box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background-color:var(--bs-body-bg);left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background-color:var(--bs-body-bg)}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:var(--bs-body-color)}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:var(--bs-body-color);font-size:10px}.noUi-marker{position:absolute;background-color:var(--bs-body-bg)}.noUi-marker-sub{background-color:var(--bs-body-bg)}.noUi-marker-large{background-color:var(--bs-body-bg)}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}/*! rtl:ignore */.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}/*! rtl:ignore */.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #d9d9d9;border-radius:3px;background-color:var(--bs-body-bg);color:var(--bs-body-color);padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}ul.pager{margin-top:1rem;margin-bottom:1rem;justify-content:center}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}body:not(.left-sidebar-compact) #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar{width:4px}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}body:not(.left-sidebar-compact) #ta-left-sidebar figure{margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse{display:none}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse.show{display:block}body:not(.left-sidebar-compact) #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}body:not(.left-sidebar-compact) #ta-left-sidebar a,body:not(.left-sidebar-compact) #ta-left-sidebar figcaption{position:relative;display:block;margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav{position:relative;flex:1 1 auto;height:calc(100% - 51px - 38px)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li .item-label{flex-grow:1;cursor:pointer}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li{line-height:3em;width:var(--oc-start-navigation-width);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.new:after{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin{overflow-y:auto;overflow-x:hidden;height:100%;margin-bottom:40px;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label{padding-left:0!important;display:flex}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon svg{width:35px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px - 45px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:active,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:visited,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul li .item-label{color:var(--oc-admin-menu-item-font-color);text-decoration:none;padding-left:16px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>li>figure>figcaption>.item-label{width:100%}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items .item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:active,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:visited{padding-left:12px}body:not(.left-sidebar-compact) #ta-left-sidebar li .item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li>figure>ul>li.active>.item-label{background:rgba(0,0,0,.1);color:var(--oc-admin-menu-item-font-color-active)!important;font-weight:600;padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label{padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label{background-color:rgba(0,0,0,.05);font-weight:600}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.05);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label{background:rgba(0,0,0,.05);color:var(--oc-admin-menu-item-font-color)!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label>span.icon,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label>span.icon{font-size:16px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li{background:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>.active>a{padding-left:44px!important}body:not(.left-sidebar-compact) #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}body:not(.left-sidebar-compact) #ta-left-sidebar .footer:before{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #filter,body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus{border:none;box-shadow:unset;border-radius:unset}.left-sidebar-compact #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width-when-compact);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out;font-family:"Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar{width:4px}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}.left-sidebar-compact #ta-left-sidebar figure{margin:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}.left-sidebar-compact #ta-left-sidebar .collapse{display:none}.left-sidebar-compact #ta-left-sidebar .collapse.show{display:block}.left-sidebar-compact #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}.left-sidebar-compact #ta-left-sidebar a,.left-sidebar-compact #ta-left-sidebar figcaption{position:relative;display:block;margin:0}.left-sidebar-compact #ta-left-sidebar #left-nav{flex:1 1 auto;height:calc(100% - 51px);overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap;background-color:var(--oc-admin-menu-item-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .item-label{cursor:pointer}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{height:48px;line-height:3em;width:calc(var(--oc-start-navigation-width-when-compact) - 1);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:first-child>span.title:after{content:"";width:75%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto 4px auto}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.btn-nostyle{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:not(.has-items) .item-label>span.icon{font-size:22px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label{padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:16px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon-none{flex-shrink:0;font-size:16px;width:37px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .icon:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption{box-shadow:0 0 10px 0 rgba(0,0,0,.2)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption>a.item-label{z-index:9999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li .item-label:hover:not(:first-child){color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{display:inline-block!important;color:var(--oc-admin-menu-item-font-color);background-color:var(--oc-admin-menu-bg-color);width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);z-index:1}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{overflow:hidden}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li span.title{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible{overflow:visible;width:calc(var(--oc-start-navigation-width-when-compact) + var(--oc-start-navigation-width));transition:none;position:static}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible>figure{position:absolute;z-index:999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.icon,.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.title{display:block}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);max-height:250px;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul li .item-label:hover{background-color:rgba(0,0,0,.05)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label{background-color:var(--oc-admin-menu-item-bg-color);color:var(--oc-admin-menu-item-font-color);padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title{padding:0 20px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{background-color:var(--oc-admin-menu-item-bg-color)!important;color:var(--oc-admin-menu-item-font-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title{flex-grow:1;font-size:14px;font-weight:700;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:260px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title:after{content:"";height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto;position:absolute;width:75%;left:63px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav li a:active,.left-sidebar-compact #ta-left-sidebar #left-nav li a:hover,.left-sidebar-compact #ta-left-sidebar #left-nav li a:visited,.left-sidebar-compact #ta-left-sidebar #left-nav ul li .item-label{text-decoration:none;padding-left:16px}.left-sidebar-compact #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}.left-sidebar-compact #ta-left-sidebar li.has-items .item-label,.left-sidebar-compact #ta-left-sidebar li.has-items a:active,.left-sidebar-compact #ta-left-sidebar li.has-items a:hover,.left-sidebar-compact #ta-left-sidebar li.has-items a:visited{padding-left:12px}.left-sidebar-compact #ta-left-sidebar li>figure>ul>li.active ul>li.active .item-label{background:rgba(0,0,0,.05);color:rgba(var(--oc-admin-menu-item-font-color-active),.9)!important;font-weight:600;padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active ul>li.active .item-label::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:#0078d4;bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label{padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>.item-label{background-color:rgba(0,0,0,.1);font-weight:600}.left-sidebar-compact #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure .item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li>.item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li.active>figure ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li{background:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li>figure>figcaption>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>.active>a{padding-left:44px!important}.left-sidebar-compact #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}.left-sidebar-compact #ta-left-sidebar .footer:before{content:"";width:60%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto}.left-sidebar-compact #ta-left-sidebar #filter,.left-sidebar-compact #ta-left-sidebar #filter:focus{display:none}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure{position:static;z-index:unset}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul:before{content:attr(data-title);padding:0 20px;font-size:14px;font-weight:700;width:100%;display:block}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul>li:first-child::before{background:rgba(0,0,0,.1);margin:0 auto;content:"";height:1px;display:block;position:absolute;width:90%;left:15px}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);height:calc(100vh - 52px);max-height:unset;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color);top:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin>li>.item-label{background-color:#f8f9fa!important}.leftbar-compactor{display:block;width:var(--oc-start-navigation-width-when-compact);height:50px;padding:10px;border:none;background-color:transparent;color:var(--oc-admin-menu-font-color);cursor:pointer;font-size:20px;float:right;transition-duration:.2s;display:block;transform:scale(2,1)}.leftbar-compactor:focus{outline:0}.leftbar-compactor:hover{color:#0078d4;color:var(#0078d4);text-shadow:0 0 4px rgba(0,120,212,.5)}.leftbar-compactor:before{content:"⟪"}.left-sidebar-compact .leftbar-compactor{transition-duration:.2s;transform:scale(-2,1)}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}.ui-sortable{min-height:1rem}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}.tab-pane{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-bottom:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius);border-top-right-radius:var(--bs-border-radius);margin-bottom:1rem;padding-left:1rem;padding-right:1rem;padding-top:1rem}.nav-tabs{border-bottom:none;margin-top:1px;margin-bottom:-1px}.nav-tabs .nav-link{border:none;color:#fff;background-color:#6c757d;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-tabs .nav-link{transition:none}}.nav-tabs .nav-link:hover{background-color:#5a6268}.nav-tabs .nav-link.active{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);cursor:initial;color:#212529;background-color:#fff}.nav-tabs .nav-link.active:hover{background-color:#fff}.nav-tabs .nav-item{margin-bottom:0}@media (max-width:575.98px){.nav-tabs .nav-item:not(.nav-link){padding-bottom:.25rem}.nav-tabs .nav-link{border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius)}.nav-tabs .nav-link.active{border-bottom:var(--bs-border-width) solid var(--bs-border-color)}}.trumbowyg{font-size:16px}[dir] .trumbowyg-box{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] trumbowyg-editor-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] .trumbowyg-button-pane{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-border-color);padding:0}.trumbowyg-box svg,.trumbowyg-modal svg{color:var(--bs-body-color);fill:var(--bs-body-color)}[dir] .trumbowyg-button-pane button{margin-bottom:0!important}[dir] .trumbowyg-dropdown{background-color:var(--bs-body-bg);color:var(--bs-body-color);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)}[dir] .trumbowyg-dropdown button:focus,[dir] .trumbowyg-dropdown button:hover{background-color:var(--bs-body-color)!important;color:var(--bs-body-bg)!important}[dir] .trumbowyg-button-pane .trumbowyg-open-dropdown::after{border-top-color:var(--bs-body-color)}[dir] .trumbowyg-dropdown button{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen{z-index:var(--oc-editor-fullscreen)}[dir] .trumbowyg-fullscreen .trumbowyg-editor-box,[dir] .trumbowyg-fullscreen.trumbowyg-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg{color:var(--bs-body-color);fill:var(--bs-body-color)}span.field-validation-error{width:100%}.validation-summary-errors{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis);--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.validation-summary-errors ul{margin-bottom:0!important}.field-validation-error{color:var(--bs-text-danger)!important}.field-validation-valid{display:none}.vue-multiselect{color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__content-wrapper,.multiselect__tags{border:var(--bs-border-width) solid var(--bs-border-color)!important}.multiselect__tags{border-radius:var(--bs-border-radius)!important}.multiselect__content-wrapper,.multiselect__input,.multiselect__tags{background-color:var(--bs-body-bg)!important}.multiselect--active{z-index:var(--oc-zindex-dropdown,1000)!important;color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__spinner{background-color:var(--bs-body-bg)!important}.ta-badge{background-color:var(--bs-light);color:var(--bs-secondary-color)}.bootstrap-select .popover-header .close{color:var(--bs-black)}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-gray-900)!important}.bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}.card{--bs-card-bg:var(--bs-white)}.modal{--bs-modal-bg:var(--bs-white)}.bg-theme{background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.text-theme{color:var(--bs-body-color)}.text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.btn-theme{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-theme:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-theme,.btn-theme:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-theme,.btn-check:checked+.btn-theme,.btn-theme.active,.btn-theme:active,.show>.btn-theme.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-theme:focus,.btn-check:checked+.btn-theme:focus,.btn-theme.active:focus,.btn-theme:active:focus,.show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-theme.disabled,.btn-theme:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030}[data-bs-theme=dark]{--oc-scrollbar-color:#76787A;--oc-admin-menu-bg-color:var(--bs-dark-bg)}[data-bs-theme=dark] .ta-badge{background-color:var(--bs-dark);color:var(--bs-secondary-color)}[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:active,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:focus,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}[data-bs-theme=dark] .bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}[data-bs-theme=dark] .card{--bs-card-bg:var(--bs-body)}[data-bs-theme=dark] .modal{--bs-modal-bg:var(--bs-dark)}[data-bs-theme=dark] .bg-theme{background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .text-theme{color:var(--bs-body-color)}[data-bs-theme=dark] .text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .btn-theme{color:#fff;background-color:#212529;border-color:#212529}[data-bs-theme=dark] .btn-theme:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}[data-bs-theme=dark] .btn-check:focus+.btn-theme,[data-bs-theme=dark] .btn-theme:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-check:active+.btn-theme,[data-bs-theme=dark] .btn-check:checked+.btn-theme,[data-bs-theme=dark] .btn-theme.active,[data-bs-theme=dark] .btn-theme:active,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}[data-bs-theme=dark] .btn-check:active+.btn-theme:focus,[data-bs-theme=dark] .btn-check:checked+.btn-theme:focus,[data-bs-theme=dark] .btn-theme.active:focus,[data-bs-theme=dark] .btn-theme:active:focus,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-theme.disabled,[data-bs-theme=dark] .btn-theme:disabled{color:#fff;background-color:#212529;border-color:#212529} +@charset "UTF-8";:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.w-xs-25{width:25%!important}.w-xs-50{width:50%!important}.w-xs-75{width:75%!important}@media (min-width:576px){.w-sm-25{width:25%!important}}@media (min-width:576px){.w-sm-50{width:50%!important}}@media (min-width:576px){.w-sm-75{width:75%!important}}@media (min-width:768px){.w-md-25{width:25%!important}}@media (min-width:768px){.w-md-50{width:50%!important}}@media (min-width:768px){.w-md-75{width:75%!important}}@media (min-width:992px){.w-lg-25{width:25%!important}}@media (min-width:992px){.w-lg-50{width:50%!important}}@media (min-width:992px){.w-lg-75{width:75%!important}}@media (min-width:1200px){.w-xl-25{width:25%!important}}@media (min-width:1200px){.w-xl-50{width:50%!important}}@media (min-width:1200px){.w-xl-75{width:75%!important}}@media (min-width:1400px){.w-xxl-25{width:25%!important}}@media (min-width:1400px){.w-xxl-50{width:50%!important}}@media (min-width:1400px){.w-xxl-75{width:75%!important}}.unset{all:unset}a{text-decoration:none}a:hover{text-decoration:underline}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}body{margin-bottom:var(--oc-footer-height);height:100%}.cursor-move{cursor:move}.cursor-pointer{cursor:pointer}.ta-content{padding:15px;margin-left:var(--oc-start-navigation-width);margin-top:var(--oc-top-nav-height);margin-bottom:var(--oc-footer-height);transition:margin-left .2s ease-in-out}.ta-content h1{line-height:40px;font-size:28px;letter-spacing:-.04em;font-weight:700}@media (max-width:575.98px){.ta-content{margin-left:var(--oc-start-navigation-width-when-compact);transition:margin-left .5s ease-in-out}}.left-sidebar-compact .ta-content{margin-left:var(--oc-start-navigation-width-when-compact)}.preload *{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.action-bar{top:3.3rem;z-index:var(--oc-action-bar-zindex)}.second-action-bar{z-index:var(--oc-second-action-bar-zindex)}.ta-badge{border-radius:var(--bs-border-radius-pill)!important;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:inline-flex;align-items:center;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.button{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select .dropdown-toggle .bs-select-clear-selected{position:relative;display:block;margin-right:5px;text-align:center}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected{padding-right:inherit}.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{position:relative;top:calc((-.6666666667em + 1ex)/ 2);pointer-events:none}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{top:auto}.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected{display:none}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:" "}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:"";display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;transform-style:preserve-3d;transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:"";border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:"";border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group{display:block}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group{display:block}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}.multiselect__content-wrapper ul{padding-left:unset}html[dir=rtl] .bootstrap-select .bs-ok-default:after{border-width:0 .26em .26em 0!important;transform:rotate(45deg)!important}.bootstrap-select .popover-header{padding:.5rem 1rem;margin-bottom:0;border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.bootstrap-select .popover-header .close{border:0;background:0 0;box-shadow:none;border-radius:0;float:right!important;padding-top:0;padding-right:0;background:unset}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}:root{--oc-mde-zindex:var(--oc-editor-fullscreen)!important}.CodeMirror{height:auto;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-body-bg);color:var(--bs-body-color)}.CodeMirror-gutters{background-color:var(--bs-secondary-bg);color:var(--bs-secondary-color)}.CodeMirror-fullscreen{background:var(--bs-body-bg);color:var(--bs-body-color);position:fixed!important;top:var(--oc-top-nav-height)!important;left:0;right:0;bottom:0;height:auto;z-index:var(--bs-modal-zindex);border-right:none!important;border-bottom-right-radius:0!important}.CodeMirror pre{padding-left:7px;line-height:1.25;margin-bottom:0;overflow:unset}.CodeMirror-activeline-background{background:0 0!important}.CodeMirror-focused .CodeMirror-activeline-background{background:rgba(var(--bs-secondary-bg-rgb),.1)!important}.dropdown-menu.scrollable{overflow-y:auto;max-height:var(--oc-height-dropdown);scrollbar-width:thin}.btn-dropdown ::-webkit-scrollbar{width:4px}.btn-dropdown .dropdown-menu{max-height:var(--oc-height-dropdown);overflow:hidden auto;scrollbar-width:thin}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.hint{font-size:.875em;color:var(--bs-text-body-secondary)!important;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.hint.dashed::before,.text-muted.dashed::before{content:"— "}.code,.form-control.code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875em;padding:.1875rem .375rem;border-radius:.375rem}.label-link{float:right;font-size:12px}.form-control:disabled,.form-control[readonly]{background-color:var(--bs-secondary-bg);opacity:1}label .field-validation-error::before{content:"- "}input[type=password]::-ms-clear,input[type=password]::-ms-reveal{display:none}.has-filter .form-control,.has-search .form-control{padding-left:2rem;color:var(--bs-body-color)}.has-filter .form-control-feedback,.has-search .form-control-feedback{position:absolute;left:1.75rem;z-index:10;display:block;width:1rem;height:2rem;line-height:1rem;text-align:center;pointer-events:none;color:var(--bs-secondary)}.has-filter .form-control-feedback{left:4.25rem;top:.25rem}.has-search .form-control-feedback{left:1.75rem}.has-filter:not(.input-group) .form-control-feedback,.has-search:not(.input-group) .form-control-feedback{left:1.75rem;top:1.25rem}.has-filter .btn:not(.show),.has-filter .button:not(.show){border-color:var(--bs-border-color)!important}.ta-col-grouping.col-xs .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.iconpicker-popover.popover{background:0 0!important}.iconpicker-popover.popover .popover-title{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-items{background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-item{color:var(--bs-body-color)!important;box-shadow:0 0 0 1px var(--bs-border-color)}.iconpicker .iconpicker-item:hover{background-color:var(--bs-tertiary-color)!important}.with-checkbox .list-group-item{padding:.75rem .5rem}.list-group-item+.list-group-item{border-top-width:0}.monaco-editor{--vscode-foreground:var(--bs-body-color)!important;--vscode-editor-background:var(--bs-body-bg)!important;--vscode-editor-foreground:var(--bs-body-color)!important;--vscode-editorStickyScroll-background:var(--bs-body-bg)!important;--vscode-editorLink-activeForeground:var(--bs-secondary)!important;--vscode-breadcrumb-background:var(--bs-body-bg)!important;--vscode-editorGutter-background:var(--bs-body-bg)!important;--vscode-editorMarkerNavigation-background:var(--bs-body-bg)!important;--vscode-editorSuggestWidget-foreground:var(--bs-body-color)!important;--vscode-minimapSlider-background:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-minimapSlider-hoverBackground:rgba(var(--bs-body-bg-rbg), 0.35);--vscode-minimapSlider-activeBackground:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-scrollbarSlider-background:var(--oc-scrollbar-color)!important;--vscode-scrollbarSlider-hoverBackground:var(--oc-admin-menu-bg-color)!important;--vscode-scrollbarSlider-activeBackground:var(--oc-admin-menu-bg-color)!important;--vscode-dropdown-background:var(--bs-body-bg)!important;--vscode-dropdown-foreground:var(--bs-body-color)!important;--vscode-dropdown-border:var(--bs-border-color-translucent)}div.editor-widget.find-widget .button.codicon{background-color:transparent;border-color:transparent;display:flex;color:var(--bs-secondary-color);box-shadow:none}div.editor-widget.find-widget .button.codicon:focus{background-color:transparent;border-color:transparent}div.editor-widget.find-widget .button.codicon:active{background-color:transparent;border-color:transparent}.ta-navbar-top{border-bottom:var(--oc-border-content);z-index:var(--oc-top-nav-zindex);height:var(--oc-top-nav-height);box-shadow:0 .46875rem 2.1875rem rgba(4,9,20,.03),0 .9375rem 1.40625rem rgba(4,9,20,.03),0 .25rem .53125rem rgba(4,9,20,.05),0 .125rem .1875rem rgba(4,9,20,.03);padding-top:0;padding-bottom:0}.ta-navbar-top h1{font-size:24px;font-weight:700;margin-bottom:0}.ta-navbar-top .brand-wrapper-title{display:none}.ta-navbar-top .breadcrumb{background-color:transparent;margin-top:1rem}@media (min-width:576px){.ta-navbar-top .brand-wrapper-title{display:block;position:absolute;left:calc(var(--oc-start-navigation-width) + 10px)}}@media (max-width:575.98px){.ta-navbar-top .navbar-collapse li:first-child .nav-link{padding-top:15px}.ta-navbar-top .navbar-collapse li:last-child .nav-link{padding-bottom:0}}.left-sidebar-compact .ta-navbar-top .brand-wrapper-title{left:calc(var(--oc-start-navigation-width-when-compact) + 15px)}.brand-wrapper-title>h1{margin-bottom:0}.ta-navbar-brand{white-space:nowrap;transition:width .2s ease-in-out}.ta-navbar-brand span{font-size:14px;font-weight:700}.ta-navbar-brand img{height:32px}.left-sidebar-compact .ta-navbar-brand span{display:none}.user-top-navbar{padding-top:0;padding-bottom:0}.user-top-navbar .nav-item .nav-link{padding-left:.5rem;padding-right:.5rem}.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{top:-100%;width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;bottom:-17px}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background-color:var(--bs-body-bg);color:var(--bs-body-color);border-radius:var(--bs-border-radius);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-connects{border-radius:var(--bs-border-radius)}.noUi-connect{background-color:var(--bs-body-bg)}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);cursor:default;box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-active{box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background-color:var(--bs-body-bg);left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background-color:var(--bs-body-bg)}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:var(--bs-body-color)}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:var(--bs-body-color);font-size:10px}.noUi-marker{position:absolute;background-color:var(--bs-body-bg)}.noUi-marker-sub{background-color:var(--bs-body-bg)}.noUi-marker-large{background-color:var(--bs-body-bg)}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}/*! rtl:ignore */.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}/*! rtl:ignore */.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #d9d9d9;border-radius:3px;background-color:var(--bs-body-bg);color:var(--bs-body-color);padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}ul.pager{margin-top:1rem;margin-bottom:1rem;justify-content:center}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}body:not(.left-sidebar-compact) #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar{width:4px}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}body:not(.left-sidebar-compact) #ta-left-sidebar figure{margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse{display:none}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse.show{display:block}body:not(.left-sidebar-compact) #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}body:not(.left-sidebar-compact) #ta-left-sidebar a,body:not(.left-sidebar-compact) #ta-left-sidebar figcaption{position:relative;display:block;margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav{position:relative;flex:1 1 auto;height:calc(100% - 51px - 38px)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li .item-label{flex-grow:1;cursor:pointer}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li{line-height:3em;width:var(--oc-start-navigation-width);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.new:after{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin{overflow-y:auto;overflow-x:hidden;height:100%;margin-bottom:40px;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label{padding-left:0!important;display:flex}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon svg{width:35px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px - 45px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:active,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:visited,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul li .item-label{color:var(--oc-admin-menu-item-font-color);text-decoration:none;padding-left:16px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>li>figure>figcaption>.item-label{width:100%}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items .item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:active,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:visited{padding-left:12px}body:not(.left-sidebar-compact) #ta-left-sidebar li .item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li>figure>ul>li.active>.item-label{background:rgba(0,0,0,.1);color:var(--oc-admin-menu-item-font-color-active)!important;font-weight:600;padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label{padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label{background-color:rgba(0,0,0,.05);font-weight:600}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.05);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label{background:rgba(0,0,0,.05);color:var(--oc-admin-menu-item-font-color)!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label>span.icon,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label>span.icon{font-size:16px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li{background:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>.active>a{padding-left:44px!important}body:not(.left-sidebar-compact) #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}body:not(.left-sidebar-compact) #ta-left-sidebar .footer:before{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #filter,body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus{border:none;box-shadow:unset;border-radius:unset}.left-sidebar-compact #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width-when-compact);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out;font-family:"Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar{width:4px}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}.left-sidebar-compact #ta-left-sidebar figure{margin:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}.left-sidebar-compact #ta-left-sidebar .collapse{display:none}.left-sidebar-compact #ta-left-sidebar .collapse.show{display:block}.left-sidebar-compact #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}.left-sidebar-compact #ta-left-sidebar a,.left-sidebar-compact #ta-left-sidebar figcaption{position:relative;display:block;margin:0}.left-sidebar-compact #ta-left-sidebar #left-nav{flex:1 1 auto;height:calc(100% - 51px);overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap;background-color:var(--oc-admin-menu-item-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .item-label{cursor:pointer}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{height:48px;line-height:3em;width:calc(var(--oc-start-navigation-width-when-compact) - 1);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:first-child>span.title:after{content:"";width:75%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto 4px auto}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.btn-nostyle{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:not(.has-items) .item-label>span.icon{font-size:22px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label{padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:16px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon-none{flex-shrink:0;font-size:16px;width:37px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .icon:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption{box-shadow:0 0 10px 0 rgba(0,0,0,.2)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption>a.item-label{z-index:9999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li .item-label:hover:not(:first-child){color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{display:inline-block!important;color:var(--oc-admin-menu-item-font-color);background-color:var(--oc-admin-menu-bg-color);width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);z-index:1}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{overflow:hidden}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li span.title{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible{overflow:visible;width:calc(var(--oc-start-navigation-width-when-compact) + var(--oc-start-navigation-width));transition:none;position:static}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible>figure{position:absolute;z-index:999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.icon,.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.title{display:block}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);max-height:250px;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul li .item-label:hover{background-color:rgba(0,0,0,.05)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label{background-color:var(--oc-admin-menu-item-bg-color);color:var(--oc-admin-menu-item-font-color);padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title{padding:0 20px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{background-color:var(--oc-admin-menu-item-bg-color)!important;color:var(--oc-admin-menu-item-font-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title{flex-grow:1;font-size:14px;font-weight:700;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:260px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title:after{content:"";height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto;position:absolute;width:75%;left:63px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav li a:active,.left-sidebar-compact #ta-left-sidebar #left-nav li a:hover,.left-sidebar-compact #ta-left-sidebar #left-nav li a:visited,.left-sidebar-compact #ta-left-sidebar #left-nav ul li .item-label{text-decoration:none;padding-left:16px}.left-sidebar-compact #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}.left-sidebar-compact #ta-left-sidebar li.has-items .item-label,.left-sidebar-compact #ta-left-sidebar li.has-items a:active,.left-sidebar-compact #ta-left-sidebar li.has-items a:hover,.left-sidebar-compact #ta-left-sidebar li.has-items a:visited{padding-left:12px}.left-sidebar-compact #ta-left-sidebar li>figure>ul>li.active ul>li.active .item-label{background:rgba(0,0,0,.05);color:rgba(var(--oc-admin-menu-item-font-color-active),.9)!important;font-weight:600;padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active ul>li.active .item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label{padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>.item-label{background-color:rgba(0,0,0,.1);font-weight:600}.left-sidebar-compact #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure .item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li>.item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li.active>figure ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li{background:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li>figure>figcaption>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>.active>a{padding-left:44px!important}.left-sidebar-compact #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}.left-sidebar-compact #ta-left-sidebar .footer:before{content:"";width:60%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto}.left-sidebar-compact #ta-left-sidebar #filter,.left-sidebar-compact #ta-left-sidebar #filter:focus{display:none}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure{position:static;z-index:unset}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul:before{content:attr(data-title);padding:0 20px;font-size:14px;font-weight:700;width:100%;display:block}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul>li:first-child::before{background:rgba(0,0,0,.1);margin:0 auto;content:"";height:1px;display:block;position:absolute;width:90%;left:15px}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);height:calc(100vh - 52px);max-height:unset;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color);top:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin>li>.item-label{background-color:#f8f9fa!important}.leftbar-compactor{display:block;width:var(--oc-start-navigation-width-when-compact);height:50px;padding:10px;border:none;background-color:transparent;color:var(--oc-admin-menu-font-color);cursor:pointer;font-size:20px;float:right;transition-duration:.2s;display:block;transform:scale(2,1)}.leftbar-compactor:focus{outline:0}.leftbar-compactor:hover{color:#0078d4;color:var(#0078d4);text-shadow:0 0 4px rgba(0,120,212,.5)}.leftbar-compactor:before{content:"⟪"}.left-sidebar-compact .leftbar-compactor{transition-duration:.2s;transform:scale(-2,1)}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.ui-sortable{min-height:1rem}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.tab-pane{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-bottom:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius);border-top-right-radius:var(--bs-border-radius);margin-bottom:1rem;padding-left:1rem;padding-right:1rem;padding-top:1rem}.nav-tabs{border-bottom:none;margin-top:1px;margin-bottom:-1px}.nav-tabs .nav-link{border:none;color:#fff;background-color:#6c757d;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-tabs .nav-link{transition:none}}.nav-tabs .nav-link:hover{background-color:#5a6268}.nav-tabs .nav-link.active{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);cursor:initial;color:#212529;background-color:#fff}.nav-tabs .nav-link.active:hover{background-color:#fff}.nav-tabs .nav-item{margin-bottom:0}@media (max-width:575.98px){.nav-tabs .nav-item:not(.nav-link){padding-bottom:.25rem}.nav-tabs .nav-link{border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius)}.nav-tabs .nav-link.active{border-bottom:var(--bs-border-width) solid var(--bs-border-color)}}.trumbowyg{font-size:16px}[dir] .trumbowyg-box{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] trumbowyg-editor-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] .trumbowyg-button-pane{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-border-color);padding:0}.trumbowyg-box svg,.trumbowyg-modal svg{color:var(--bs-body-color);fill:var(--bs-body-color)}[dir] .trumbowyg-button-pane button{margin-bottom:0!important}[dir] .trumbowyg-dropdown{background-color:var(--bs-body-bg);color:var(--bs-body-color);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)}[dir] .trumbowyg-dropdown button:focus,[dir] .trumbowyg-dropdown button:hover{background-color:var(--bs-body-color)!important;color:var(--bs-body-bg)!important}[dir] .trumbowyg-button-pane .trumbowyg-open-dropdown::after{border-top-color:var(--bs-body-color)}[dir] .trumbowyg-dropdown button{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen{z-index:var(--oc-editor-fullscreen)}[dir] .trumbowyg-fullscreen .trumbowyg-editor-box,[dir] .trumbowyg-fullscreen.trumbowyg-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg{color:var(--bs-body-color);fill:var(--bs-body-color)}span.field-validation-error{width:100%}.validation-summary-errors{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis);--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.validation-summary-errors ul{margin-bottom:0!important}.field-validation-error{color:var(--bs-text-danger)!important}.field-validation-valid{display:none}.vue-multiselect{color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__content-wrapper,.multiselect__tags{border:var(--bs-border-width) solid var(--bs-border-color)!important}.multiselect__tags{border-radius:var(--bs-border-radius)!important}.multiselect__content-wrapper,.multiselect__input,.multiselect__tags{background-color:var(--bs-body-bg)!important}.multiselect--active{z-index:var(--oc-zindex-dropdown,1000)!important;color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__spinner{background-color:var(--bs-body-bg)!important}.ta-badge{background-color:var(--bs-light);color:var(--bs-secondary-color)}.bootstrap-select .popover-header .close{color:var(--bs-black)}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-gray-900)!important}.bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}.card{--bs-card-bg:var(--bs-white)}.modal{--bs-modal-bg:var(--bs-white)}.bg-theme{background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.text-theme{color:var(--bs-body-color)}.text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.btn-theme{color:var(--bs-black);background-color:#f8f9fa;border-color:#f8f9fa}.btn-theme:hover{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-theme,.btn-theme:focus{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-theme,.btn-check:checked+.btn-theme,.btn-theme.active,.btn-theme:active,.show>.btn-theme.dropdown-toggle{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-theme:focus,.btn-check:checked+.btn-theme:focus,.btn-theme.active:focus,.btn-theme:active:focus,.show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-theme.disabled,.btn-theme:disabled{color:var(--bs-black);background-color:#f8f9fa;border-color:#f8f9fa}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}[data-bs-theme=dark]{--oc-scrollbar-color:#76787A;--oc-admin-menu-bg-color:var(--bs-dark-bg)}[data-bs-theme=dark] .ta-badge{background-color:var(--bs-dark);color:var(--bs-secondary-color)}[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:active,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:focus,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}[data-bs-theme=dark] .bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}[data-bs-theme=dark] .card{--bs-card-bg:var(--bs-body)}[data-bs-theme=dark] .modal{--bs-modal-bg:var(--bs-dark)}[data-bs-theme=dark] .bg-theme{background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .text-theme{color:var(--bs-body-color)}[data-bs-theme=dark] .text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .btn-theme{color:var(--bs-white);background-color:var(--bs-gray-900);border-color:var(--bs-gray-900)}[data-bs-theme=dark] .btn-theme:hover{color:var(--bs-white);background-color:#1c1f23;border-color:#1a1e21}[data-bs-theme=dark] .btn-check:focus+.btn-theme,[data-bs-theme=dark] .btn-theme:focus{color:var(--bs-white);background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-check:active+.btn-theme,[data-bs-theme=dark] .btn-check:checked+.btn-theme,[data-bs-theme=dark] .btn-theme.active,[data-bs-theme=dark] .btn-theme:active,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle{color:var(--bs-white);background-color:#1a1e21;border-color:#191c1f}[data-bs-theme=dark] .btn-check:active+.btn-theme:focus,[data-bs-theme=dark] .btn-check:checked+.btn-theme:focus,[data-bs-theme=dark] .btn-theme.active:focus,[data-bs-theme=dark] .btn-theme:active:focus,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-theme.disabled,[data-bs-theme=dark] .btn-theme:disabled{color:var(--bs-white);background-color:var(--bs-gray-900);border-color:var(--bs-gray-900)} From 819f737d38f36a129d7f7444a87d7287af7b9316 Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Wed, 27 Sep 2023 10:34:57 -0700 Subject: [PATCH 2/3] Adjust z-indexes --- .../TheAdmin/Assets/scss/_variables.scss | 4 +- .../TheAdmin/wwwroot/css/TheAdmin.css | 40 +++++++++---------- .../TheAdmin/wwwroot/css/TheAdmin.min.css | 2 +- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss b/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss index f562ac1a559..13ef4c093f6 100644 --- a/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss +++ b/src/OrchardCore.Themes/TheAdmin/Assets/scss/_variables.scss @@ -35,8 +35,8 @@ $dropdown-max-height: 250px !default; --oc-editor-fullscreen: #{$zindex-modal - 1}; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: #{$zindex-dropdown - 20}; - --oc-second-action-bar-zindex: #{$zindex-dropdown - 17}; + --oc-action-bar-zindex: #{$zindex-dropdown - 17}; + --oc-second-action-bar-zindex: #{$zindex-dropdown - 20}; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: #{$zindex-dropdown}; --bs-zindex-fixed: #{$zindex-fixed}; diff --git a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css index a40b3d93818..0c59984af8d 100644 --- a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css +++ b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.css @@ -25,8 +25,8 @@ --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -60,8 +60,8 @@ --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -193,8 +193,8 @@ a:hover { --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -271,8 +271,8 @@ body { --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -753,8 +753,8 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -847,8 +847,8 @@ html[dir=rtl] .bootstrap-select .bs-ok-default:after { --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -8530,8 +8530,8 @@ ul.pager { --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -9316,8 +9316,8 @@ html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin > li > .item-label --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -9354,8 +9354,8 @@ html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin > li > .item-label --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; @@ -9663,8 +9663,8 @@ span.field-validation-error { --oc-editor-fullscreen: 1054; --oc-selected-indicator-color: var(--bs-primary); /* Action bar should always be less than dropdown menu */ - --oc-action-bar-zindex: 980; - --oc-second-action-bar-zindex: 983; + --oc-action-bar-zindex: 983; + --oc-second-action-bar-zindex: 980; /* Undefined Bootstrap variables */ --bs-dropdown-zindex: 1000; --bs-zindex-fixed: 1030; diff --git a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css index 17b21258947..7272ad3c534 100644 --- a/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css +++ b/src/OrchardCore.Themes/TheAdmin/wwwroot/css/TheAdmin.min.css @@ -1 +1 @@ -@charset "UTF-8";:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.w-xs-25{width:25%!important}.w-xs-50{width:50%!important}.w-xs-75{width:75%!important}@media (min-width:576px){.w-sm-25{width:25%!important}}@media (min-width:576px){.w-sm-50{width:50%!important}}@media (min-width:576px){.w-sm-75{width:75%!important}}@media (min-width:768px){.w-md-25{width:25%!important}}@media (min-width:768px){.w-md-50{width:50%!important}}@media (min-width:768px){.w-md-75{width:75%!important}}@media (min-width:992px){.w-lg-25{width:25%!important}}@media (min-width:992px){.w-lg-50{width:50%!important}}@media (min-width:992px){.w-lg-75{width:75%!important}}@media (min-width:1200px){.w-xl-25{width:25%!important}}@media (min-width:1200px){.w-xl-50{width:50%!important}}@media (min-width:1200px){.w-xl-75{width:75%!important}}@media (min-width:1400px){.w-xxl-25{width:25%!important}}@media (min-width:1400px){.w-xxl-50{width:50%!important}}@media (min-width:1400px){.w-xxl-75{width:75%!important}}.unset{all:unset}a{text-decoration:none}a:hover{text-decoration:underline}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}body{margin-bottom:var(--oc-footer-height);height:100%}.cursor-move{cursor:move}.cursor-pointer{cursor:pointer}.ta-content{padding:15px;margin-left:var(--oc-start-navigation-width);margin-top:var(--oc-top-nav-height);margin-bottom:var(--oc-footer-height);transition:margin-left .2s ease-in-out}.ta-content h1{line-height:40px;font-size:28px;letter-spacing:-.04em;font-weight:700}@media (max-width:575.98px){.ta-content{margin-left:var(--oc-start-navigation-width-when-compact);transition:margin-left .5s ease-in-out}}.left-sidebar-compact .ta-content{margin-left:var(--oc-start-navigation-width-when-compact)}.preload *{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.action-bar{top:3.3rem;z-index:var(--oc-action-bar-zindex)}.second-action-bar{z-index:var(--oc-second-action-bar-zindex)}.ta-badge{border-radius:var(--bs-border-radius-pill)!important;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:inline-flex;align-items:center;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.button{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select .dropdown-toggle .bs-select-clear-selected{position:relative;display:block;margin-right:5px;text-align:center}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected{padding-right:inherit}.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{position:relative;top:calc((-.6666666667em + 1ex)/ 2);pointer-events:none}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{top:auto}.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected{display:none}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:" "}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:"";display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;transform-style:preserve-3d;transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:"";border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:"";border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group{display:block}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group{display:block}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}.multiselect__content-wrapper ul{padding-left:unset}html[dir=rtl] .bootstrap-select .bs-ok-default:after{border-width:0 .26em .26em 0!important;transform:rotate(45deg)!important}.bootstrap-select .popover-header{padding:.5rem 1rem;margin-bottom:0;border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.bootstrap-select .popover-header .close{border:0;background:0 0;box-shadow:none;border-radius:0;float:right!important;padding-top:0;padding-right:0;background:unset}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}:root{--oc-mde-zindex:var(--oc-editor-fullscreen)!important}.CodeMirror{height:auto;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-body-bg);color:var(--bs-body-color)}.CodeMirror-gutters{background-color:var(--bs-secondary-bg);color:var(--bs-secondary-color)}.CodeMirror-fullscreen{background:var(--bs-body-bg);color:var(--bs-body-color);position:fixed!important;top:var(--oc-top-nav-height)!important;left:0;right:0;bottom:0;height:auto;z-index:var(--bs-modal-zindex);border-right:none!important;border-bottom-right-radius:0!important}.CodeMirror pre{padding-left:7px;line-height:1.25;margin-bottom:0;overflow:unset}.CodeMirror-activeline-background{background:0 0!important}.CodeMirror-focused .CodeMirror-activeline-background{background:rgba(var(--bs-secondary-bg-rgb),.1)!important}.dropdown-menu.scrollable{overflow-y:auto;max-height:var(--oc-height-dropdown);scrollbar-width:thin}.btn-dropdown ::-webkit-scrollbar{width:4px}.btn-dropdown .dropdown-menu{max-height:var(--oc-height-dropdown);overflow:hidden auto;scrollbar-width:thin}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.hint{font-size:.875em;color:var(--bs-text-body-secondary)!important;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.hint.dashed::before,.text-muted.dashed::before{content:"— "}.code,.form-control.code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875em;padding:.1875rem .375rem;border-radius:.375rem}.label-link{float:right;font-size:12px}.form-control:disabled,.form-control[readonly]{background-color:var(--bs-secondary-bg);opacity:1}label .field-validation-error::before{content:"- "}input[type=password]::-ms-clear,input[type=password]::-ms-reveal{display:none}.has-filter .form-control,.has-search .form-control{padding-left:2rem;color:var(--bs-body-color)}.has-filter .form-control-feedback,.has-search .form-control-feedback{position:absolute;left:1.75rem;z-index:10;display:block;width:1rem;height:2rem;line-height:1rem;text-align:center;pointer-events:none;color:var(--bs-secondary)}.has-filter .form-control-feedback{left:4.25rem;top:.25rem}.has-search .form-control-feedback{left:1.75rem}.has-filter:not(.input-group) .form-control-feedback,.has-search:not(.input-group) .form-control-feedback{left:1.75rem;top:1.25rem}.has-filter .btn:not(.show),.has-filter .button:not(.show){border-color:var(--bs-border-color)!important}.ta-col-grouping.col-xs .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.iconpicker-popover.popover{background:0 0!important}.iconpicker-popover.popover .popover-title{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-items{background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-item{color:var(--bs-body-color)!important;box-shadow:0 0 0 1px var(--bs-border-color)}.iconpicker .iconpicker-item:hover{background-color:var(--bs-tertiary-color)!important}.with-checkbox .list-group-item{padding:.75rem .5rem}.list-group-item+.list-group-item{border-top-width:0}.monaco-editor{--vscode-foreground:var(--bs-body-color)!important;--vscode-editor-background:var(--bs-body-bg)!important;--vscode-editor-foreground:var(--bs-body-color)!important;--vscode-editorStickyScroll-background:var(--bs-body-bg)!important;--vscode-editorLink-activeForeground:var(--bs-secondary)!important;--vscode-breadcrumb-background:var(--bs-body-bg)!important;--vscode-editorGutter-background:var(--bs-body-bg)!important;--vscode-editorMarkerNavigation-background:var(--bs-body-bg)!important;--vscode-editorSuggestWidget-foreground:var(--bs-body-color)!important;--vscode-minimapSlider-background:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-minimapSlider-hoverBackground:rgba(var(--bs-body-bg-rbg), 0.35);--vscode-minimapSlider-activeBackground:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-scrollbarSlider-background:var(--oc-scrollbar-color)!important;--vscode-scrollbarSlider-hoverBackground:var(--oc-admin-menu-bg-color)!important;--vscode-scrollbarSlider-activeBackground:var(--oc-admin-menu-bg-color)!important;--vscode-dropdown-background:var(--bs-body-bg)!important;--vscode-dropdown-foreground:var(--bs-body-color)!important;--vscode-dropdown-border:var(--bs-border-color-translucent)}div.editor-widget.find-widget .button.codicon{background-color:transparent;border-color:transparent;display:flex;color:var(--bs-secondary-color);box-shadow:none}div.editor-widget.find-widget .button.codicon:focus{background-color:transparent;border-color:transparent}div.editor-widget.find-widget .button.codicon:active{background-color:transparent;border-color:transparent}.ta-navbar-top{border-bottom:var(--oc-border-content);z-index:var(--oc-top-nav-zindex);height:var(--oc-top-nav-height);box-shadow:0 .46875rem 2.1875rem rgba(4,9,20,.03),0 .9375rem 1.40625rem rgba(4,9,20,.03),0 .25rem .53125rem rgba(4,9,20,.05),0 .125rem .1875rem rgba(4,9,20,.03);padding-top:0;padding-bottom:0}.ta-navbar-top h1{font-size:24px;font-weight:700;margin-bottom:0}.ta-navbar-top .brand-wrapper-title{display:none}.ta-navbar-top .breadcrumb{background-color:transparent;margin-top:1rem}@media (min-width:576px){.ta-navbar-top .brand-wrapper-title{display:block;position:absolute;left:calc(var(--oc-start-navigation-width) + 10px)}}@media (max-width:575.98px){.ta-navbar-top .navbar-collapse li:first-child .nav-link{padding-top:15px}.ta-navbar-top .navbar-collapse li:last-child .nav-link{padding-bottom:0}}.left-sidebar-compact .ta-navbar-top .brand-wrapper-title{left:calc(var(--oc-start-navigation-width-when-compact) + 15px)}.brand-wrapper-title>h1{margin-bottom:0}.ta-navbar-brand{white-space:nowrap;transition:width .2s ease-in-out}.ta-navbar-brand span{font-size:14px;font-weight:700}.ta-navbar-brand img{height:32px}.left-sidebar-compact .ta-navbar-brand span{display:none}.user-top-navbar{padding-top:0;padding-bottom:0}.user-top-navbar .nav-item .nav-link{padding-left:.5rem;padding-right:.5rem}.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{top:-100%;width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;bottom:-17px}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background-color:var(--bs-body-bg);color:var(--bs-body-color);border-radius:var(--bs-border-radius);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-connects{border-radius:var(--bs-border-radius)}.noUi-connect{background-color:var(--bs-body-bg)}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);cursor:default;box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-active{box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background-color:var(--bs-body-bg);left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background-color:var(--bs-body-bg)}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:var(--bs-body-color)}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:var(--bs-body-color);font-size:10px}.noUi-marker{position:absolute;background-color:var(--bs-body-bg)}.noUi-marker-sub{background-color:var(--bs-body-bg)}.noUi-marker-large{background-color:var(--bs-body-bg)}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}/*! rtl:ignore */.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}/*! rtl:ignore */.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #d9d9d9;border-radius:3px;background-color:var(--bs-body-bg);color:var(--bs-body-color);padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}ul.pager{margin-top:1rem;margin-bottom:1rem;justify-content:center}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}body:not(.left-sidebar-compact) #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar{width:4px}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}body:not(.left-sidebar-compact) #ta-left-sidebar figure{margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse{display:none}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse.show{display:block}body:not(.left-sidebar-compact) #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}body:not(.left-sidebar-compact) #ta-left-sidebar a,body:not(.left-sidebar-compact) #ta-left-sidebar figcaption{position:relative;display:block;margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav{position:relative;flex:1 1 auto;height:calc(100% - 51px - 38px)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li .item-label{flex-grow:1;cursor:pointer}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li{line-height:3em;width:var(--oc-start-navigation-width);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.new:after{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin{overflow-y:auto;overflow-x:hidden;height:100%;margin-bottom:40px;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label{padding-left:0!important;display:flex}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon svg{width:35px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px - 45px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:active,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:visited,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul li .item-label{color:var(--oc-admin-menu-item-font-color);text-decoration:none;padding-left:16px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>li>figure>figcaption>.item-label{width:100%}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items .item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:active,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:visited{padding-left:12px}body:not(.left-sidebar-compact) #ta-left-sidebar li .item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li>figure>ul>li.active>.item-label{background:rgba(0,0,0,.1);color:var(--oc-admin-menu-item-font-color-active)!important;font-weight:600;padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label{padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label{background-color:rgba(0,0,0,.05);font-weight:600}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.05);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label{background:rgba(0,0,0,.05);color:var(--oc-admin-menu-item-font-color)!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label>span.icon,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label>span.icon{font-size:16px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li{background:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>.active>a{padding-left:44px!important}body:not(.left-sidebar-compact) #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}body:not(.left-sidebar-compact) #ta-left-sidebar .footer:before{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #filter,body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus{border:none;box-shadow:unset;border-radius:unset}.left-sidebar-compact #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width-when-compact);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out;font-family:"Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar{width:4px}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}.left-sidebar-compact #ta-left-sidebar figure{margin:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}.left-sidebar-compact #ta-left-sidebar .collapse{display:none}.left-sidebar-compact #ta-left-sidebar .collapse.show{display:block}.left-sidebar-compact #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}.left-sidebar-compact #ta-left-sidebar a,.left-sidebar-compact #ta-left-sidebar figcaption{position:relative;display:block;margin:0}.left-sidebar-compact #ta-left-sidebar #left-nav{flex:1 1 auto;height:calc(100% - 51px);overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap;background-color:var(--oc-admin-menu-item-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .item-label{cursor:pointer}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{height:48px;line-height:3em;width:calc(var(--oc-start-navigation-width-when-compact) - 1);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:first-child>span.title:after{content:"";width:75%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto 4px auto}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.btn-nostyle{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:not(.has-items) .item-label>span.icon{font-size:22px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label{padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:16px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon-none{flex-shrink:0;font-size:16px;width:37px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .icon:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption{box-shadow:0 0 10px 0 rgba(0,0,0,.2)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption>a.item-label{z-index:9999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li .item-label:hover:not(:first-child){color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{display:inline-block!important;color:var(--oc-admin-menu-item-font-color);background-color:var(--oc-admin-menu-bg-color);width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);z-index:1}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{overflow:hidden}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li span.title{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible{overflow:visible;width:calc(var(--oc-start-navigation-width-when-compact) + var(--oc-start-navigation-width));transition:none;position:static}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible>figure{position:absolute;z-index:999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.icon,.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.title{display:block}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);max-height:250px;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul li .item-label:hover{background-color:rgba(0,0,0,.05)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label{background-color:var(--oc-admin-menu-item-bg-color);color:var(--oc-admin-menu-item-font-color);padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title{padding:0 20px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{background-color:var(--oc-admin-menu-item-bg-color)!important;color:var(--oc-admin-menu-item-font-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title{flex-grow:1;font-size:14px;font-weight:700;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:260px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title:after{content:"";height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto;position:absolute;width:75%;left:63px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav li a:active,.left-sidebar-compact #ta-left-sidebar #left-nav li a:hover,.left-sidebar-compact #ta-left-sidebar #left-nav li a:visited,.left-sidebar-compact #ta-left-sidebar #left-nav ul li .item-label{text-decoration:none;padding-left:16px}.left-sidebar-compact #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}.left-sidebar-compact #ta-left-sidebar li.has-items .item-label,.left-sidebar-compact #ta-left-sidebar li.has-items a:active,.left-sidebar-compact #ta-left-sidebar li.has-items a:hover,.left-sidebar-compact #ta-left-sidebar li.has-items a:visited{padding-left:12px}.left-sidebar-compact #ta-left-sidebar li>figure>ul>li.active ul>li.active .item-label{background:rgba(0,0,0,.05);color:rgba(var(--oc-admin-menu-item-font-color-active),.9)!important;font-weight:600;padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active ul>li.active .item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label{padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>.item-label{background-color:rgba(0,0,0,.1);font-weight:600}.left-sidebar-compact #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure .item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li>.item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li.active>figure ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li{background:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li>figure>figcaption>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>.active>a{padding-left:44px!important}.left-sidebar-compact #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}.left-sidebar-compact #ta-left-sidebar .footer:before{content:"";width:60%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto}.left-sidebar-compact #ta-left-sidebar #filter,.left-sidebar-compact #ta-left-sidebar #filter:focus{display:none}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure{position:static;z-index:unset}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul:before{content:attr(data-title);padding:0 20px;font-size:14px;font-weight:700;width:100%;display:block}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul>li:first-child::before{background:rgba(0,0,0,.1);margin:0 auto;content:"";height:1px;display:block;position:absolute;width:90%;left:15px}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);height:calc(100vh - 52px);max-height:unset;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color);top:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin>li>.item-label{background-color:#f8f9fa!important}.leftbar-compactor{display:block;width:var(--oc-start-navigation-width-when-compact);height:50px;padding:10px;border:none;background-color:transparent;color:var(--oc-admin-menu-font-color);cursor:pointer;font-size:20px;float:right;transition-duration:.2s;display:block;transform:scale(2,1)}.leftbar-compactor:focus{outline:0}.leftbar-compactor:hover{color:#0078d4;color:var(#0078d4);text-shadow:0 0 4px rgba(0,120,212,.5)}.leftbar-compactor:before{content:"⟪"}.left-sidebar-compact .leftbar-compactor{transition-duration:.2s;transform:scale(-2,1)}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.ui-sortable{min-height:1rem}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.tab-pane{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-bottom:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius);border-top-right-radius:var(--bs-border-radius);margin-bottom:1rem;padding-left:1rem;padding-right:1rem;padding-top:1rem}.nav-tabs{border-bottom:none;margin-top:1px;margin-bottom:-1px}.nav-tabs .nav-link{border:none;color:#fff;background-color:#6c757d;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-tabs .nav-link{transition:none}}.nav-tabs .nav-link:hover{background-color:#5a6268}.nav-tabs .nav-link.active{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);cursor:initial;color:#212529;background-color:#fff}.nav-tabs .nav-link.active:hover{background-color:#fff}.nav-tabs .nav-item{margin-bottom:0}@media (max-width:575.98px){.nav-tabs .nav-item:not(.nav-link){padding-bottom:.25rem}.nav-tabs .nav-link{border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius)}.nav-tabs .nav-link.active{border-bottom:var(--bs-border-width) solid var(--bs-border-color)}}.trumbowyg{font-size:16px}[dir] .trumbowyg-box{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] trumbowyg-editor-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] .trumbowyg-button-pane{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-border-color);padding:0}.trumbowyg-box svg,.trumbowyg-modal svg{color:var(--bs-body-color);fill:var(--bs-body-color)}[dir] .trumbowyg-button-pane button{margin-bottom:0!important}[dir] .trumbowyg-dropdown{background-color:var(--bs-body-bg);color:var(--bs-body-color);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)}[dir] .trumbowyg-dropdown button:focus,[dir] .trumbowyg-dropdown button:hover{background-color:var(--bs-body-color)!important;color:var(--bs-body-bg)!important}[dir] .trumbowyg-button-pane .trumbowyg-open-dropdown::after{border-top-color:var(--bs-body-color)}[dir] .trumbowyg-dropdown button{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen{z-index:var(--oc-editor-fullscreen)}[dir] .trumbowyg-fullscreen .trumbowyg-editor-box,[dir] .trumbowyg-fullscreen.trumbowyg-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg{color:var(--bs-body-color);fill:var(--bs-body-color)}span.field-validation-error{width:100%}.validation-summary-errors{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis);--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.validation-summary-errors ul{margin-bottom:0!important}.field-validation-error{color:var(--bs-text-danger)!important}.field-validation-valid{display:none}.vue-multiselect{color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__content-wrapper,.multiselect__tags{border:var(--bs-border-width) solid var(--bs-border-color)!important}.multiselect__tags{border-radius:var(--bs-border-radius)!important}.multiselect__content-wrapper,.multiselect__input,.multiselect__tags{background-color:var(--bs-body-bg)!important}.multiselect--active{z-index:var(--oc-zindex-dropdown,1000)!important;color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__spinner{background-color:var(--bs-body-bg)!important}.ta-badge{background-color:var(--bs-light);color:var(--bs-secondary-color)}.bootstrap-select .popover-header .close{color:var(--bs-black)}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-gray-900)!important}.bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}.card{--bs-card-bg:var(--bs-white)}.modal{--bs-modal-bg:var(--bs-white)}.bg-theme{background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.text-theme{color:var(--bs-body-color)}.text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.btn-theme{color:var(--bs-black);background-color:#f8f9fa;border-color:#f8f9fa}.btn-theme:hover{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-theme,.btn-theme:focus{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-theme,.btn-check:checked+.btn-theme,.btn-theme.active,.btn-theme:active,.show>.btn-theme.dropdown-toggle{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-theme:focus,.btn-check:checked+.btn-theme:focus,.btn-theme.active:focus,.btn-theme:active:focus,.show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-theme.disabled,.btn-theme:disabled{color:var(--bs-black);background-color:#f8f9fa;border-color:#f8f9fa}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:980;--oc-second-action-bar-zindex:983;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}[data-bs-theme=dark]{--oc-scrollbar-color:#76787A;--oc-admin-menu-bg-color:var(--bs-dark-bg)}[data-bs-theme=dark] .ta-badge{background-color:var(--bs-dark);color:var(--bs-secondary-color)}[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:active,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:focus,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}[data-bs-theme=dark] .bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}[data-bs-theme=dark] .card{--bs-card-bg:var(--bs-body)}[data-bs-theme=dark] .modal{--bs-modal-bg:var(--bs-dark)}[data-bs-theme=dark] .bg-theme{background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .text-theme{color:var(--bs-body-color)}[data-bs-theme=dark] .text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .btn-theme{color:var(--bs-white);background-color:var(--bs-gray-900);border-color:var(--bs-gray-900)}[data-bs-theme=dark] .btn-theme:hover{color:var(--bs-white);background-color:#1c1f23;border-color:#1a1e21}[data-bs-theme=dark] .btn-check:focus+.btn-theme,[data-bs-theme=dark] .btn-theme:focus{color:var(--bs-white);background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-check:active+.btn-theme,[data-bs-theme=dark] .btn-check:checked+.btn-theme,[data-bs-theme=dark] .btn-theme.active,[data-bs-theme=dark] .btn-theme:active,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle{color:var(--bs-white);background-color:#1a1e21;border-color:#191c1f}[data-bs-theme=dark] .btn-check:active+.btn-theme:focus,[data-bs-theme=dark] .btn-check:checked+.btn-theme:focus,[data-bs-theme=dark] .btn-theme.active:focus,[data-bs-theme=dark] .btn-theme:active:focus,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-theme.disabled,[data-bs-theme=dark] .btn-theme:disabled{color:var(--bs-white);background-color:var(--bs-gray-900);border-color:var(--bs-gray-900)} +@charset "UTF-8";:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.w-xs-25{width:25%!important}.w-xs-50{width:50%!important}.w-xs-75{width:75%!important}@media (min-width:576px){.w-sm-25{width:25%!important}}@media (min-width:576px){.w-sm-50{width:50%!important}}@media (min-width:576px){.w-sm-75{width:75%!important}}@media (min-width:768px){.w-md-25{width:25%!important}}@media (min-width:768px){.w-md-50{width:50%!important}}@media (min-width:768px){.w-md-75{width:75%!important}}@media (min-width:992px){.w-lg-25{width:25%!important}}@media (min-width:992px){.w-lg-50{width:50%!important}}@media (min-width:992px){.w-lg-75{width:75%!important}}@media (min-width:1200px){.w-xl-25{width:25%!important}}@media (min-width:1200px){.w-xl-50{width:50%!important}}@media (min-width:1200px){.w-xl-75{width:75%!important}}@media (min-width:1400px){.w-xxl-25{width:25%!important}}@media (min-width:1400px){.w-xxl-50{width:50%!important}}@media (min-width:1400px){.w-xxl-75{width:75%!important}}.unset{all:unset}a{text-decoration:none}a:hover{text-decoration:underline}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}body{margin-bottom:var(--oc-footer-height);height:100%}.cursor-move{cursor:move}.cursor-pointer{cursor:pointer}.ta-content{padding:15px;margin-left:var(--oc-start-navigation-width);margin-top:var(--oc-top-nav-height);margin-bottom:var(--oc-footer-height);transition:margin-left .2s ease-in-out}.ta-content h1{line-height:40px;font-size:28px;letter-spacing:-.04em;font-weight:700}@media (max-width:575.98px){.ta-content{margin-left:var(--oc-start-navigation-width-when-compact);transition:margin-left .5s ease-in-out}}.left-sidebar-compact .ta-content{margin-left:var(--oc-start-navigation-width-when-compact)}.preload *{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.action-bar{top:3.3rem;z-index:var(--oc-action-bar-zindex)}.second-action-bar{z-index:var(--oc-second-action-bar-zindex)}.ta-badge{border-radius:var(--bs-border-radius-pill)!important;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:inline-flex;align-items:center;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.button{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select .dropdown-toggle .bs-select-clear-selected{position:relative;display:block;margin-right:5px;text-align:center}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected{padding-right:inherit}.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{position:relative;top:calc((-.6666666667em + 1ex)/ 2);pointer-events:none}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{top:auto}.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected{display:none}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:" "}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:"";display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;transform-style:preserve-3d;transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:"";border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:"";border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group{display:block}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group{display:block}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}.multiselect__content-wrapper ul{padding-left:unset}html[dir=rtl] .bootstrap-select .bs-ok-default:after{border-width:0 .26em .26em 0!important;transform:rotate(45deg)!important}.bootstrap-select .popover-header{padding:.5rem 1rem;margin-bottom:0;border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.bootstrap-select .popover-header .close{border:0;background:0 0;box-shadow:none;border-radius:0;float:right!important;padding-top:0;padding-right:0;background:unset}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}:root{--oc-mde-zindex:var(--oc-editor-fullscreen)!important}.CodeMirror{height:auto;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-body-bg);color:var(--bs-body-color)}.CodeMirror-gutters{background-color:var(--bs-secondary-bg);color:var(--bs-secondary-color)}.CodeMirror-fullscreen{background:var(--bs-body-bg);color:var(--bs-body-color);position:fixed!important;top:var(--oc-top-nav-height)!important;left:0;right:0;bottom:0;height:auto;z-index:var(--bs-modal-zindex);border-right:none!important;border-bottom-right-radius:0!important}.CodeMirror pre{padding-left:7px;line-height:1.25;margin-bottom:0;overflow:unset}.CodeMirror-activeline-background{background:0 0!important}.CodeMirror-focused .CodeMirror-activeline-background{background:rgba(var(--bs-secondary-bg-rgb),.1)!important}.dropdown-menu.scrollable{overflow-y:auto;max-height:var(--oc-height-dropdown);scrollbar-width:thin}.btn-dropdown ::-webkit-scrollbar{width:4px}.btn-dropdown .dropdown-menu{max-height:var(--oc-height-dropdown);overflow:hidden auto;scrollbar-width:thin}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.hint{font-size:.875em;color:var(--bs-text-body-secondary)!important;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.hint.dashed::before,.text-muted.dashed::before{content:"— "}.code,.form-control.code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875em;padding:.1875rem .375rem;border-radius:.375rem}.label-link{float:right;font-size:12px}.form-control:disabled,.form-control[readonly]{background-color:var(--bs-secondary-bg);opacity:1}label .field-validation-error::before{content:"- "}input[type=password]::-ms-clear,input[type=password]::-ms-reveal{display:none}.has-filter .form-control,.has-search .form-control{padding-left:2rem;color:var(--bs-body-color)}.has-filter .form-control-feedback,.has-search .form-control-feedback{position:absolute;left:1.75rem;z-index:10;display:block;width:1rem;height:2rem;line-height:1rem;text-align:center;pointer-events:none;color:var(--bs-secondary)}.has-filter .form-control-feedback{left:4.25rem;top:.25rem}.has-search .form-control-feedback{left:1.75rem}.has-filter:not(.input-group) .form-control-feedback,.has-search:not(.input-group) .form-control-feedback{left:1.75rem;top:1.25rem}.has-filter .btn:not(.show),.has-filter .button:not(.show){border-color:var(--bs-border-color)!important}.ta-col-grouping.col-xs .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xs-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-sm-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-md-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-lg-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-1 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-2 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-3 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-4 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-5 .col-xxl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xs-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-sm-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-md-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-lg-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xl-6{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-1{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-2{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-3{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-4{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-5{flex:0 0 100%;max-width:100%}.ta-col-grouping.col-xxl-6 .col-xxl-6{flex:0 0 100%;max-width:100%}.iconpicker-popover.popover{background:0 0!important}.iconpicker-popover.popover .popover-title{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-items{background-color:var(--bs-body-bg)!important}.iconpicker .iconpicker-item{color:var(--bs-body-color)!important;box-shadow:0 0 0 1px var(--bs-border-color)}.iconpicker .iconpicker-item:hover{background-color:var(--bs-tertiary-color)!important}.with-checkbox .list-group-item{padding:.75rem .5rem}.list-group-item+.list-group-item{border-top-width:0}.monaco-editor{--vscode-foreground:var(--bs-body-color)!important;--vscode-editor-background:var(--bs-body-bg)!important;--vscode-editor-foreground:var(--bs-body-color)!important;--vscode-editorStickyScroll-background:var(--bs-body-bg)!important;--vscode-editorLink-activeForeground:var(--bs-secondary)!important;--vscode-breadcrumb-background:var(--bs-body-bg)!important;--vscode-editorGutter-background:var(--bs-body-bg)!important;--vscode-editorMarkerNavigation-background:var(--bs-body-bg)!important;--vscode-editorSuggestWidget-foreground:var(--bs-body-color)!important;--vscode-minimapSlider-background:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-minimapSlider-hoverBackground:rgba(var(--bs-body-bg-rbg), 0.35);--vscode-minimapSlider-activeBackground:rgba(var(--bs-body-bg-rbg), 0.2);--vscode-scrollbarSlider-background:var(--oc-scrollbar-color)!important;--vscode-scrollbarSlider-hoverBackground:var(--oc-admin-menu-bg-color)!important;--vscode-scrollbarSlider-activeBackground:var(--oc-admin-menu-bg-color)!important;--vscode-dropdown-background:var(--bs-body-bg)!important;--vscode-dropdown-foreground:var(--bs-body-color)!important;--vscode-dropdown-border:var(--bs-border-color-translucent)}div.editor-widget.find-widget .button.codicon{background-color:transparent;border-color:transparent;display:flex;color:var(--bs-secondary-color);box-shadow:none}div.editor-widget.find-widget .button.codicon:focus{background-color:transparent;border-color:transparent}div.editor-widget.find-widget .button.codicon:active{background-color:transparent;border-color:transparent}.ta-navbar-top{border-bottom:var(--oc-border-content);z-index:var(--oc-top-nav-zindex);height:var(--oc-top-nav-height);box-shadow:0 .46875rem 2.1875rem rgba(4,9,20,.03),0 .9375rem 1.40625rem rgba(4,9,20,.03),0 .25rem .53125rem rgba(4,9,20,.05),0 .125rem .1875rem rgba(4,9,20,.03);padding-top:0;padding-bottom:0}.ta-navbar-top h1{font-size:24px;font-weight:700;margin-bottom:0}.ta-navbar-top .brand-wrapper-title{display:none}.ta-navbar-top .breadcrumb{background-color:transparent;margin-top:1rem}@media (min-width:576px){.ta-navbar-top .brand-wrapper-title{display:block;position:absolute;left:calc(var(--oc-start-navigation-width) + 10px)}}@media (max-width:575.98px){.ta-navbar-top .navbar-collapse li:first-child .nav-link{padding-top:15px}.ta-navbar-top .navbar-collapse li:last-child .nav-link{padding-bottom:0}}.left-sidebar-compact .ta-navbar-top .brand-wrapper-title{left:calc(var(--oc-start-navigation-width-when-compact) + 15px)}.brand-wrapper-title>h1{margin-bottom:0}.ta-navbar-brand{white-space:nowrap;transition:width .2s ease-in-out}.ta-navbar-brand span{font-size:14px;font-weight:700}.ta-navbar-brand img{height:32px}.left-sidebar-compact .ta-navbar-brand span{display:none}.user-top-navbar{padding-top:0;padding-bottom:0}.user-top-navbar .nav-item .nav-link{padding-left:.5rem;padding-right:.5rem}.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{top:-100%;width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;bottom:-17px}/*! rtl:ignore */.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background-color:var(--bs-body-bg);color:var(--bs-body-color);border-radius:var(--bs-border-radius);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-connects{border-radius:var(--bs-border-radius)}.noUi-connect{background-color:var(--bs-body-bg)}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);cursor:default;box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-active{box-shadow:inset 0 1px 1px rgba(var(--bs-border-color),.1),0 3px 6px -5px rgba(var(--bs-border-color),.2)}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background-color:var(--bs-body-bg);left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background-color:var(--bs-body-bg)}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:var(--bs-body-color)}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:var(--bs-body-color);font-size:10px}.noUi-marker{position:absolute;background-color:var(--bs-body-bg)}.noUi-marker-sub{background-color:var(--bs-body-bg)}.noUi-marker-large{background-color:var(--bs-body-bg)}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}/*! rtl:ignore */.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}/*! rtl:ignore */.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #d9d9d9;border-radius:3px;background-color:var(--bs-body-bg);color:var(--bs-body-color);padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}ul.pager{margin-top:1rem;margin-bottom:1rem;justify-content:center}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}body:not(.left-sidebar-compact) #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar{width:4px}body:not(.left-sidebar-compact) #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}body:not(.left-sidebar-compact) #ta-left-sidebar figure{margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse{display:none}body:not(.left-sidebar-compact) #ta-left-sidebar .collapse.show{display:block}body:not(.left-sidebar-compact) #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}body:not(.left-sidebar-compact) #ta-left-sidebar a,body:not(.left-sidebar-compact) #ta-left-sidebar figcaption{position:relative;display:block;margin:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav{position:relative;flex:1 1 auto;height:calc(100% - 51px - 38px)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul li .item-label{flex-grow:1;cursor:pointer}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li{line-height:3em;width:var(--oc-start-navigation-width);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul>li.new:after{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin{overflow-y:auto;overflow-x:hidden;height:100%;margin-bottom:40px;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label{padding-left:0!important;display:flex}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.icon svg{width:35px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px - 45px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>ul.menu-admin>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:active,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav li a:visited,body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav ul li .item-label{color:var(--oc-admin-menu-item-font-color);text-decoration:none;padding-left:16px}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}body:not(.left-sidebar-compact) #ta-left-sidebar #left-nav>li>figure>figcaption>.item-label{width:100%}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items .item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:active,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:hover,body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items a:visited{padding-left:12px}body:not(.left-sidebar-compact) #ta-left-sidebar li .item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li>figure>ul>li.active>.item-label{background:rgba(0,0,0,.1);color:var(--oc-admin-menu-item-font-color-active)!important;font-weight:600;padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>ul>li>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label{padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label{background-color:rgba(0,0,0,.05);font-weight:600}body:not(.left-sidebar-compact) #ta-left-sidebar li.active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.05);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label{background:rgba(0,0,0,.05);color:var(--oc-admin-menu-item-font-color)!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>.item-label>span.icon,body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li>figure>figcaption>.item-label>span.icon{font-size:16px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li.active ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li{background:rgba(0,0,0,.1)}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>li>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}body:not(.left-sidebar-compact) #ta-left-sidebar li ul>li ul>.active>a{padding-left:44px!important}body:not(.left-sidebar-compact) #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}body:not(.left-sidebar-compact) #ta-left-sidebar .footer:before{content:"";width:92%;height:1px;background:rgba(140,130,115,.13);display:block;margin:0 auto}body:not(.left-sidebar-compact) #ta-left-sidebar #filter,body:not(.left-sidebar-compact) #ta-left-sidebar #filter:focus{border:none;box-shadow:unset;border-radius:unset}.left-sidebar-compact #ta-left-sidebar{background-color:var(--oc-admin-menu-bg-color);z-index:var(--oc-start-navigation-zindex);position:fixed;top:var(--oc-top-nav-height);bottom:0;left:0;width:var(--oc-start-navigation-width-when-compact);color:var(--oc-admin-menu-font-color);border-right:var(--oc-border-content);transition:left .2s ease-in-out,width .2s ease-in-out;font-family:"Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar{width:4px}.left-sidebar-compact #ta-left-sidebar ::-webkit-scrollbar-thumb{background-color:var(--oc-scrollbar-color)}.left-sidebar-compact #ta-left-sidebar figure{margin:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=false] .chevron{transition-duration:.2s}.left-sidebar-compact #ta-left-sidebar .collapse{display:none}.left-sidebar-compact #ta-left-sidebar .collapse.show{display:block}.left-sidebar-compact #ta-left-sidebar .chevron{position:absolute;top:38%;left:100%;margin-left:-25px}.left-sidebar-compact #ta-left-sidebar a,.left-sidebar-compact #ta-left-sidebar figcaption{position:relative;display:block;margin:0}.left-sidebar-compact #ta-left-sidebar #left-nav{flex:1 1 auto;height:calc(100% - 51px);overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav ul{margin:0;padding:0;white-space:nowrap;background-color:var(--oc-admin-menu-item-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li{position:relative;margin:0;padding:0;display:list-item;list-style:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .item-label{cursor:pointer}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{height:48px;line-height:3em;width:calc(var(--oc-start-navigation-width-when-compact) - 1);transition:width .2s ease-in-out;background-color:var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:first-child>span.title:after{content:"";width:75%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto 4px auto}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.btn-nostyle{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul>li{line-height:2.5em}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li:not(.has-items) .item-label>span.icon{font-size:22px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label{padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:16px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.icon-none{flex-shrink:0;font-size:16px;width:37px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul .item-label>span.title{flex-grow:1;font-size:14px;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>.collapse-icon{color:rgba(255,0,0,0);display:flex;justify-content:center}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .icon:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption{box-shadow:0 0 10px 0 rgba(0,0,0,.2)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible>figure>figcaption>a.item-label{z-index:9999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li .item-label:hover:not(:first-child){color:var(--oc-admin-menu-font-color-hover);background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{display:inline-block!important;color:var(--oc-admin-menu-item-font-color);background-color:var(--oc-admin-menu-bg-color);width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.has-items.visible{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);z-index:1}.left-sidebar-compact #ta-left-sidebar #left-nav>ul li .active>figure>figcaption>.item-label:hover{background-color:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li{overflow:hidden}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li span.title{display:none}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible{overflow:visible;width:calc(var(--oc-start-navigation-width-when-compact) + var(--oc-start-navigation-width));transition:none;position:static}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible>figure{position:absolute;z-index:999}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.icon,.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.visible span.title{display:block}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);max-height:250px;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>ul li .item-label:hover{background-color:rgba(0,0,0,.05)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label{background-color:var(--oc-admin-menu-item-bg-color);color:var(--oc-admin-menu-item-font-color);padding-left:0!important;display:flex}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title{padding:0 20px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label .title:hover{background-color:var(--oc-admin-menu-item-bg-color)!important;color:var(--oc-admin-menu-item-font-color)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon{padding:0 5px;flex-shrink:0;font-size:22px;width:var(--oc-start-navigation-width-when-compact)}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.icon svg{width:35px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title{flex-grow:1;font-size:14px;font-weight:700;width:calc(100% - 48px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:260px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li>figure>figcaption>.item-label>span.title:after{content:"";height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto;position:absolute;width:75%;left:63px}.left-sidebar-compact #ta-left-sidebar #left-nav>ul>li.active:not(.has-items)::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar #left-nav li a:active,.left-sidebar-compact #ta-left-sidebar #left-nav li a:hover,.left-sidebar-compact #ta-left-sidebar #left-nav li a:visited,.left-sidebar-compact #ta-left-sidebar #left-nav ul li .item-label{text-decoration:none;padding-left:16px}.left-sidebar-compact #ta-left-sidebar #left-nav .btn-nostyle{background:0 0;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;width:45px;outline:0}.left-sidebar-compact #ta-left-sidebar li.has-items .item-label,.left-sidebar-compact #ta-left-sidebar li.has-items a:active,.left-sidebar-compact #ta-left-sidebar li.has-items a:hover,.left-sidebar-compact #ta-left-sidebar li.has-items a:visited{padding-left:12px}.left-sidebar-compact #ta-left-sidebar li>figure>ul>li.active ul>li.active .item-label{background:rgba(0,0,0,.05);color:rgba(var(--oc-admin-menu-item-font-color-active),.9)!important;font-weight:600;padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active ul>li.active .item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li.active>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:var(--oc-selected-indicator-color);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>figure>ul>li .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label{padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li.has-items.active>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li.active>.item-label{background-color:rgba(0,0,0,.1);font-weight:600}.left-sidebar-compact #ta-left-sidebar li .active::before{border-left:3px solid;border-left-color:rgba(0,0,0,.1);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li .active .item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure .item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li>.item-label{color:var(--oc-admin-menu-item-font-color)!important}.left-sidebar-compact #ta-left-sidebar li.active>figure ul>li>figure>figcaption>.item-label::before{border-left:3px solid;border-left-color:rgba(0,0,0,.2);bottom:0;content:"";left:0;position:absolute;top:0}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li{background:rgba(0,0,0,.1)}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>li>figure>figcaption>a{color:var(--oc-admin-menu-item-font-color-active);padding-left:48px!important}.left-sidebar-compact #ta-left-sidebar li>figure ul>li>figure ul>.active>a{padding-left:44px!important}.left-sidebar-compact #ta-left-sidebar .footer{background-color:var(--oc-admin-menu-bg-color)!important;position:relative;z-index:1}.left-sidebar-compact #ta-left-sidebar .footer:before{content:"";width:60%;height:1px;background:rgba(0,0,0,.1);display:block;margin:0 auto}.left-sidebar-compact #ta-left-sidebar #filter,.left-sidebar-compact #ta-left-sidebar #filter:focus{display:none}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure{position:static;z-index:unset}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul:before{content:attr(data-title);padding:0 20px;font-size:14px;font-weight:700;width:100%;display:block}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li.visible>figure>ul>li:first-child::before{background:rgba(0,0,0,.1);margin:0 auto;content:"";height:1px;display:block;position:absolute;width:90%;left:15px}.left-sidebar-compact.scroll #ta-left-sidebar #left-nav>ul>li>figure>ul{position:absolute;left:var(--oc-start-navigation-width-when-compact);width:var(--oc-start-navigation-width);-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.2);box-shadow:0 0 10px 0 rgba(0,0,0,.2);height:calc(100vh - 52px);max-height:unset;z-index:1;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--oc-scrollbar-color) var(--oc-admin-menu-bg-color);top:0}.left-sidebar-compact #ta-left-sidebar a[aria-expanded=true] .chevron{transform:rotate(90deg);transition-duration:.2s}html:not(.fontawesome-i2svg-complete) #left-nav ul.menu-admin>li>.item-label{background-color:#f8f9fa!important}.leftbar-compactor{display:block;width:var(--oc-start-navigation-width-when-compact);height:50px;padding:10px;border:none;background-color:transparent;color:var(--oc-admin-menu-font-color);cursor:pointer;font-size:20px;float:right;transition-duration:.2s;display:block;transform:scale(2,1)}.leftbar-compactor:focus{outline:0}.leftbar-compactor:hover{color:#0078d4;color:var(#0078d4);text-shadow:0 0 4px rgba(0,120,212,.5)}.leftbar-compactor:before{content:"⟪"}.left-sidebar-compact .leftbar-compactor{transition-duration:.2s;transform:scale(-2,1)}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.ui-sortable{min-height:1rem}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}.tab-pane{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-bottom:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius);border-top-right-radius:var(--bs-border-radius);margin-bottom:1rem;padding-left:1rem;padding-right:1rem;padding-top:1rem}.nav-tabs{border-bottom:none;margin-top:1px;margin-bottom:-1px}.nav-tabs .nav-link{border:none;color:#fff;background-color:#6c757d;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-tabs .nav-link{transition:none}}.nav-tabs .nav-link:hover{background-color:#5a6268}.nav-tabs .nav-link.active{border-left:var(--bs-border-width) solid var(--bs-border-color);border-right:var(--bs-border-width) solid var(--bs-border-color);border-top:var(--bs-border-width) solid var(--bs-border-color);cursor:initial;color:#212529;background-color:#fff}.nav-tabs .nav-link.active:hover{background-color:#fff}.nav-tabs .nav-item{margin-bottom:0}@media (max-width:575.98px){.nav-tabs .nav-item:not(.nav-link){padding-bottom:.25rem}.nav-tabs .nav-link{border-bottom-left-radius:var(--bs-border-radius);border-bottom-right-radius:var(--bs-border-radius)}.nav-tabs .nav-link.active{border-bottom:var(--bs-border-width) solid var(--bs-border-color)}}.trumbowyg{font-size:16px}[dir] .trumbowyg-box{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);border-radius:var(--bs-border-radius);background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] trumbowyg-editor-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}[dir] .trumbowyg-button-pane{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);background-color:var(--bs-border-color);padding:0}.trumbowyg-box svg,.trumbowyg-modal svg{color:var(--bs-body-color);fill:var(--bs-body-color)}[dir] .trumbowyg-button-pane button{margin-bottom:0!important}[dir] .trumbowyg-dropdown{background-color:var(--bs-body-bg);color:var(--bs-body-color);border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)}[dir] .trumbowyg-dropdown button:focus,[dir] .trumbowyg-dropdown button:hover{background-color:var(--bs-body-color)!important;color:var(--bs-body-bg)!important}[dir] .trumbowyg-button-pane .trumbowyg-open-dropdown::after{border-top-color:var(--bs-body-color)}[dir] .trumbowyg-dropdown button{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen{z-index:var(--oc-editor-fullscreen)}[dir] .trumbowyg-fullscreen .trumbowyg-editor-box,[dir] .trumbowyg-fullscreen.trumbowyg-box{background-color:var(--bs-body-bg);color:var(--bs-body-color)}.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg{color:var(--bs-body-color);fill:var(--bs-body-color)}span.field-validation-error{width:100%}.validation-summary-errors{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis);--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.validation-summary-errors ul{margin-bottom:0!important}.field-validation-error{color:var(--bs-text-danger)!important}.field-validation-valid{display:none}.vue-multiselect{color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__content-wrapper,.multiselect__tags{border:var(--bs-border-width) solid var(--bs-border-color)!important}.multiselect__tags{border-radius:var(--bs-border-radius)!important}.multiselect__content-wrapper,.multiselect__input,.multiselect__tags{background-color:var(--bs-body-bg)!important}.multiselect--active{z-index:var(--oc-zindex-dropdown,1000)!important;color:var(--bs-body-color)!important;background-color:var(--bs-body-bg)!important}.multiselect__spinner{background-color:var(--bs-body-bg)!important}.ta-badge{background-color:var(--bs-light);color:var(--bs-secondary-color)}.bootstrap-select .popover-header .close{color:var(--bs-black)}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-gray-900)!important}.bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}.card{--bs-card-bg:var(--bs-white)}.modal{--bs-modal-bg:var(--bs-white)}.bg-theme{background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.text-theme{color:var(--bs-body-color)}.text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity,1))}.btn-theme{color:var(--bs-black);background-color:#f8f9fa;border-color:#f8f9fa}.btn-theme:hover{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-theme,.btn-theme:focus{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-theme,.btn-check:checked+.btn-theme,.btn-theme.active,.btn-theme:active,.show>.btn-theme.dropdown-toggle{color:var(--bs-black);background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-theme:focus,.btn-check:checked+.btn-theme:focus,.btn-theme.active:focus,.btn-theme:active:focus,.show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-theme.disabled,.btn-theme:disabled{color:var(--bs-black);background-color:#f8f9fa;border-color:#f8f9fa}:root{--oc-border-content:var(--bs-border-width) solid var(--bs-border-color);--oc-admin-menu-bg-color:var(--bs-secondary-bg-subtle);--oc-scrollbar-color:#CDCDCD;--oc-admin-menu-font-color:var(--bs-secondary-color);--oc-admin-menu-font-color-hover:var(--bs-emphasis-color);--oc-admin-menu-item-bg-color:var(--bs-secondary-bg-subtle);--oc-admin-menu-item-font-color:var(--bs-secondary-color);--oc-admin-menu-item-font-color-active:var(--bs-emphasis-color);--oc-li-hover-bg-color:var(--bs-list-group-action-hover-bg);--oc-zindex-dropdown:1000;--oc-height-dropdown:250px;--oc-top-nav-height:52px;--oc-top-nav-zindex:1034;--oc-footer-height:40px;--oc-start-navigation-width:260px;--oc-start-navigation-width-when-compact:48px;--oc-start-navigation-zindex:1033;--oc-link-padding-left:16px;--oc-editor-fullscreen:1054;--oc-selected-indicator-color:var(--bs-primary);--oc-action-bar-zindex:983;--oc-second-action-bar-zindex:980;--bs-dropdown-zindex:1000;--bs-zindex-fixed:1030;--bs-bg-opacity:1}[data-bs-theme=dark]{--oc-scrollbar-color:#76787A;--oc-admin-menu-bg-color:var(--bs-dark-bg)}[data-bs-theme=dark] .ta-badge{background-color:var(--bs-dark);color:var(--bs-secondary-color)}[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:active,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:focus,[data-bs-theme=dark] .bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:var(--bs-white)!important}[data-bs-theme=dark] .bootstrap-select .popover-header{background-color:var(--bs-secondary-bg)}[data-bs-theme=dark] .card{--bs-card-bg:var(--bs-body)}[data-bs-theme=dark] .modal{--bs-modal-bg:var(--bs-dark)}[data-bs-theme=dark] .bg-theme{background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .text-theme{color:var(--bs-body-color)}[data-bs-theme=dark] .text-bg-theme{color:var(--bs-body-color);background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity,1))}[data-bs-theme=dark] .btn-theme{color:var(--bs-white);background-color:var(--bs-gray-900);border-color:var(--bs-gray-900)}[data-bs-theme=dark] .btn-theme:hover{color:var(--bs-white);background-color:#1c1f23;border-color:#1a1e21}[data-bs-theme=dark] .btn-check:focus+.btn-theme,[data-bs-theme=dark] .btn-theme:focus{color:var(--bs-white);background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-check:active+.btn-theme,[data-bs-theme=dark] .btn-check:checked+.btn-theme,[data-bs-theme=dark] .btn-theme.active,[data-bs-theme=dark] .btn-theme:active,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle{color:var(--bs-white);background-color:#1a1e21;border-color:#191c1f}[data-bs-theme=dark] .btn-check:active+.btn-theme:focus,[data-bs-theme=dark] .btn-check:checked+.btn-theme:focus,[data-bs-theme=dark] .btn-theme.active:focus,[data-bs-theme=dark] .btn-theme:active:focus,[data-bs-theme=dark] .show>.btn-theme.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}[data-bs-theme=dark] .btn-theme.disabled,[data-bs-theme=dark] .btn-theme:disabled{color:var(--bs-white);background-color:var(--bs-gray-900);border-color:var(--bs-gray-900)} From 9ef7195b96225848255ec3d89b4a925ff8c59b9b Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Wed, 27 Sep 2023 10:44:49 -0700 Subject: [PATCH 3/3] scrollable notification --- .../Views/UserNotificationCollection.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationCollection.cshtml b/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationCollection.cshtml index 7d77fe0a356..e55d939fc2a 100644 --- a/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationCollection.cshtml +++ b/src/OrchardCore.Modules/OrchardCore.Notifications/Views/UserNotificationCollection.cshtml @@ -23,7 +23,7 @@ } -