diff --git a/includes/content-bootstrapper/.package.json.template b/includes/content-bootstrapper/.package.json.template new file mode 100644 index 00000000..12fd3f8e --- /dev/null +++ b/includes/content-bootstrapper/.package.json.template @@ -0,0 +1,11 @@ +{ + "name": "@pewresearch/prc-platform-XX", + "description": "XX functionality for PRC Platform", + "license": "GPL-2.0-or-later", + "devDependencies": { + "@wordpress/scripts": "^26.1.0" + }, + "scripts": { + "build": "wp-scripts build src/index.js" + } +} diff --git a/includes/content-bootstrapper/class-content-bootstrapper.php b/includes/content-bootstrapper/class-content-bootstrapper.php new file mode 100644 index 00000000..792d2c38 --- /dev/null +++ b/includes/content-bootstrapper/class-content-bootstrapper.php @@ -0,0 +1,117 @@ +version = $version; + $this->init($loader); + } + + public function init( $loader = null ) { + if ( !PRC_PLATFORM_TESTING_MODE ) { + return; + } + if ( null !== $loader ) { + // $loader->add_action('', $this, 'my_func'); + // $loader->add_filter('', $this, 'my_func'); + } + } + + // Get the id of the first post of a given post type. + // if the ID is 1, then we know that the post type is empty so update_option( 'prc_platform_content_bootstrapped', true ); and return true, otherwise return false. check for the option first, if it's true, then return true. + public function detect_lack_of_content() { + $option = get_option( 'prc_platform_content_bootstrapped' ); + if ( true === $option ) { + return true; + } + $posts = get_posts( array( + 'post_type' => 'post', + 'posts_per_page' => 1, + ) ); + if ( empty( $posts ) ) { + return true; + } + if ( 1 === $posts[0]->ID ) { + return true; + } + return false; + } + + public function boostrap_content() { + + } + + public function create_sample_topics() { + + } + + public function create_sample_report() { + + } + + public function create_sample_fact_sheet() { + + } + + public function create_sample_short_read() { + + } + + public function create_sample_interactive() { + + } + + public function create_sample_quiz() { + + } + + public function create_sample_chart() { + + } + + public function create_sample_page() { + + } + + public function create_sample_staff() { + + } + + public function create_sample_homepage() { + + } + + public function create_sample_dataset() { + + } + + public function create_sample_block_module() { + + } + + public function configure_sample_options() { + + } +} diff --git a/includes/embeds/class-embeds.php b/includes/embeds/class-embeds.php index 79451bb0..fbad3ed8 100644 --- a/includes/embeds/class-embeds.php +++ b/includes/embeds/class-embeds.php @@ -295,14 +295,24 @@ public function disable_admin_bar_on_iframes( $show_admin_bar ) { * @return string */ public function get_template_post_content() { + $is_interactive_containment = get_query_var('interactivesContainment', false); $post_content = ''; while ( have_posts() ) { the_post(); $post_content = get_the_content(); - if ( $this->test_for_embeddable_blocks( $post_content ) ) { - $post_content = $this->render_embeddable_block_by_id( get_query_var('iframe'), $post_content ); + if ( $is_interactive_containment ) { + $blocks = parse_blocks( $post_content ); + foreach ( $blocks as $block ) { + if ( array_key_exists('blockName', $block) && in_array( $block['blockName'], array('prc-platform/interactive-loader') ) ) { + $post_content = apply_filters( 'the_content', render_block( $block ) ); + } + } } else { - $post_content = apply_filters( 'the_content', $post_content ); + if ( $this->test_for_embeddable_blocks( $post_content ) ) { + $post_content = $this->render_embeddable_block_by_id( get_query_var('iframe'), $post_content ); + } else { + $post_content = apply_filters( 'the_content', $post_content ); + } } } wp_reset_postdata(); diff --git a/includes/flash-briefings/class-flash-briefings.php b/includes/flash-briefings/class-flash-briefings.php index 2cd81103..39fc167f 100644 --- a/includes/flash-briefings/class-flash-briefings.php +++ b/includes/flash-briefings/class-flash-briefings.php @@ -70,8 +70,11 @@ public function register_assets() { public function enqueue_assets() { $registered = $this->register_assets(); if ( is_admin() && ! is_wp_error( $registered ) ) { - wp_enqueue_script( self::$handle ); - wp_enqueue_style( self::$handle ); + $screen = get_current_screen(); + if ( in_array( $screen->post_type, array(self::$post_type) ) ) { + wp_enqueue_script( self::$handle ); + wp_enqueue_style( self::$handle ); + } } } diff --git a/includes/interactives/blocks/loader-block/loader-block.php b/includes/interactives/blocks/loader-block/loader-block.php index de140868..01aeb0e1 100644 --- a/includes/interactives/blocks/loader-block/loader-block.php +++ b/includes/interactives/blocks/loader-block/loader-block.php @@ -39,11 +39,12 @@ public function render_interactive_loader_callback($attributes, $content, $block )); $is_legacy_wpackio = array_key_exists('legacyWpackIo', $attributes) && $attributes['legacyWpackIo']; + $is_legacy_s3 = array_key_exists('legacyAssetsS3', $attributes) && $attributes['legacyAssetsS3']; $enqueued_handles = array(); - if ( $is_legacy_wpackio && get_query_var('iframe') ) { + if ( $is_legacy_wpackio ) { $enqueued_handles = $this->load_legacy_wpackIO($attributes['legacyWpackIo']); - } else if ( array_key_exists('legacyAssetsS3', $attributes) && $attributes['legacyAssetsS3'] ) { + } else if ( $is_legacy_s3 ) { // Do nothing for now... // @TODO: Build out the legacy assets S3 loader. } else { diff --git a/includes/interactives/class-interactives.php b/includes/interactives/class-interactives.php index 65c4316a..cae939da 100644 --- a/includes/interactives/class-interactives.php +++ b/includes/interactives/class-interactives.php @@ -252,7 +252,7 @@ public function get_assets_restfully( \WP_REST_Request $request ) { public function get_assets( ) { $interactives = array(); - $interactives_dir = PRC_INTERACTIVES_DIR; + $interactives_dir = plugin_dir_path( __FILE__ ) . '../../interactives'; // using glob to get all directories (except /blocks) in the interactives directory $research_teams = glob( $interactives_dir . '/*', GLOB_ONLYDIR ); foreach ( $research_teams as $research_team ) { diff --git a/includes/interactives/legacy-containment-system/assets/style.css b/includes/interactives/legacy-containment-system/assets/style.css deleted file mode 100644 index e637fa5e..00000000 --- a/includes/interactives/legacy-containment-system/assets/style.css +++ /dev/null @@ -1,334 +0,0 @@ -/*! - * - * PRC Parent Theme - * - * @author Seth Rubenstein - * @version 0.1.0 - * @link https://github.com/wpcomvip/pewresearch-org - * @license GPL - * - * Copyright (c) 2023 Seth Rubenstein - * - * This software is released under the UNLICENSED License - * https://opensource.org/licenses/UNLICENSED - * - * Compiled with the help of https://wpack.io - * A zero setup Webpack Bundler Script for WordPress - */ - blockquote{color:#939393;display:block!important;margin:0 0 2em;padding:1.4285714286em}blockquote.wp-block-quote.is-style-default{border-left:1px solid #ccc}@media(max-width:767px){blockquote.wp-block-quote.is-style-default{border-bottom:1px solid #ccc;border-left:none;border-top:1px solid #ccc}}blockquote.wp-block-quote.is-large,blockquote.wp-block-quote.is-style-large{margin:0 0 2em!important}blockquote>p{font-family:var(--wp--preset--font-family--serif);font-size:1.5rem!important;line-height:2.2142857143rem!important}blockquote.fitted{padding:0!important}blockquote .wp-block-quote__citation,blockquote cite{align-items:center;color:#8c8c8c;display:flex;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem!important;font-style:normal;justify-content:flex-end;letter-spacing:.1em;padding-top:.7em;text-transform:uppercase}blockquote .wp-block-quote__citation:before,blockquote cite:before{border-bottom:1px solid #8c8c8c;content:"";display:inline-block;height:1px;margin-right:.3em;width:10px}.flex,.ui.flex{display:flex;flex-wrap:wrap}.flex.align-center,.ui.flex.align-center{align-items:center}.flex.align-bottom,.ui.flex.align-bottom{align-items:flex-end}.flex>div,.ui.flex>div{display:flex;width:50%}.flex>.justify-left,.ui.flex>.justify-left{justify-content:flex-start}.flex>.justify-right,.ui.flex>.justify-right{justify-content:flex-end}@media only screen and (min-width:991px){.flex-align-bottom{align-items:flex-end;display:flex!important}.flex-justify-right{display:flex!important;justify-content:flex-end}.flex-justify-left{display:flex!important;justify-content:flex-start}}.flex-direction-column{flex-direction:column}h1,h2,h3,h4,h5{font-family:var(--wp--preset--font-family--sans-serif);font-weight:700;margin:1.8571428571rem 0 1rem;padding:0}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child{margin-bottom:0}h1 a,h2 a,h3 a,h4 a,h5 a{color:inherit;text-decoration:none!important}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover{color:#5f94cf;text-decoration:underline!important}h1 a:hover i,h2 a:hover i,h3 a:hover i,h4 a:hover i,h5 a:hover i{text-decoration:none!important}h1{font-size:37px;line-height:37px;min-height:1rem}h2{font-size:21px;line-height:23px}h3{font-size:18px;line-height:20px}h4{font-size:14px;line-height:16px}h5{font-size:12px;line-height:14px}.post-content h1{font-family:var(--wp--preset--font-family--serif);font-size:var(--wp--preset--font-size--h-1)}.post-content h2{font-size:var(--wp--preset--font-size--h-2);line-height:32px}.post-content h3{font-family:var(--wp--preset--font-family--serif);font-size:var(--wp--preset--font-size--h-3);line-height:26px}.post-content h4{font-size:var(--wp--preset--font-size--h-4);line-height:20px}.post-content h5{font-family:var(--wp--preset--font-family--default);font-size:var(--wp--preset--font-size--h-5);font-style:italic;font-weight:400;line-height:25.6px}.wp-embed-responsive .wp-has-aspect-ratio iframe{height:100%!important;width:100%!important}.wp-block-list li img{float:right}.wp-block-list li:has(img):after{clear:both;content:"";display:block}p{line-height:160%;margin:0 0 1.25em}p:first-child{margin-top:0}p:last-child{margin-bottom:0}.post-content,div.wp-block-group{counter-reset:section}.wp-block[data-type="core/paragraph"].is-style-has-big-number:before,p.is-style-has-big-number:before{color:#ec9f2e;content:counter(section);counter-increment:section;float:left;font-family:var(--wp--preset--font-family--sans-serif);font-size:3.2142857143em;font-weight:700;margin-right:1rem;padding-bottom:1rem;padding-top:.6rem}.wp-block[data-type="core/paragraph"].is-style-has-big-number>strong,p.is-style-has-big-number>strong{font-family:var(--wp--preset--font-family--sans-serif);font-size:1.2142857143em}/*! - * # Semantic UI - Reset - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */*,:after,:before{box-sizing:inherit}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;box-sizing:border-box;line-height:1.15}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{-webkit-text-decoration-skip:objects;background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}input[type=email],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;-moz-appearance:none}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}article.post{max-width:100%}.clearfix:after{clear:both;content:"";display:table}/*! - * # Core Typography - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.post-header>h1,.post-header>h2{margin:0;padding-bottom:1rem;padding-top:.5rem}.post-header .bylines{font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:600;margin-bottom:1rem;text-transform:uppercase}.page-header{padding-top:14px}.sans-serif,.sans-serif>:not(.icon){font-family:var(--wp--preset--font-family--sans-serif)!important}.serif{font-family:var(--wp--preset--font-family--serif)!important}.post-content>ul:not(.ui) li{list-style-type:square}.post-content>ol:not(.ui),.post-content>ul:not(.dtr-details):not(.ui):not(.wp-block-social-links){line-height:160%;margin:1.25em;padding-left:2rem}.post-content>ol:not(.ui) li,.post-content>ul:not(.dtr-details):not(.ui):not(.wp-block-social-links) li{line-height:160%;margin-bottom:1rem}.wp-block-heading a{color:inherit!important}.post-content a:not(.item):not(.button):not(.wp-block-button__link),.post-content a:not(.item):not(.button):not(.wp-block-button__link):hover{text-decoration:underline}.post-content a:not(.item):not(.button):not(.wp-block-button__link):visited{color:#5d4488}a:not(.wp-block-button__link){color:#346ead;text-decoration:none}a:not(.wp-block-button__link):hover{color:#5f94cf;text-decoration:underline}.blue-link>a,a.blue-link,span.blue-link{color:#346ead!important;cursor:pointer;text-decoration:none!important}.blue-link>a:hover,a.blue-link:hover,span.blue-link:hover{color:#5f94cf!important;text-decoration:underline!important}.tagline{color:#818181;font-size:.8571428571;letter-spacing:.2em;margin-bottom:1.5rem;text-align:center}.more a,.read-more,.read-more a,.tagline,a.more,a.read-more{font-family:var(--wp--preset--font-family--sans-serif);text-transform:uppercase}.more a,.read-more,.read-more a,a.more,a.read-more{color:#346ead!important;cursor:pointer;font-size:.857rem!important;font-weight:600;letter-spacing:.05rem;text-decoration:none}.more a:hover,.read-more a:hover,.read-more:hover,a.more:hover,a.read-more:hover{text-decoration:underline}.is-style-link-to-read-more{color:#346ead!important;cursor:pointer;font-family:var(--wp--preset--font-family--sans-serif);font-size:.857rem!important;font-weight:600;letter-spacing:.05rem;text-decoration:none;text-transform:uppercase}.is-style-link-to-read-more:hover{text-decoration:underline}.is-style-link-to-archive{color:#444!important;display:block;font-family:var(--wp--preset--font-family--sans-serif);font-size:13px;font-style:normal;font-weight:400;letter-spacing:.02em;line-height:33px;padding-top:2em;text-align:right;text-decoration:underline;text-transform:uppercase}.is-style-link-to-archive .components-flex{align-items:flex-end;flex-direction:column}.is-style-link-to-archive div[role=textbox]:after,.is-style-link-to-archive:not(.wp-block):after{content:">";display:inline-block;padding-left:6px;text-decoration:none!important}strong.medium{font-weight:500}.wf-franklingothicurw-n7-active .post-content p b,.wf-franklingothicurw-n7-active .post-content p strong{font-family:var(--wp--preset--font-family--sans-serif);font-size:110%}body.page .page-description{font-family:var(--wp--preset--font-family--sans-serif)}body.archive .archive-description{font-size:14px;padding-top:1rem}body.tax-collection .archive-description{margin-bottom:4rem}@media only screen and (min-width:767px){#secondary.column>.prc-block-area,.column>.wp-block-group.is-style-card-alt{margin-left:-1.5rem}}body:not(.wp-site-blocks) .wp-block-group.is-style-card-alt .is-style-sub-header{margin-left:-1rem!important;margin-right:-1rem!important;max-width:calc(100% + 2rem)!important}body:not(.wp-site-blocks) body.admin-bar .prc-group-block--sticky.sticky{top:32px}body:not(.wp-site-blocks) .prc-group-block--sticky.sticky{position:-webkit-sticky;position:sticky;top:0;z-index:10}body:not(.wp-site-blocks) .prc-group-block--sticky.sticky .wp-block-group.alignleft,body:not(.wp-site-blocks) .prc-group-block--sticky.sticky .wp-block-group.alignright{background:hsla(0,0%,100%,.5)}body:not(.wp-site-blocks) .wp-block-group>:last-child{margin-bottom:0}body:not(.wp-site-blocks) .wp-block-group .block-editor-block-list__layout>.wp-block{max-width:1152px!important}body:not(.wp-site-blocks) .wp-block-group.has-background{margin-bottom:2em;padding:1em}body:not(.wp-site-blocks) .wp-block-group.relaxed .ui.button{display:block;margin-left:auto;margin-right:auto}body:not(.wp-site-blocks) .wp-block-group div[data-type="prc-block/columns"]{max-width:100%!important}body:not(.wp-site-blocks) .wp-block-group.aligncenter.is-style-200-wide,body:not(.wp-site-blocks) .wp-block-group.aligncenter.is-style-300-wide,body:not(.wp-site-blocks) .wp-block-group.aligncenter.is-style-420-wide,body:not(.wp-site-blocks) .wp-block-group.aligncenter.is-style-640-wide{margin-left:auto!important;margin-right:auto!important}body:not(.wp-site-blocks) .may-2023-css-hack{gap:5px!important}body:not(.wp-site-blocks) .may-2023-css-hack figure.wp-block-image{margin:0!important;width:79px!important}/*! - * # Semantic UI - Container - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.container,.wp-block-group__inner-container{display:block;max-width:100%!important}.ui.container.large,.wp-block-group__inner-container.large{max-width:1168px!important}.ui.container.fluid,.wp-block-group__inner-container.fluid{width:100%}@media only screen and (max-width:767px){.ui.container,.wp-block-group__inner-container{margin-left:1em!important;margin-right:1em!important;width:auto!important}}@media only screen and (min-width:768px)and (max-width:991px){.ui.container,.wp-block-group__inner-container{margin-left:auto!important;margin-right:auto!important;width:723px}}@media only screen and (min-width:992px){.ui.container,.wp-block-group__inner-container{margin-left:auto!important;margin-right:auto!important;width:1168px}.ui.container{padding-left:1em;padding-right:1em}}body.page-template-default div.prc-block-area[data-block-area-location=bottom-of-post],body[class*=-template-template-new] div.prc-block-area[data-block-area-location=bottom-of-post],body[class*=-template-template-wide-no-divider] div.prc-block-area[data-block-area-location=bottom-of-post],body[class*=-template-template-wide] div.prc-block-area[data-block-area-location=bottom-of-post]{margin-left:auto;margin-right:auto;max-width:640px}.ui.text.container{margin-left:auto!important;margin-right:auto!important;max-width:640px!important;padding-left:0;padding-right:0;width:100%!important}@media only screen and (min-width:992px){.ui.text.container:not(.centered){margin-left:0!important;margin-right:0!important}}.ui[class*="left aligned"].container{text-align:left}.ui[class*="center aligned"].container{text-align:center}.ui[class*="right aligned"].container{text-align:right}.ui.justified.container{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;text-align:justify}/*! - * # Semantic UI - Divider - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.divider,.wp-block-separator{-webkit-tap-highlight-color:rgba(0,0,0,0);color:rgba(0,0,0,.85);font-size:1rem;font-weight:700;height:0;letter-spacing:.05em;line-height:1;margin:1rem 0;text-transform:uppercase;-webkit-user-select:none;-ms-user-select:none;user-select:none}.ui.divider.block-editor-block-list__block,.wp-block-separator.block-editor-block-list__block{margin-left:auto;margin-right:auto}.ui.divider:not(.vertical):not(.horizontal):not(.is-style-wide):not(.is-style-dots):not(.dotted),.wp-block-separator:not(.vertical):not(.horizontal):not(.is-style-wide):not(.is-style-dots):not(.dotted){border-bottom:1px solid hsla(0,0%,100%,.1);border-top:1px solid rgba(34,36,38,.15);max-width:100%}.ui.divider.horizontal,.wp-block-separator.horizontal{display:table;height:auto;line-height:1;margin:"";text-align:center;white-space:nowrap}.ui.divider.horizontal:after,.ui.divider.horizontal:before,.wp-block-separator.horizontal:after,.wp-block-separator.horizontal:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC");background-repeat:no-repeat;content:"";display:table-cell;position:relative;top:50%;width:50%}.ui.divider.horizontal:before,.wp-block-separator.horizontal:before{background-position:right 1em top 50%}.ui.divider.horizontal:after,.wp-block-separator.horizontal:after{background-position:left 1em top 50%}.ui.divider.vertical,.wp-block-separator.vertical{height:50%;left:50%;line-height:0em;margin:0;padding:0;position:absolute;text-align:center;top:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:auto;z-index:2}.ui.divider.vertical:after,.ui.divider.vertical:before,.wp-block-separator.vertical:after,.wp-block-separator.vertical:before{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid hsla(0,0%,100%,.1);content:"";left:50%;position:absolute;width:0;z-index:3}.ui.divider.vertical:before,.wp-block-separator.vertical:before{top:-100%}.ui.divider.vertical:after,.wp-block-separator.vertical:after{bottom:0;top:auto}.ui.divider>.icon,.wp-block-separator>.icon{font-size:1rem;height:1em;margin:0;vertical-align:middle}.ui.divider.hidden,.wp-block-separator.hidden{border-color:transparent!important}.ui.divider.hidden:after,.ui.divider.hidden:before,.wp-block-separator.hidden:after,.wp-block-separator.hidden:before{display:none}.ui.divider.invisible:not(.wp-block-separator),.wp-block-separator.invisible:not(.wp-block-separator){opacity:0}.ui.divider.dotted,.wp-block-separator.dotted{border-bottom:none;border-top:1px dotted #aaa}.ui.divider.dark:not(.vertical),.wp-block-separator.dark:not(.vertical){border-top:1px solid rgba(34,36,38,.5)!important}.ui.divider.inverted,.wp-block-separator.inverted{color:#fff}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before,.wp-block-separator.inverted,.wp-block-separator.inverted:after,.wp-block-separator.inverted:before{border-color:rgba(34,36,38,.15) hsla(0,0%,100%,.15) hsla(0,0%,100%,.15) rgba(34,36,38,.15)!important}.ui.divider.attached,.ui.divider.fitted,.wp-block-separator.attached,.wp-block-separator.fitted{border-bottom:none!important;margin:0}.ui.divider.attached.top,.ui.divider.fitted.top,.wp-block-separator.attached.top,.wp-block-separator.fitted.top{margin-top:1em}.ui.divider.attached.bottom,.ui.divider.fitted.bottom,.wp-block-separator.attached.bottom,.wp-block-separator.fitted.bottom{margin-bottom:1em}.ui.divider.clearing,.wp-block-separator.clearing{clear:both}.ui.divider.section,.wp-block-separator.section{margin-bottom:2rem;margin-top:2rem}.ui.grid>.column+.divider,.ui.grid>.row>.column+.divider{left:auto}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC")}.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{display:table;height:auto;left:0;line-height:1;margin:"";overflow:hidden;position:static;text-align:center;top:0;-webkit-transform:none;transform:none;white-space:nowrap}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{background-repeat:no-repeat;border-left:none;border-right:none;content:"";display:table-cell;left:0;position:static;position:relative;top:50%;width:50%}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{background-position:right 1em top 50%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{background-position:left 1em top 50%}}.editor-styles-wrapper .ui.grid .ui.grid .ui.grid>.row>.column:only-child,.ui.grid>.column:only-child,.ui[class*="one column"].grid>.column:not(.row),.ui[class*="one column"].grid>.row>.column{width:100%}.ui[class*="two column"].grid>.column:not(.row),.ui[class*="two column"].grid>.row>.column{width:50%}.ui[class*="three column"].grid>.column:not(.row),.ui[class*="three column"].grid>.row>.column{width:33.3333333333%}.ui[class*="four column"].grid>.column:not(.row),.ui[class*="four column"].grid>.row>.column{width:25%}.ui[class*="five column"].grid>.column:not(.row),.ui[class*="five column"].grid>.row>.column{width:20%}.ui[class*="six column"].grid>.column:not(.row),.ui[class*="six column"].grid>.row>.column{width:16.6666666667%}.ui[class*="seven column"].grid>.column:not(.row),.ui[class*="seven column"].grid>.row>.column{width:14.2857142857%}.ui[class*="eight column"].grid>.column:not(.row),.ui[class*="eight column"].grid>.row>.column{width:12.5%}.ui[class*="nine column"].grid>.column:not(.row),.ui[class*="nine column"].grid>.row>.column{width:11.1111111111%}.ui[class*="ten column"].grid>.column:not(.row),.ui[class*="ten column"].grid>.row>.column{width:10%}.ui[class*="eleven column"].grid>.column:not(.row),.ui[class*="eleven column"].grid>.row>.column{width:9.0909090909%}.ui[class*="twelve column"].grid>.column:not(.row),.ui[class*="twelve column"].grid>.row>.column{width:8.3333333333%}.ui[class*="thirteen column"].grid>.column:not(.row),.ui[class*="thirteen column"].grid>.row>.column{width:7.6923076923%}.ui[class*="fourteen column"].grid>.column:not(.row),.ui[class*="fourteen column"].grid>.row>.column{width:7.1428571429%}.ui[class*="fifteen column"].grid>.column:not(.row),.ui[class*="fifteen column"].grid>.row>.column{width:6.6666666667%}.ui[class*="sixteen column"].grid>.column:not(.row),.ui[class*="sixteen column"].grid>.row>.column{width:6.25%}.ui.grid>[class*="one column"].row>.column{width:100%!important}.ui.grid>[class*="two column"].row>.column{width:50%!important}.ui.grid>[class*="three column"].row>.column{width:33.3333333333%!important}.ui.grid>[class*="four column"].row>.column{width:25%!important}.ui.grid>[class*="five column"].row>.column{width:20%!important}.ui.grid>[class*="six column"].row>.column{width:16.6666666667%!important}.ui.grid>[class*="seven column"].row>.column{width:14.2857142857%!important}.ui.grid>[class*="eight column"].row>.column{width:12.5%!important}.ui.grid>[class*="nine column"].row>.column{width:11.1111111111%!important}.ui.grid>[class*="ten column"].row>.column{width:10%!important}.ui.grid>[class*="eleven column"].row>.column{width:9.0909090909%!important}.ui.grid>[class*="twelve column"].row>.column{width:8.3333333333%!important}.ui.grid>[class*="thirteen column"].row>.column{width:7.6923076923%!important}.ui.grid>[class*="fourteen column"].row>.column{width:7.1428571429%!important}.ui.grid>[class*="fifteen column"].row>.column{width:6.6666666667%!important}.ui.column.grid>[class*="one wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="one wide"].column,.ui.grid>.column.row>[class*="one wide"].column,.ui.grid>.row>[class*="one wide"].column,.ui.grid>[class*="one wide"].column,.ui.grid>[class*="sixteen column"].row>.column{width:6.25%!important}.ui.column.grid>[class*="two wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="two wide"].column,.ui.grid>.column.row>[class*="two wide"].column,.ui.grid>.row>[class*="two wide"].co,.ui.grid>[class*="two wide"].column{width:12.5%!important}.ui.column.grid>[class*="three wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="three wide"].column,.ui.grid>.column.row>[class*="three wide"].column,.ui.grid>.row>[class*="three wide"].column,.ui.grid>[class*="three wide"].column{width:18.75%!important}.ui.column.grid>[class*="four wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="four wide"].column,.ui.grid>.column.row>[class*="four wide"].column,.ui.grid>.row>[class*="four wide"].column,.ui.grid>[class*="four wide"].column{width:25%!important}.ui.column.grid>[class*="five wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="five wide"].column,.ui.grid>.column.row>[class*="five wide"].column,.ui.grid>.row>[class*="five wide"].column,.ui.grid>[class*="five wide"].column{width:31.25%!important}.ui.column.grid>[class*="six wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="six wide"].column,.ui.grid>.column.row>[class*="six wide"].column,.ui.grid>.row>[class*="six wide"].column,.ui.grid>[class*="six wide"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="seven wide"].column,.ui.grid>.column.row>[class*="seven wide"].column,.ui.grid>.row>[class*="seven wide"].column,.ui.grid>[class*="seven wide"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="eight wide"].column,.ui.grid>.column.row>[class*="eight wide"].column,.ui.grid>.row>[class*="eight wide"].column,.ui.grid>[class*="eight wide"].column{width:50%!important}.ui.column.grid>[class*="nine wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="nine wide"].column,.ui.grid>.column.row>[class*="nine wide"].column,.ui.grid>.row>[class*="nine wide"].column,.ui.grid>[class*="nine wide"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="ten wide"].column,.ui.grid>.column.row>[class*="ten wide"].column,.ui.grid>.row>[class*="ten wide"].column,.ui.grid>[class*="ten wide"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="eleven wide"].column,.ui.grid>.column.row>[class*="eleven wide"].column,.ui.grid>.row>[class*="eleven wide"].column,.ui.grid>[class*="eleven wide"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="twelve wide"].column,.ui.grid>.column.row>[class*="twelve wide"].column,.ui.grid>.row>[class*="twelve wide"].column,.ui.grid>[class*="twelve wide"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="thirteen wide"].column,.ui.grid>.column.row>[class*="thirteen wide"].column,.ui.grid>.row>[class*="thirteen wide"].column,.ui.grid>[class*="thirteen wide"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="fourteen wide"].column,.ui.grid>.column.row>[class*="fourteen wide"].column,.ui.grid>.row>[class*="fourteen wide"].column,.ui.grid>[class*="fourteen wide"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="fifteen wide"].column,.ui.grid>.column.row>[class*="fifteen wide"].column,.ui.grid>.row>[class*="fifteen wide"].column,.ui.grid>[class*="fifteen wide"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="sixteen wide"].column,.ui.grid>.column.row>[class*="sixteen wide"].column,.ui.grid>.row>[class*="sixteen wide"].column,.ui.grid>[class*="sixteen wide"].column{width:100%!important}@media only screen and (min-width:320px)and (max-width:767px){.ui.column.grid>[class*="one wide mobile"].column,.ui.grid>.column.row>[class*="one wide mobile"].column,.ui.grid>.row>[class*="one wide mobile"].column,.ui.grid>[class*="one wide mobile"].column{width:6.25%!important}.ui.column.grid>[class*="two wide mobile"].column,.ui.grid>.column.row>[class*="two wide mobile"].column,.ui.grid>.row>[class*="two wide mobile"].column,.ui.grid>[class*="two wide mobile"].column{width:12.5%!important}.ui.column.grid>[class*="three wide mobile"].column,.ui.grid>.column.row>[class*="three wide mobile"].column,.ui.grid>.row>[class*="three wide mobile"].column,.ui.grid>[class*="three wide mobile"].column{width:18.75%!important}.ui.column.grid>[class*="four wide mobile"].column,.ui.grid>.column.row>[class*="four wide mobile"].column,.ui.grid>.row>[class*="four wide mobile"].column,.ui.grid>[class*="four wide mobile"].column{width:25%!important}.ui.column.grid>[class*="five wide mobile"].column,.ui.grid>.column.row>[class*="five wide mobile"].column,.ui.grid>.row>[class*="five wide mobile"].column,.ui.grid>[class*="five wide mobile"].column{width:31.25%!important}.ui.column.grid>[class*="six wide mobile"].column,.ui.grid>.column.row>[class*="six wide mobile"].column,.ui.grid>.row>[class*="six wide mobile"].column,.ui.grid>[class*="six wide mobile"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide mobile"].column,.ui.grid>.column.row>[class*="seven wide mobile"].column,.ui.grid>.row>[class*="seven wide mobile"].column,.ui.grid>[class*="seven wide mobile"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide mobile"].column,.ui.grid>.column.row>[class*="eight wide mobile"].column,.ui.grid>.row>[class*="eight wide mobile"].column,.ui.grid>[class*="eight wide mobile"].column{width:50%!important}.ui.column.grid>[class*="nine wide mobile"].column,.ui.grid>.column.row>[class*="nine wide mobile"].column,.ui.grid>.row>[class*="nine wide mobile"].column,.ui.grid>[class*="nine wide mobile"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide mobile"].column,.ui.grid>.column.row>[class*="ten wide mobile"].column,.ui.grid>.row>[class*="ten wide mobile"].column,.ui.grid>[class*="ten wide mobile"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide mobile"].column,.ui.grid>.column.row>[class*="eleven wide mobile"].column,.ui.grid>.row>[class*="eleven wide mobile"].column,.ui.grid>[class*="eleven wide mobile"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide mobile"].column,.ui.grid>.column.row>[class*="twelve wide mobile"].column,.ui.grid>.row>[class*="twelve wide mobile"].column,.ui.grid>[class*="twelve wide mobile"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide mobile"].column,.ui.grid>.column.row>[class*="thirteen wide mobile"].column,.ui.grid>.row>[class*="thirteen wide mobile"].column,.ui.grid>[class*="thirteen wide mobile"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide mobile"].column,.ui.grid>.column.row>[class*="fourteen wide mobile"].column,.ui.grid>.row>[class*="fourteen wide mobile"].column,.ui.grid>[class*="fourteen wide mobile"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide mobile"].column,.ui.grid>.column.row>[class*="fifteen wide mobile"].column,.ui.grid>.row>[class*="fifteen wide mobile"].column,.ui.grid>[class*="fifteen wide mobile"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide mobile"].column,.ui.grid>.column.row>[class*="sixteen wide mobile"].column,.ui.grid>.row>[class*="sixteen wide mobile"].column,.ui.grid>[class*="sixteen wide mobile"].column{width:100%!important}}@media only screen and (min-width:768px)and (max-width:991px){.ui.column.grid>[class*="one wide tablet"].column,.ui.grid>.column.row>[class*="one wide tablet"].column,.ui.grid>.row>[class*="one wide tablet"].column,.ui.grid>[class*="one wide tablet"].column{width:6.25%!important}.ui.column.grid>[class*="two wide tablet"].column,.ui.grid>.column.row>[class*="two wide tablet"].column,.ui.grid>.row>[class*="two wide tablet"].column,.ui.grid>[class*="two wide tablet"].column{width:12.5%!important}.ui.column.grid>[class*="three wide tablet"].column,.ui.grid>.column.row>[class*="three wide tablet"].column,.ui.grid>.row>[class*="three wide tablet"].column,.ui.grid>[class*="three wide tablet"].column{width:18.75%!important}.ui.column.grid>[class*="four wide tablet"].column,.ui.grid>.column.row>[class*="four wide tablet"].column,.ui.grid>.row>[class*="four wide tablet"].column,.ui.grid>[class*="four wide tablet"].column{width:25%!important}.ui.column.grid>[class*="five wide tablet"].column,.ui.grid>.column.row>[class*="five wide tablet"].column,.ui.grid>.row>[class*="five wide tablet"].column,.ui.grid>[class*="five wide tablet"].column{width:31.25%!important}.ui.column.grid>[class*="six wide tablet"].column,.ui.grid>.column.row>[class*="six wide tablet"].column,.ui.grid>.row>[class*="six wide tablet"].column,.ui.grid>[class*="six wide tablet"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide tablet"].column,.ui.grid>.column.row>[class*="seven wide tablet"].column,.ui.grid>.row>[class*="seven wide tablet"].column,.ui.grid>[class*="seven wide tablet"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide tablet"].column,.ui.grid>.column.row>[class*="eight wide tablet"].column,.ui.grid>.row>[class*="eight wide tablet"].column,.ui.grid>[class*="eight wide tablet"].column{width:50%!important}.ui.column.grid>[class*="nine wide tablet"].column,.ui.grid>.column.row>[class*="nine wide tablet"].column,.ui.grid>.row>[class*="nine wide tablet"].column,.ui.grid>[class*="nine wide tablet"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide tablet"].column,.ui.grid>.column.row>[class*="ten wide tablet"].column,.ui.grid>.row>[class*="ten wide tablet"].column,.ui.grid>[class*="ten wide tablet"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide tablet"].column,.ui.grid>.column.row>[class*="eleven wide tablet"].column,.ui.grid>.row>[class*="eleven wide tablet"].column,.ui.grid>[class*="eleven wide tablet"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide tablet"].column,.ui.grid>.column.row>[class*="twelve wide tablet"].column,.ui.grid>.row>[class*="twelve wide tablet"].column,.ui.grid>[class*="twelve wide tablet"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide tablet"].column,.ui.grid>.column.row>[class*="thirteen wide tablet"].column,.ui.grid>.row>[class*="thirteen wide tablet"].column,.ui.grid>[class*="thirteen wide tablet"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide tablet"].column,.ui.grid>.column.row>[class*="fourteen wide tablet"].column,.ui.grid>.row>[class*="fourteen wide tablet"].column,.ui.grid>[class*="fourteen wide tablet"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide tablet"].column,.ui.grid>.column.row>[class*="fifteen wide tablet"].column,.ui.grid>.row>[class*="fifteen wide tablet"].column,.ui.grid>[class*="fifteen wide tablet"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide tablet"].column,.ui.grid>.column.row>[class*="sixteen wide tablet"].column,.ui.grid>.row>[class*="sixteen wide tablet"].column,.ui.grid>[class*="sixteen wide tablet"].column{width:100%!important}}@media only screen and (min-width:992px){.ui.column.grid>[class*="one wide computer"].column,.ui.grid>.column.row>[class*="one wide computer"].column,.ui.grid>.row>[class*="one wide computer"].column,.ui.grid>[class*="one wide computer"].column{width:6.25%!important}.ui.column.grid>[class*="two wide computer"].column,.ui.grid>.column.row>[class*="two wide computer"].column,.ui.grid>.row>[class*="two wide computer"].column,.ui.grid>[class*="two wide computer"].column{width:12.5%!important}.ui.column.grid>[class*="three wide computer"].column,.ui.grid>.column.row>[class*="three wide computer"].column,.ui.grid>.row>[class*="three wide computer"].column,.ui.grid>[class*="three wide computer"].column{width:18.75%!important}.ui.column.grid>[class*="four wide computer"].column,.ui.grid>.column.row>[class*="four wide computer"].column,.ui.grid>.row>[class*="four wide computer"].column,.ui.grid>[class*="four wide computer"].column{width:25%!important}.ui.column.grid>[class*="five wide computer"].column,.ui.grid>.column.row>[class*="five wide computer"].column,.ui.grid>.row>[class*="five wide computer"].column,.ui.grid>[class*="five wide computer"].column{width:31.25%!important}.ui.column.grid>[class*="six wide computer"].column,.ui.grid>.column.row>[class*="six wide computer"].column,.ui.grid>.row>[class*="six wide computer"].column,.ui.grid>[class*="six wide computer"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide computer"].column,.ui.grid>.column.row>[class*="seven wide computer"].column,.ui.grid>.row>[class*="seven wide computer"].column,.ui.grid>[class*="seven wide computer"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide computer"].column,.ui.grid>.column.row>[class*="eight wide computer"].column,.ui.grid>.row>[class*="eight wide computer"].column,.ui.grid>[class*="eight wide computer"].column{width:50%!important}.ui.column.grid>[class*="nine wide computer"].column,.ui.grid>.column.row>[class*="nine wide computer"].column,.ui.grid>.row>[class*="nine wide computer"].column,.ui.grid>[class*="nine wide computer"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide computer"].column,.ui.grid>.column.row>[class*="ten wide computer"].column,.ui.grid>.row>[class*="ten wide computer"].column,.ui.grid>[class*="ten wide computer"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide computer"].column,.ui.grid>.column.row>[class*="eleven wide computer"].column,.ui.grid>.row>[class*="eleven wide computer"].column,.ui.grid>[class*="eleven wide computer"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide computer"].column,.ui.grid>.column.row>[class*="twelve wide computer"].column,.ui.grid>.row>[class*="twelve wide computer"].column,.ui.grid>[class*="twelve wide computer"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide computer"].column,.ui.grid>.column.row>[class*="thirteen wide computer"].column,.ui.grid>.row>[class*="thirteen wide computer"].column,.ui.grid>[class*="thirteen wide computer"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide computer"].column,.ui.grid>.column.row>[class*="fourteen wide computer"].column,.ui.grid>.row>[class*="fourteen wide computer"].column,.ui.grid>[class*="fourteen wide computer"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide computer"].column,.ui.grid>.column.row>[class*="fifteen wide computer"].column,.ui.grid>.row>[class*="fifteen wide computer"].column,.ui.grid>[class*="fifteen wide computer"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide computer"].column,.ui.grid>.column.row>[class*="sixteen wide computer"].column,.ui.grid>.row>[class*="sixteen wide computer"].column,.ui.grid>[class*="sixteen wide computer"].column{width:100%!important}}@media only screen and (min-width:1919px)and (max-width:1919px){.ui.column.grid>[class*="one wide large screen"].column,.ui.grid>.column.row>[class*="one wide large screen"].column,.ui.grid>.row>[class*="one wide large screen"].column,.ui.grid>[class*="one wide large screen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide large screen"].column,.ui.grid>.column.row>[class*="two wide large screen"].column,.ui.grid>.row>[class*="two wide large screen"].column,.ui.grid>[class*="two wide large screen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide large screen"].column,.ui.grid>.column.row>[class*="three wide large screen"].column,.ui.grid>.row>[class*="three wide large screen"].column,.ui.grid>[class*="three wide large screen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide large screen"].column,.ui.grid>.column.row>[class*="four wide large screen"].column,.ui.grid>.row>[class*="four wide large screen"].column,.ui.grid>[class*="four wide large screen"].column{width:25%!important}.ui.column.grid>[class*="five wide large screen"].column,.ui.grid>.column.row>[class*="five wide large screen"].column,.ui.grid>.row>[class*="five wide large screen"].column,.ui.grid>[class*="five wide large screen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide large screen"].column,.ui.grid>.column.row>[class*="six wide large screen"].column,.ui.grid>.row>[class*="six wide large screen"].column,.ui.grid>[class*="six wide large screen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide large screen"].column,.ui.grid>.column.row>[class*="seven wide large screen"].column,.ui.grid>.row>[class*="seven wide large screen"].column,.ui.grid>[class*="seven wide large screen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide large screen"].column,.ui.grid>.column.row>[class*="eight wide large screen"].column,.ui.grid>.row>[class*="eight wide large screen"].column,.ui.grid>[class*="eight wide large screen"].column{width:50%!important}.ui.column.grid>[class*="nine wide large screen"].column,.ui.grid>.column.row>[class*="nine wide large screen"].column,.ui.grid>.row>[class*="nine wide large screen"].column,.ui.grid>[class*="nine wide large screen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide large screen"].column,.ui.grid>.column.row>[class*="ten wide large screen"].column,.ui.grid>.row>[class*="ten wide large screen"].column,.ui.grid>[class*="ten wide large screen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide large screen"].column,.ui.grid>.column.row>[class*="eleven wide large screen"].column,.ui.grid>.row>[class*="eleven wide large screen"].column,.ui.grid>[class*="eleven wide large screen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide large screen"].column,.ui.grid>.column.row>[class*="twelve wide large screen"].column,.ui.grid>.row>[class*="twelve wide large screen"].column,.ui.grid>[class*="twelve wide large screen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide large screen"].column,.ui.grid>.column.row>[class*="thirteen wide large screen"].column,.ui.grid>.row>[class*="thirteen wide large screen"].column,.ui.grid>[class*="thirteen wide large screen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide large screen"].column,.ui.grid>.column.row>[class*="fourteen wide large screen"].column,.ui.grid>.row>[class*="fourteen wide large screen"].column,.ui.grid>[class*="fourteen wide large screen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide large screen"].column,.ui.grid>.column.row>[class*="fifteen wide large screen"].column,.ui.grid>.row>[class*="fifteen wide large screen"].column,.ui.grid>[class*="fifteen wide large screen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide large screen"].column,.ui.grid>.column.row>[class*="sixteen wide large screen"].column,.ui.grid>.row>[class*="sixteen wide large screen"].column,.ui.grid>[class*="sixteen wide large screen"].column{width:100%!important}}@media only screen and (min-width:1920px){.ui.column.grid>[class*="one wide widescreen"].column,.ui.grid>.column.row>[class*="one wide widescreen"].column,.ui.grid>.row>[class*="one wide widescreen"].column,.ui.grid>[class*="one wide widescreen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide widescreen"].column,.ui.grid>.column.row>[class*="two wide widescreen"].column,.ui.grid>.row>[class*="two wide widescreen"].column,.ui.grid>[class*="two wide widescreen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide widescreen"].column,.ui.grid>.column.row>[class*="three wide widescreen"].column,.ui.grid>.row>[class*="three wide widescreen"].column,.ui.grid>[class*="three wide widescreen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide widescreen"].column,.ui.grid>.column.row>[class*="four wide widescreen"].column,.ui.grid>.row>[class*="four wide widescreen"].column,.ui.grid>[class*="four wide widescreen"].column{width:25%!important}.ui.column.grid>[class*="five wide widescreen"].column,.ui.grid>.column.row>[class*="five wide widescreen"].column,.ui.grid>.row>[class*="five wide widescreen"].column,.ui.grid>[class*="five wide widescreen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide widescreen"].column,.ui.grid>.column.row>[class*="six wide widescreen"].column,.ui.grid>.row>[class*="six wide widescreen"].column,.ui.grid>[class*="six wide widescreen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide widescreen"].column,.ui.grid>.column.row>[class*="seven wide widescreen"].column,.ui.grid>.row>[class*="seven wide widescreen"].column,.ui.grid>[class*="seven wide widescreen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide widescreen"].column,.ui.grid>.column.row>[class*="eight wide widescreen"].column,.ui.grid>.row>[class*="eight wide widescreen"].column,.ui.grid>[class*="eight wide widescreen"].column{width:50%!important}.ui.column.grid>[class*="nine wide widescreen"].column,.ui.grid>.column.row>[class*="nine wide widescreen"].column,.ui.grid>.row>[class*="nine wide widescreen"].column,.ui.grid>[class*="nine wide widescreen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide widescreen"].column,.ui.grid>.column.row>[class*="ten wide widescreen"].column,.ui.grid>.row>[class*="ten wide widescreen"].column,.ui.grid>[class*="ten wide widescreen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide widescreen"].column,.ui.grid>.column.row>[class*="eleven wide widescreen"].column,.ui.grid>.row>[class*="eleven wide widescreen"].column,.ui.grid>[class*="eleven wide widescreen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide widescreen"].column,.ui.grid>.column.row>[class*="twelve wide widescreen"].column,.ui.grid>.row>[class*="twelve wide widescreen"].column,.ui.grid>[class*="twelve wide widescreen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide widescreen"].column,.ui.grid>.column.row>[class*="thirteen wide widescreen"].column,.ui.grid>.row>[class*="thirteen wide widescreen"].column,.ui.grid>[class*="thirteen wide widescreen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide widescreen"].column,.ui.grid>.column.row>[class*="fourteen wide widescreen"].column,.ui.grid>.row>[class*="fourteen wide widescreen"].column,.ui.grid>[class*="fourteen wide widescreen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide widescreen"].column,.ui.grid>.column.row>[class*="fifteen wide widescreen"].column,.ui.grid>.row>[class*="fifteen wide widescreen"].column,.ui.grid>[class*="fifteen wide widescreen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide widescreen"].column,.ui.grid>.column.row>[class*="sixteen wide widescreen"].column,.ui.grid>.row>[class*="sixteen wide widescreen"].column,.ui.grid>[class*="sixteen wide widescreen"].column{width:100%!important}}.wp-block-columns.is-css-grid{gap:50px!important}.wp-block-columns.is-css-grid.has-divider>.wp-block-column:not(:first-of-type):not(.is-selected):not(.is-highlighted):not(.is-hovered):after{left:-25px!important}.ui.grid{align-items:stretch;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:0;margin-left:-1.5rem;margin-right:-1.5rem;padding:0}.ui.relaxed.grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.fitted.grid{margin-bottom:-1rem;margin-top:-1rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{display:inline-block;padding-left:1.5rem;padding-right:1.5rem;position:relative;vertical-align:top;width:6.25%}.ui.grid>.column:not(.row).fitted,.ui.grid>.row>.column.fitted{padding-bottom:0}.ui.grid>*{padding-left:1.5rem;padding-right:1.5rem}.ui.grid>.column:empty{display:none!important}.ui.grid>.column:not(.row){padding-bottom:1rem;padding-top:1rem}.ui.grid>.row>.column{margin-bottom:0;margin-top:0}.ui.grid>.wp-block-prc-block-column.column:not(.row){padding-bottom:0;padding-top:0}.ui.grid>.row{align-items:stretch;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:inherit;padding:1rem 0;position:relative;width:100%!important}.ui.grid>.row>.column>img,.ui.grid>.row>img{max-width:100%}.content-area>.ui.grid+.wp-block-group.has-background,.content-area>.ui.grid:not(:first-child),.prc-block-area>.ui.grid+.wp-block-group.has-background,.prc-block-area>.ui.grid:not(:first-child){margin-top:4rem}.content-area .ui.grid .ui.grid,.prc-block-area .ui.grid .ui.grid,.ui.grid .block-editor-block-list__layout .ui.grid{margin-bottom:0}.ui.grid .row>.column[class*="attached top"],.ui.grid>.column[class*="attached top"]{padding-top:0!important}.ui.grid .row>.column[class*="attached bottom"],.ui.grid>.column[class*="attached bottom"]{padding-bottom:0!important}.ui.grid>.ui.grid:first-child{margin-top:0}.ui.grid>.ui.grid:last-child{margin-bottom:0}.ui.grid .row+.ui.divider{flex-grow:1;margin:1rem 1.5rem}.ui.grid .column+.ui.vertical.divider{height:calc(50% - 1)}.ui.centered.grid,.ui.centered.grid>.row,.ui.grid>.centered.row{justify-content:center;text-align:center}.ui.centered.grid>.column:not(.aligned):not(.justified):not(.row),.ui.centered.grid>.row>.column:not(.aligned):not(.justified),.ui.grid .centered.row>.column:not(.aligned):not(.justified){text-align:left}.ui.grid>.centered.column,.ui.grid>.row>.centered.column{display:block;margin-left:auto;margin-right:auto}.ui.compact.grid{margin-left:-.75rem;margin-right:-.75rem}.ui.compact.grid>.column:not(.row),.ui.compact.grid>.row>.column,.ui.grid>.compact.row>.column{padding-left:.75rem;padding-right:.75rem}.ui.grid>.relaxed.row>.column,.ui.relaxed.grid>.column:not(.row),.ui.relaxed.grid>.row>.column{padding-left:2.5rem;padding-right:2.5rem}.ui.grid .relaxed.row+.ui.divider,.ui.relaxed.grid .row+.ui.divider{margin-left:2.5rem;margin-right:2.5rem}.ui.divided.grid>.column>.ui.grid>.ui.divided.row>.column:after,.ui.grid>.divided.row>.column>.ui.grid>.ui.divided.row>.column:after{height:100%}.ui.divided.grid:not(.stackable)>.column:not(:first-child):not(.is-selected):after,.ui.divided.grid:not(.stackable)>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected):after,.ui.grid>.divided.row:not(.stackable)>.column:not(:first-child):not(.is-selected):after,.ui.grid>.divided.row:not(.stackable)>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected):after{background-color:rgba(34,36,38,.15);bottom:0;content:"";display:block;height:calc(100% - 1rem);left:0;position:absolute;top:inherit;width:1px}@media only screen and (min-width:767px){.ui.divided.grid.stackable>.column:not(:first-child):not(.is-selected):after,.ui.divided.grid.stackable>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected):after,.ui.grid>.divided.row.stackable>.column:not(:first-child):not(.is-selected):after,.ui.grid>.divided.row.stackable>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected):after{background-color:rgba(34,36,38,.15);bottom:0;content:"";display:block;height:calc(100% - 1rem);left:0;position:absolute;top:inherit;width:1px}}.ui.divided.grid>.wide.column+div[class*="sixteen wide column"],.ui.grid>.divided.row>.wide.column+div[class*="sixteen wide column"]{margin-top:1.5rem;padding-top:1.5rem}.ui.divided.grid>.wide.column+div[class*="sixteen wide column"]:not(.is-selected):after,.ui.grid>.divided.row>.wide.column+div[class*="sixteen wide column"]:not(.is-selected):after{background-color:rgba(34,36,38,.15);bottom:inherit;content:"";display:block;display:none;height:1px;left:inherit;position:absolute;top:0;width:calc(100% - 3rem)}@media only screen and (min-width:767px){.ui.divided.grid[class*="has section heading"]>.column:after,.ui.divided.grid[class*="has section heading"]>.column:before{height:calc(100% - 45px)!important}.ui.grid>.divided.row[class*="has section heading"]>.column:after,.ui.grid>.divided.row[class*="has section heading"]>.column:before{height:calc(100% - 30px)!important}}.ui.grid>.row>[class*="top aligned"].column,.ui.grid>[class*="top aligned"].column:not(.row),.ui.grid>[class*="top aligned"].row>.column,.ui[class*="top aligned"].grid>.column:not(.row),.ui[class*="top aligned"].grid>.row>.column{align-self:flex-start!important;flex-direction:column;vertical-align:top}.ui.grid>.row>[class*="middle aligned"].column,.ui.grid>[class*="middle aligned"].column:not(.row),.ui.grid>[class*="middle aligned"].row>.column,.ui[class*="middle aligned"].grid>.column:not(.row),.ui[class*="middle aligned"].grid>.row>.column{align-self:center!important;flex-direction:column;vertical-align:middle}.ui.grid>.row>[class*="bottom aligned"].column,.ui.grid>[class*="bottom aligned"].column:not(.row),.ui.grid>[class*="bottom aligned"].row>.column,.ui[class*="bottom aligned"].grid>.column:not(.row),.ui[class*="bottom aligned"].grid>.row>.column{align-self:flex-end!important;flex-direction:column;vertical-align:bottom}.ui.grid>.row>.stretched.column,.ui.grid>.stretched.column:not(.row),.ui.grid>.stretched.row>.column,.ui.stretched.grid>.column,.ui.stretched.grid>.row>.column{align-self:stretch;display:inline-flex!important;flex-direction:column}.ui.grid>.row>.stretched.column>*,.ui.grid>.stretched.column:not(.row)>*,.ui.grid>.stretched.row>.column>*,.ui.stretched.grid>.column>*,.ui.stretched.grid>.row>.column>*{flex-grow:1}.ui.grid>.row>[class*="left aligned"].column.column,.ui.grid>[class*="left aligned"].column.column,.ui.grid>[class*="left aligned"].row>.column,.ui[class*="left aligned"].grid>.column,.ui[class*="left aligned"].grid>.row>.column{align-self:inherit;text-align:left}.ui.grid>.row>[class*="center aligned"].column.column,.ui.grid>[class*="center aligned"].column.column,.ui.grid>[class*="center aligned"].row>.column,.ui[class*="center aligned"].grid>.column,.ui[class*="center aligned"].grid>.row>.column{align-self:inherit;text-align:center}.ui[class*="center aligned"].grid{justify-content:center}.ui.grid>.row>[class*="right aligned"].column.column,.ui.grid>[class*="right aligned"].column.column,.ui.grid>[class*="right aligned"].row>.column,.ui[class*="right aligned"].grid>.column,.ui[class*="right aligned"].grid>.row>.column{align-self:inherit;text-align:right}.ui.grid>.justified.column.column,.ui.grid>.justified.row>.column,.ui.grid>.row>.justified.column.column,.ui.justified.grid>.column,.ui.justified.grid>.row>.column{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;text-align:justify}.ui.grid>[class*="equal width"].row>.column,.ui[class*="equal width"].grid>.block-editor-block-list__layout>.column:not(.row),.ui[class*="equal width"].grid>.column:not(.row),.ui[class*="equal width"].grid>.row>.column{display:inline-block;flex-grow:1}.ui.grid>[class*="equal width"].row>.wide.column,.ui[class*="equal width"].grid>.row>.wide.column,.ui[class*="equal width"].grid>.wide.column{flex-grow:0}.ui.grid>[class*="equal width"].row>.spanned.column,.ui[class*="equal width"].grid>.row>.spanned.column,.ui[class*="equal width"].grid>.spanned.column{flex-basis:39.5%}@media only screen and (max-width:767px){.ui.stackable.grid{margin-left:0!important;margin-right:0!important;width:auto}.ui.grid>.stackable.row>.column,.ui.stackable.grid>.column.grid>.column,.ui.stackable.grid>.column.row>.column,.ui.stackable.grid>.column:not(.row),.ui.stackable.grid>.row>.column,.ui.stackable.grid>.row>.wide.column,.ui.stackable.grid>.wide.column{box-shadow:none!important;margin:0!important;padding:1rem 1.5rem!important;width:100%!important}.ui.stackable.grid:not(.vertically)>.row{margin:0;padding:0}.ui.container>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.column>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.column>.ui.stackable.grid>.column>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.row>.column,.ui.stackable.grid>.column.wp-block-prc-block-column:not(.row),.ui.stackable.grid>.column.wp-block-prc-block-column:not(.row)>.ui.stackable.grid>.column.wp-block-prc-block-column:not(.row){padding-left:0!important;padding-right:0!important}.ui.stackable.celled.grid>.column:not(.row):first-child,.ui.stackable.celled.grid>.row:first-child>.column:first-child{border-top:none!important}.ui.inverted.stackable.celled.grid>.column:not(.row),.ui.inverted.stackable.celled.grid>.row>.column{border-top:1px solid hsla(0,0%,100%,.1)}.ui.stackable.divided:not(.vertically).grid>.column:not(.row):first-child .ui.stackable.divided:not(.vertically).grid>.row>.column:first-child{padding-top:0!important}.ui.stackable.celled.grid>.column:not(.row),.ui.stackable.celled.grid>.row>.column,.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-bottom:2rem!important;padding-top:2rem!important}.ui.stackable.celled.grid>.row{box-shadow:none!important}.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-left:0!important;padding-right:0!important}}@media only screen and (min-width:320px)and (max-width:767px){.mobile-order-zero{order:0}.mobile-order-one{order:1}.mobile-order-two{order:2}.mobile-order-three{order:3}.mobile-order-four{order:4}[class*=mobile-order-].mobile-order-zero:before{background-color:rgba(34,36,38,.15);bottom:0;content:"";height:calc(100% - 1rem);position:absolute;right:0;width:1px}[class*=mobile-order-].mobile-order-zero:after{display:none!important}}@media only screen and (min-width:768px)and (max-width:991px){[class*=tablet-order-].tablet-order-zero:before{background-color:rgba(34,36,38,.15);bottom:0;content:"";height:calc(100% - 1rem);position:absolute;right:0;width:1px}[class*=tablet-order-].tablet-order-zero:after{display:none!important}[class*="sixteen wide tablet"]{margin-top:1rem}[class*="sixteen wide tablet"]:before{background-color:rgba(34,36,38,.15);content:"";height:1px;left:1rem;position:absolute;top:0;width:calc(100% - 3rem)}[class*="sixteen wide tablet"]:after{display:none!important}.tablet-order-zero{order:0}.tablet-order-one{order:1}.tablet-order-two{order:2}.tablet-order-three{order:3}.tablet-order-four{order:4}}@media only screen and (max-width:767px){.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].row:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="computer only"].grid.grid.grid:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*="tablet only"].grid.grid.grid:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:768px)and (max-width:991px){.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].row:not(.tablet),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].row:not(.tablet),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="computer only"].grid.grid.grid:not(.tablet),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.tablet),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:992px)and (max-width:1199px){.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:1200px)and (max-width:1919px){.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="mobile only"].grid.grid.grid:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:1920px){.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer){display:none!important}}body[class*=-template-default].single:not(.single-quiz):not(.single-fact-sheets):not(.single-topic-page) .ui.top.attached.divider[data-content-divider]{max-width:1063px}.prc-block-area[data-block-area-location=bottom]{margin-top:4rem}.prc-block-area .is-last{margin-bottom:4rem}.show-on-mobile{display:none!important}@media only screen and (max-width:767px){.show-on-mobile{display:inline-block!important}}#content{margin-bottom:2rem;margin-top:2rem}@media only screen and (max-width:767px){#content{margin-bottom:1rem;margin-top:1rem}}body.home #content{margin-top:0}@media only screen and (min-width:991px){body.has-sidebar.archive #content .content-area:not(.centered){padding-right:2rem}body.has-sidebar #content .content-area:not(.centered){padding-right:3.7rem}body.has-sidebar #content .widget-area{padding-top:0}}@media only screen and (min-width:767px){#secondary .widget{margin-left:-1.5rem}}#secondary .widget{margin-bottom:0}@media only screen and (max-width:767px){.content-area{padding-top:0!important}}/*! - * # Semantic UI - Grid - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.wp-block-columns.is-css-grid{gap:24px}/*! - * # Semantic UI - Header - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.header{--header--font-size:18px;--header--font-size--huge:37px;--header--font-size--large:21px;--header--font-size--small:14px;--header--font-size--tiny:12px;--prc---post-header---title---line-height:41px;--prc---post-header---title-small---font-size:26px;--prc---post-header---title-small---line-height:30px;border:none;color:#2a2a2a;font-family:var(--wp--preset--font-family--sans-serif);font-size:var(--header--font-size);font-weight:700;line-height:1.2857142857em;margin:1.8571428571rem 0 1rem;padding:0;text-transform:none}.ui.header>a{color:#000}.ui.header>a:visited{color:#000!important}.ui.header:first-child{margin-top:-.14286em}.ui.header:last-child{margin-bottom:0}.ui.header>.description{color:#818181;font-family:var(--wp--preset--font-family--sans-serif);font-size:16px;font-style:normal;font-weight:lighter;letter-spacing:0}.ui.header.medium,.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:var(--header--font-size)}.ui.header.huge{font-size:var(--header--font-size--huge);min-height:1em}.ui.header.large{font-size:var(--header--font-size--large)}.ui.header.small{font-size:var(--header--font-size--small)}.ui.header.tiny{font-size:var(--header--font-size--tiny)}.ui.header .ui.label{font-size:"";margin-left:.5rem;vertical-align:middle}.ui.header+p{margin-top:0}.ui.header.disabled{opacity:.45}.ui.header.left.aligned{text-align:left}.ui.header.right.aligned{text-align:right}.ui.header.center.aligned,.ui.header.centered{text-align:center}.ui.header.justified{text-align:justify}.ui.header.justified:after{content:"";display:inline-block;width:100%}.ui.header.fitted{padding:0}.ui.header.dividing{border-bottom:1px solid rgba(34,36,38,.15)}.ui.header.dividing,.ui.header.dividing .sub.header{padding-bottom:.2142857143rem}.ui.header.dividing .icon{margin-bottom:0}.ui.page.header{border-bottom:1px solid rgba(34,36,38,.15);font-family:var(--wp--preset--font-family--sans-serif);font-size:37px;font-weight:700;padding-bottom:24px}.ui.page.header.large{font-size:44px;font-weight:700}.ui.page.header.medium{font-size:37px}.ui.page.header.small{font-size:21px}@media only screen and (max-width:767px){.ui.page.header.small{font-size:18px;line-height:25px}}.ui.page.header+.ui.divider{margin-top:.5rem}.ui.post.header{--header--font-size:36px;color:#000;font-family:var(--wp--preset--font-family--serif);font-size:var(--header--font-size);line-height:var(--prc---post-header---title---line-height,41px);margin-top:0}@media only screen and (max-width:768px){.ui.post.header{font-size:var(--prc---post-header---title-small---font-size,26px);line-height:var(--prc---post-header---title-small---line-height,30px)}}.ui.post.header a{color:#000}.ui.post.header.small{font-size:var(--prc---post-header---title-small---font-size,26px);font-weight:700;line-height:var(--prc---post-header---title-small---line-height,30px);padding-top:1rem}.ui.sub.header,h2.is-style-sub-header,h3.is-style-sub-header,h4.is-style-sub-header,h5.is-style-sub-header,h6.is-style-sub-header{color:"";font-family:var(--wp--preset--font-family--sans-serif);font-size:.8571428571em!important;font-weight:700;margin-bottom:.1428571429rem;margin-top:0;padding:0;text-transform:uppercase}.ui.sub.header.small,h2.is-style-sub-header.small,h3.is-style-sub-header.small,h4.is-style-sub-header.small,h5.is-style-sub-header.small,h6.is-style-sub-header.small{font-size:.7857142857em}.ui.sub.header.large,h2.is-style-sub-header.large,h3.is-style-sub-header.large,h4.is-style-sub-header.large,h5.is-style-sub-header.large,h6.is-style-sub-header.large{font-size:.9285714286em}.ui.sub.header.huge,h2.is-style-sub-header.huge,h3.is-style-sub-header.huge,h4.is-style-sub-header.huge,h5.is-style-sub-header.huge,h6.is-style-sub-header.huge{font-size:1em}/*! - * # Semantic UI - Button - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.button{-webkit-tap-highlight-color:rgba(0,0,0,0);background:#e0e1e2 none;border:none;border-radius:3px;color:rgba(0,0,0,.6);cursor:pointer;display:inline-block;font-family:var(--wp--preset--font-family--sans-serif);font-style:normal;font-weight:700;line-height:1.067em;margin:0 .25em 0 0;min-height:1em;outline:none;padding:.7857142857em 1.5em;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;-webkit-user-select:none;-ms-user-select:none;user-select:none;vertical-align:baseline;will-change:""}.ui.button,.ui.button:hover{box-shadow:inset 0 0 0 1px transparent,inset 0 0 0 0 rgba(34,36,38,.15)}.ui.button:hover{background-color:#cacbcd;background-image:none;color:rgba(0,0,0,.8)}.ui.button:hover .icon{opacity:.85}.ui.button:focus{background-color:#cacbcd;background-image:""!important;box-shadow:""!important;color:rgba(0,0,0,.8)}.ui.button:focus .icon{opacity:.85}.ui.active.button:active,.ui.button:active{background-color:#babbbc;background-image:"";box-shadow:inset 0 0 0 1px transparent,none;color:rgba(0,0,0,.9)}.ui.active.button{box-shadow:inset 0 0 0 1px transparent}.ui.active.button,.ui.active.button:hover{color:rgba(0,0,0,.95)}.ui.active.button,.ui.active.button:active,.ui.active.button:hover{background-color:#c0c1c2;background-image:none}.ui.loading.loading.loading.loading.loading.loading.button{color:transparent!important;cursor:default;opacity:1;pointer-events:auto;position:relative;text-shadow:none!important;transition:all 0s linear,opacity .1s ease}.ui.loading.button:before{border:.2em solid rgba(0,0,0,.15);border-radius:500rem}.ui.loading.button:after,.ui.loading.button:before{content:"";height:1.2857142857em;left:50%;margin:-.6428571429em 0 0 -.6428571429em;position:absolute;top:50%;width:1.2857142857em}.ui.loading.button:after{-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid transparent;border-radius:500rem;border-top-color:#fff;box-shadow:0 0 0 1px transparent}.ui.labeled.icon.loading.button .icon{background-color:transparent;box-shadow:none}@-webkit-keyframes button-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes button-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.ui.basic.loading.button:not(.inverted):before{border-color:rgba(0,0,0,.1)}.ui.basic.loading.button:not(.inverted):after{border-top-color:#767676}.ui.button:disabled,.ui.buttons .disabled.button,.ui.disabled.active.button,.ui.disabled.button,.ui.disabled.button:hover{background-image:none!important;box-shadow:none!important;cursor:default;opacity:.45!important;pointer-events:none!important}.ui.basic.buttons .ui.disabled.button{border-color:rgba(34,36,38,.5)}.ui.animated.button{overflow:hidden;padding-right:0!important;position:relative;vertical-align:middle;z-index:1}.ui.animated.button .content{will-change:transform,opacity}.ui.animated.button .visible.content{margin-right:1.5em;position:relative}.ui.animated.button .hidden.content{position:absolute;width:100%}.ui.animated.button .hidden.content,.ui.animated.button .visible.content{transition:right .3s ease 0s}.ui.animated.button .visible.content{left:auto;right:0}.ui.animated.button .hidden.content{left:auto;margin-top:-.5335em;right:-100%;top:50%}.ui.animated.button:focus .visible.content,.ui.animated.button:hover .visible.content{left:auto;right:200%}.ui.animated.button:focus .hidden.content,.ui.animated.button:hover .hidden.content{left:auto;right:0}.ui.vertical.animated.button .hidden.content,.ui.vertical.animated.button .visible.content{transition:top .3s ease,-webkit-transform .3s ease;transition:top .3s ease,transform .3s ease;transition:top .3s ease,transform .3s ease,-webkit-transform .3s ease}.ui.vertical.animated.button .visible.content{right:auto;-webkit-transform:translateY(0);transform:translateY(0)}.ui.vertical.animated.button .hidden.content{left:0;right:auto;top:-50%}.ui.vertical.animated.button:focus .visible.content,.ui.vertical.animated.button:hover .visible.content{right:auto;-webkit-transform:translateY(200%);transform:translateY(200%)}.ui.vertical.animated.button:focus .hidden.content,.ui.vertical.animated.button:hover .hidden.content{right:auto;top:50%}.ui.fade.animated.button .hidden.content,.ui.fade.animated.button .visible.content{transition:opacity .3s ease,-webkit-transform .3s ease;transition:opacity .3s ease,transform .3s ease;transition:opacity .3s ease,transform .3s ease,-webkit-transform .3s ease}.ui.fade.animated.button .visible.content{left:auto;opacity:1;right:auto;-webkit-transform:scale(1);transform:scale(1)}.ui.fade.animated.button .hidden.content{left:0;opacity:0;right:auto;-webkit-transform:scale(1.5);transform:scale(1.5)}.ui.fade.animated.button:focus .visible.content,.ui.fade.animated.button:hover .visible.content{left:auto;opacity:0;right:auto;-webkit-transform:scale(.75);transform:scale(.75)}.ui.fade.animated.button:focus .hidden.content,.ui.fade.animated.button:hover .hidden.content{left:0;opacity:1;right:auto;-webkit-transform:scale(1);transform:scale(1)}.ui.inverted.button{background:transparent none;box-shadow:inset 0 0 0 2px #fff!important;color:#fff;text-shadow:none!important}.ui.inverted.buttons .button{margin:0 0 -2px}.ui.inverted.buttons .button:first-child{margin-left:0}.ui.inverted.vertical.buttons .button{margin:0 -2px}.ui.inverted.vertical.buttons .button:first-child{margin-top:0}.ui.inverted.button.active,.ui.inverted.button:focus,.ui.inverted.button:hover{background:#fff;box-shadow:inset 0 0 0 2px #fff!important;color:rgba(0,0,0,.8)}.ui.inverted.button.active:focus{background:#dcddde;box-shadow:inset 0 0 0 2px #dcddde!important;color:rgba(0,0,0,.8)}.ui.labeled.button:not(.icon){background:none!important;border:none!important;box-shadow:none!important;display:inline-flex;flex-direction:row;padding:0!important}.ui.labeled.button>.button{margin:0}.ui.labeled.button>.label{align-items:center;border-color:rgba(34,36,38,.15);display:flex;font-size:1em;margin:0 0 0 -1px!important;padding:""}.ui.labeled.button>.tag.label:before{height:1.85em;width:1.85em}.ui.labeled.button:not([class*="left labeled"])>.button{border-bottom-right-radius:0;border-top-right-radius:0}.ui.labeled.button:not([class*="left labeled"])>.label,.ui[class*="left labeled"].button>.button{border-bottom-left-radius:0;border-top-left-radius:0}.ui[class*="left labeled"].button>.label{border-bottom-right-radius:0;border-top-right-radius:0}.ui.facebook.button{background-color:#3b5998;background-image:none;box-shadow:inset 0 0 0 0 rgba(34,36,38,.15);color:#fff;text-shadow:none}.ui.facebook.button:hover{background-color:#2b4b8f;color:#fff;text-shadow:none}.ui.facebook.button:active{background-color:#2d4373;color:#fff;text-shadow:none}.ui.twitter.button{background-color:#55acee;background-image:none;box-shadow:inset 0 0 0 0 rgba(34,36,38,.15);color:#fff;text-shadow:none}.ui.twitter.button:hover{background-color:#33a2f6;color:#fff;text-shadow:none}.ui.twitter.button:active{background-color:#2795e9;color:#fff;text-shadow:none}.ui.linkedin.button{background-color:#1f88be;color:#fff;text-shadow:none}.ui.linkedin.button:hover{background-color:#127bb2;color:#fff;text-shadow:none}.ui.linkedin.button:active{background-color:#186992;color:#fff;text-shadow:none}.ui.youtube.button{background-color:red;background-image:none;box-shadow:inset 0 0 0 0 rgba(34,36,38,.15);color:#fff;text-shadow:none}.ui.youtube.button:hover{background-color:#e60000;color:#fff;text-shadow:none}.ui.youtube.button:active{background-color:#c00;color:#fff;text-shadow:none}.ui.instagram.button{background-color:#49769c;background-image:none;box-shadow:inset 0 0 0 0 rgba(34,36,38,.15);color:#fff;text-shadow:none}.ui.instagram.button:hover{background-color:#376a95;color:#fff;text-shadow:none}.ui.instagram.button:active{background-color:#395c79;color:#fff;text-shadow:none}.ui.button>.icon:not(.button){color:"";height:.8571428571em;opacity:.8;transition:opacity .1s ease;vertical-align:""}.ui.button:not(.icon)>.icon:not(.button):not(.dropdown),.ui.button>.icon:not(.button){margin:0 .4285714286em -.2142857143em}.ui.button:not(.icon)>.right.icon:not(.button):not(.dropdown){margin:-.2142857143em 0 .4285714286em}.ui[class*="left floated"].button,.ui[class*="left floated"].buttons{float:left;margin-left:0;margin-right:.25em}.ui[class*="right floated"].button,.ui[class*="right floated"].buttons{float:right;margin-left:.25em;margin-right:0}.ui.compact.button,.ui.compact.buttons .button{padding:.5892857143em 1.125em}.ui.compact.icon.button,.ui.compact.icon.buttons .button{padding:.5892857143em}.ui.compact.labeled.icon.button,.ui.compact.labeled.icon.buttons .button{padding:.5892857143em 3.6964285714em}.ui.relaxed.button,.ui.relaxed.buttons .button{padding:.9821428571em 1.875em}.ui.relaxed.icon.button,.ui.relaxed.icon.buttons .button{padding:.9821428571em}.ui.relaxed.labeled.icon.button,.ui.relaxed.labeled.icon.buttons .button{padding:.9821428571em 4.4464285714em}.ui.mini.button,.ui.mini.buttons .button,.ui.mini.buttons .or{font-size:.7857142857rem}.ui.tiny.button,.ui.tiny.buttons .button,.ui.tiny.buttons .or{font-size:.8571428571rem}.ui.small.button,.ui.small.buttons .button,.ui.small.buttons .or{font-size:.9285714286rem}.ui.button,.ui.buttons .button,.ui.buttons .or{font-size:1rem}.ui.large.button,.ui.large.buttons .button,.ui.large.buttons .or{font-size:1.1428571429rem}.ui.big.button,.ui.big.buttons .button,.ui.big.buttons .or{font-size:1.2857142857rem}.ui.huge.button,.ui.huge.buttons .button,.ui.huge.buttons .or{font-size:1.4285714286rem}.ui.massive.button,.ui.massive.buttons .button,.ui.massive.buttons .or{font-size:1.7142857143rem}.ui.icon.button,.ui.icon.buttons .button{padding:.7857142857em}.ui.icon.button>.icon,.ui.icon.buttons .button>.icon{margin:0!important;opacity:.9;vertical-align:top}.ui.flat.button{border-radius:0;box-shadow:inset 0 3px 4px -2px #cacbcd;font-weight:400;text-align:center;text-decoration:none}.ui.flat.button.oatmeal{background:#f0f0e6;box-shadow:inset 0 3px 4px -2px #adadad;color:#333}.ui.flat.button.oatmeal:hover{background:#d7d8d4;color:#91918e}.ui.basic.button,.ui.basic.buttons .button{background:transparent none!important;border-radius:3px;box-shadow:inset 0 0 0 1px rgba(34,36,38,.15);color:rgba(0,0,0,.6)!important;font-weight:400;text-shadow:none!important;text-transform:none}.ui.basic.buttons{border:1px solid rgba(34,36,38,.15);border-radius:3px;box-shadow:none}.ui.basic.buttons .button{border-radius:0}.ui.basic.button:hover,.ui.basic.buttons .button:hover{background:#dadbdb!important;box-shadow:none}.ui.basic.button:focus,.ui.basic.buttons .button:focus{background:#dadbdb!important;box-shadow:none;color:rgba(0,0,0,.8)!important}.ui.basic.button:active,.ui.basic.buttons .button:active{background:#ccc!important;box-shadow:none;color:rgba(0,0,0,.9)!important}.ui.basic.active.button,.ui.basic.buttons .active.button{background:rgba(0,0,0,.05)!important;box-shadow:none!important;color:rgba(0,0,0,.95)!important}.ui.basic.active.button:hover,.ui.basic.buttons .active.button:hover{background-color:rgba(0,0,0,.05)}.ui.basic.buttons .button:active,.ui.basic.buttons .button:hover{box-shadow:none}.ui.basic.buttons .active.button{box-shadow:none!important}.ui.basic.inverted.button,.ui.basic.inverted.buttons .button{background-color:transparent!important;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#f9fafb!important}.ui.basic.inverted.button:focus,.ui.basic.inverted.button:hover,.ui.basic.inverted.buttons .button:focus,.ui.basic.inverted.buttons .button:hover{box-shadow:inset 0 0 0 2px #fff!important;color:#fff!important}.ui.basic.inverted.button:active,.ui.basic.inverted.buttons .button:active{background-color:hsla(0,0%,100%,.08)!important;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.9)!important;color:#fff!important}.ui.basic.inverted.active.button,.ui.basic.inverted.buttons .active.button{background-color:hsla(0,0%,100%,.08);box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.7);color:#fff;text-shadow:none}.ui.basic.inverted.active.button:hover,.ui.basic.inverted.buttons .active.button:hover{background-color:hsla(0,0%,100%,.15);box-shadow:inset 0 0 0 2px #fff!important}.ui.basic.buttons .button{border-left:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.vertical.buttons .button{border-left:none;border-left-width:0;border-top:1px solid rgba(34,36,38,.15)}.ui.basic.vertical.buttons .button:first-child{border-top-width:0}.ui.labeled.icon.button,.ui.labeled.icon.buttons .button{padding-left:4.0714285714em!important;padding-right:1.5em!important;position:relative}.ui.labeled.icon.button>.icon,.ui.labeled.icon.buttons>.button>.icon{background-color:rgba(0,0,0,.05);border-radius:0;border-bottom-left-radius:inherit;border-top-left-radius:inherit;box-shadow:inset -1px 0 0 0 transparent;color:"";height:100%;left:0;line-height:1;margin:0;position:absolute;text-align:center;top:0;width:2.5714285714em}.ui[class*="right labeled"].icon.button{padding-left:1.5em!important;padding-right:4.0714285714em!important}.ui[class*="right labeled"].icon.button>.icon{border-radius:0;border-bottom-right-radius:inherit;border-top-right-radius:inherit;box-shadow:inset 1px 0 0 0 transparent;left:auto;right:0}.ui.labeled.icon.button>.icon:after,.ui.labeled.icon.button>.icon:before,.ui.labeled.icon.buttons>.button>.icon:after,.ui.labeled.icon.buttons>.button>.icon:before{display:block;position:absolute;text-align:center;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%}.ui.labeled.icon.buttons .button>.icon{border-radius:0}.ui.labeled.icon.buttons .button:first-child>.icon{border-bottom-left-radius:3px;border-top-left-radius:3px}.ui.labeled.icon.buttons .button:last-child>.icon{border-bottom-right-radius:3px;border-top-right-radius:3px}.ui.vertical.labeled.icon.buttons .button:first-child>.icon{border-radius:0;border-top-left-radius:3px}.ui.vertical.labeled.icon.buttons .button:last-child>.icon{border-radius:0;border-bottom-left-radius:3px}.ui.fluid[class*="left labeled"].icon.button,.ui.fluid[class*="right labeled"].icon.button{padding-left:1.5em!important;padding-right:1.5em!important}.ui.button.toggle.active,.ui.buttons .button.toggle.active,.ui.toggle.buttons .active.button{background-color:#21ba45!important;box-shadow:none!important;color:#fff!important;text-shadow:none}.ui.button.toggle.active:hover{background-color:#13ae38!important;color:#fff!important;text-shadow:none}.ui.circular.button{border-radius:10em}.ui.circular.button>.icon{vertical-align:baseline;width:1em}.ui.buttons .or{height:2.5714285714em;position:relative;width:.3em;z-index:3}.ui.buttons .or:before{background-color:#fff;border-radius:500rem;box-shadow:inset 0 0 0 1px transparent;color:rgba(0,0,0,.4);content:"or";font-style:normal;font-weight:700;height:1.7857142857em;left:50%;line-height:1.7857142857em;margin-left:-.8928571429em;margin-top:-.8928571429em;position:absolute;text-align:center;text-shadow:none;top:50%;width:1.7857142857em}.ui.buttons .or[data-text]:before{content:attr(data-text)}.ui.fluid.buttons .or{width:0!important}.ui.fluid.buttons .or:after{display:none}.ui.attached.button{border-radius:0;box-shadow:0 0 0 1px rgba(34,36,38,.15)!important;display:block;margin:0;position:relative}.ui.attached.top.button{border-radius:3px 3px 0 0}.ui.attached.bottom.button{border-radius:0 0 3px 3px}.ui.left.attached.button{border-left:none;border-radius:3px 0 0 3px;display:inline-block;padding-right:.75em;text-align:right}.ui.right.attached.button{border-radius:0 3px 3px 0;display:inline-block;padding-left:.75em;text-align:left}.ui.attached.buttons{border-radius:0;display:flex;margin-left:-1px;margin-right:-1px;position:relative;width:auto!important;z-index:2}.ui.attached.buttons .button{margin:0}.ui.attached.buttons .button:first-child,.ui.attached.buttons .button:last-child{border-radius:0}.ui[class*="top attached"].buttons{border-radius:3px 3px 0 0;margin-bottom:-1px}.ui[class*="top attached"].buttons .button:first-child{border-radius:3px 0 0 0}.ui[class*="top attached"].buttons .button:last-child{border-radius:0 3px 0 0}.ui[class*="bottom attached"].buttons{border-radius:0 0 3px 3px;margin-top:-1px}.ui[class*="bottom attached"].buttons .button:first-child{border-radius:0 0 0 3px}.ui[class*="bottom attached"].buttons .button:last-child{border-radius:0 0 3px 0}.ui[class*="left attached"].buttons{border-radius:0 3px 3px 0;display:inline-flex;margin-left:-1px;margin-right:0}.ui[class*="left attached"].buttons .button:first-child{border-radius:0 3px 0 0;margin-left:-1px}.ui[class*="left attached"].buttons .button:last-child{border-radius:0 0 3px 0;margin-left:-1px}.ui[class*="right attached"].buttons{border-radius:3px 0 0 3px;display:inline-flex;margin-left:0;margin-right:-1px}.ui[class*="right attached"].buttons .button:first-child{border-radius:3px 0 0 0;margin-left:-1px}.ui[class*="right attached"].buttons .button:last-child{border-radius:0 0 0 3px;margin-left:-1px}.ui.fluid.button,.ui.fluid.buttons{width:100%}.ui.fluid.button,.ui.is-style-fluid.button{display:block}.ui.two.buttons{width:100%}.ui.two.buttons>.button{width:50%}.ui.three.buttons{width:100%}.ui.three.buttons>.button{width:33.333%}.ui.four.buttons{width:100%}.ui.four.buttons>.button{width:25%}.ui.five.buttons{width:100%}.ui.five.buttons>.button{width:20%}.ui.six.buttons{width:100%}.ui.six.buttons>.button{width:16.666%}.ui.seven.buttons{width:100%}.ui.seven.buttons>.button{width:14.285%}.ui.eight.buttons{width:100%}.ui.eight.buttons>.button{width:12.5%}.ui.nine.buttons{width:100%}.ui.nine.buttons>.button{width:11.11%}.ui.ten.buttons{width:100%}.ui.ten.buttons>.button{width:10%}.ui.eleven.buttons{width:100%}.ui.eleven.buttons>.button{width:9.09%}.ui.twelve.buttons{width:100%}.ui.twelve.buttons>.button{width:8.3333%}.ui.fluid.vertical.buttons,.ui.fluid.vertical.buttons>.button{display:flex;width:auto}.ui.two.vertical.buttons>.button{height:50%}.ui.three.vertical.buttons>.button{height:33.333%}.ui.four.vertical.buttons>.button{height:25%}.ui.five.vertical.buttons>.button{height:20%}.ui.six.vertical.buttons>.button{height:16.666%}.ui.seven.vertical.buttons>.button{height:14.285%}.ui.eight.vertical.buttons>.button{height:12.5%}.ui.nine.vertical.buttons>.button{height:11.11%}.ui.ten.vertical.buttons>.button{height:10%}.ui.eleven.vertical.buttons>.button{height:9.09%}.ui.twelve.vertical.buttons>.button{height:8.3333%}.ui.black.button,.ui.black.buttons .button{background-color:#1b1c1d;background-image:none;color:#fff;text-shadow:none}.ui.black.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.black.button:hover,.ui.black.buttons .button:hover{background-color:#27292a;color:#fff;text-shadow:none}.ui.black.button:focus,.ui.black.buttons .button:focus{background-color:#2f3032;color:#fff;text-shadow:none}.ui.black.button:active,.ui.black.buttons .button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.black.active.button,.ui.black.button .active.button:active,.ui.black.buttons .active.button,.ui.black.buttons .active.button:active{background-color:#0f0f10;color:#fff;text-shadow:none}.ui.basic.black.button,.ui.basic.black.buttons .button{box-shadow:inset 0 0 0 1px #1b1c1d!important;color:#1b1c1d!important}.ui.basic.black.button:hover,.ui.basic.black.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #27292a!important;color:#27292a!important}.ui.basic.black.button:focus,.ui.basic.black.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #2f3032!important;color:#27292a!important}.ui.basic.black.active.button,.ui.basic.black.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #0f0f10!important;color:#343637!important}.ui.basic.black.button:active,.ui.basic.black.buttons .button:active{box-shadow:inset 0 0 0 1px #343637!important;color:#343637!important}.ui.buttons:not(.vertical)>.basic.black.button:not(:first-child){margin-left:-1px}.ui.inverted.black.button,.ui.inverted.black.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #d4d4d5!important;color:#fff}.ui.inverted.black.button.active,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .button.active,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.black.active.button,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .active.button,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{background-color:#000}.ui.inverted.black.basic.button,.ui.inverted.black.basic.buttons .button,.ui.inverted.black.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.black.basic.button:hover,.ui.inverted.black.basic.buttons .button:hover,.ui.inverted.black.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #000!important;color:#fff!important}.ui.inverted.black.basic.button:focus,.ui.inverted.black.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #000!important;color:#545454!important}.ui.inverted.black.basic.active.button,.ui.inverted.black.basic.button:active,.ui.inverted.black.basic.buttons .active.button,.ui.inverted.black.basic.buttons .button:active,.ui.inverted.black.buttons .basic.active.button,.ui.inverted.black.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #000!important;color:#fff!important}.ui.grey.button,.ui.grey.buttons .button{background-color:#767676;background-image:none;color:#fff;text-shadow:none}.ui.grey.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.grey.button:hover,.ui.grey.buttons .button:hover{background-color:#838383;color:#fff;text-shadow:none}.ui.grey.button:focus,.ui.grey.buttons .button:focus{background-color:#8a8a8a;color:#fff;text-shadow:none}.ui.grey.button:active,.ui.grey.buttons .button:active{background-color:#909090;color:#fff;text-shadow:none}.ui.grey.active.button,.ui.grey.button .active.button:active,.ui.grey.buttons .active.button,.ui.grey.buttons .active.button:active{background-color:dimgray;color:#fff;text-shadow:none}.ui.basic.grey.button,.ui.basic.grey.buttons .button{box-shadow:inset 0 0 0 1px #767676!important;color:#767676!important}.ui.basic.grey.button:hover,.ui.basic.grey.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #838383!important;color:#838383!important}.ui.basic.grey.button:focus,.ui.basic.grey.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #8a8a8a!important;color:#838383!important}.ui.basic.grey.active.button,.ui.basic.grey.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px dimgray!important;color:#909090!important}.ui.basic.grey.button:active,.ui.basic.grey.buttons .button:active{box-shadow:inset 0 0 0 1px #909090!important;color:#909090!important}.ui.buttons:not(.vertical)>.basic.grey.button:not(:first-child){margin-left:-1px}.ui.inverted.grey.button,.ui.inverted.grey.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #d4d4d5!important;color:#fff}.ui.inverted.grey.button.active,.ui.inverted.grey.button:active,.ui.inverted.grey.button:focus,.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button.active,.ui.inverted.grey.buttons .button:active,.ui.inverted.grey.buttons .button:focus,.ui.inverted.grey.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button:hover{background-color:#cad0d6}.ui.inverted.grey.button:focus,.ui.inverted.grey.buttons .button:focus{background-color:#bcc9d5}.ui.inverted.grey.active.button,.ui.inverted.grey.buttons .active.button{background-color:#c8d0d9}.ui.inverted.grey.button:active,.ui.inverted.grey.buttons .button:active{background-color:#c2c4c5}.ui.inverted.grey.basic.button,.ui.inverted.grey.basic.buttons .button,.ui.inverted.grey.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.grey.basic.button:hover,.ui.inverted.grey.basic.buttons .button:hover,.ui.inverted.grey.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #cad0d6!important;color:#fff!important}.ui.inverted.grey.basic.button:focus,.ui.inverted.grey.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #bcc9d5!important;color:#dcddde!important}.ui.inverted.grey.basic.active.button,.ui.inverted.grey.basic.buttons .active.button,.ui.inverted.grey.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #c8d0d9!important;color:#fff!important}.ui.inverted.grey.basic.button:active,.ui.inverted.grey.basic.buttons .button:active,.ui.inverted.grey.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #c2c4c5!important;color:#fff!important}.ui.brown.button,.ui.brown.buttons .button{background-color:#a5673f;background-image:none;color:#fff;text-shadow:none}.ui.brown.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.brown.button:hover,.ui.brown.buttons .button:hover{background-color:#9d592e;color:#fff;text-shadow:none}.ui.brown.button:focus,.ui.brown.buttons .button:focus{background-color:#9a5121;color:#fff;text-shadow:none}.ui.brown.button:active,.ui.brown.buttons .button:active{background-color:#805031;color:#fff;text-shadow:none}.ui.brown.active.button,.ui.brown.button .active.button:active,.ui.brown.buttons .active.button,.ui.brown.buttons .active.button:active{background-color:#a25829;color:#fff;text-shadow:none}.ui.basic.brown.button,.ui.basic.brown.buttons .button{box-shadow:inset 0 0 0 1px #a5673f!important;color:#a5673f!important}.ui.basic.brown.button:hover,.ui.basic.brown.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #9d592e!important;color:#9d592e!important}.ui.basic.brown.button:focus,.ui.basic.brown.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #9a5121!important;color:#9d592e!important}.ui.basic.brown.active.button,.ui.basic.brown.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #a25829!important;color:#805031!important}.ui.basic.brown.button:active,.ui.basic.brown.buttons .button:active{box-shadow:inset 0 0 0 1px #805031!important;color:#805031!important}.ui.buttons:not(.vertical)>.basic.brown.button:not(:first-child){margin-left:-1px}.ui.inverted.brown.button,.ui.inverted.brown.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #d67c1c!important;color:#d67c1c}.ui.inverted.brown.button.active,.ui.inverted.brown.button:active,.ui.inverted.brown.button:focus,.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button.active,.ui.inverted.brown.buttons .button:active,.ui.inverted.brown.buttons .button:focus,.ui.inverted.brown.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button:hover{background-color:#ca6f0e}.ui.inverted.brown.button:focus,.ui.inverted.brown.buttons .button:focus{background-color:#c66803}.ui.inverted.brown.active.button,.ui.inverted.brown.buttons .active.button{background-color:#d06f09}.ui.inverted.brown.button:active,.ui.inverted.brown.buttons .button:active{background-color:#a96216}.ui.inverted.brown.basic.button,.ui.inverted.brown.basic.buttons .button,.ui.inverted.brown.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.brown.basic.button:hover,.ui.inverted.brown.basic.buttons .button:hover,.ui.inverted.brown.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #ca6f0e!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:focus,.ui.inverted.brown.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #c66803!important;color:#d67c1c!important}.ui.inverted.brown.basic.active.button,.ui.inverted.brown.basic.buttons .active.button,.ui.inverted.brown.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #d06f09!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:active,.ui.inverted.brown.basic.buttons .button:active,.ui.inverted.brown.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #a96216!important;color:#d67c1c!important}.ui.blue.button,.ui.blue.buttons .button{background-color:#2185d0;background-image:none;color:#fff;text-shadow:none}.ui.blue.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.blue.button:hover,.ui.blue.buttons .button:hover{background-color:#1378c5;color:#fff;text-shadow:none}.ui.blue.button:focus,.ui.blue.buttons .button:focus{background-color:#0771c1;color:#fff;text-shadow:none}.ui.blue.button:active,.ui.blue.buttons .button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.blue.active.button,.ui.blue.button .active.button:active,.ui.blue.buttons .active.button,.ui.blue.buttons .active.button:active{background-color:#0d79ca;color:#fff;text-shadow:none}.ui.basic.blue.button,.ui.basic.blue.buttons .button{box-shadow:inset 0 0 0 1px #2185d0!important;color:#2185d0!important}.ui.basic.blue.button:hover,.ui.basic.blue.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #1378c5!important;color:#1378c5!important}.ui.basic.blue.button:focus,.ui.basic.blue.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #0771c1!important;color:#1378c5!important}.ui.basic.blue.active.button,.ui.basic.blue.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #0d79ca!important;color:#1a69a4!important}.ui.basic.blue.button:active,.ui.basic.blue.buttons .button:active{box-shadow:inset 0 0 0 1px #1a69a4!important;color:#1a69a4!important}.ui.buttons:not(.vertical)>.basic.blue.button:not(:first-child){margin-left:-1px}.ui.inverted.blue.button,.ui.inverted.blue.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #54c8ff!important;color:#54c8ff}.ui.inverted.blue.button.active,.ui.inverted.blue.button:active,.ui.inverted.blue.button:focus,.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button.active,.ui.inverted.blue.buttons .button:active,.ui.inverted.blue.buttons .button:focus,.ui.inverted.blue.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button:hover{background-color:#3bc0ff}.ui.inverted.blue.button:focus,.ui.inverted.blue.buttons .button:focus{background-color:#2bbbff}.ui.inverted.blue.active.button,.ui.inverted.blue.buttons .active.button{background-color:#3bc0ff}.ui.inverted.blue.button:active,.ui.inverted.blue.buttons .button:active{background-color:#21b8ff}.ui.inverted.blue.basic.button,.ui.inverted.blue.basic.buttons .button,.ui.inverted.blue.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.blue.basic.button:hover,.ui.inverted.blue.basic.buttons .button:hover,.ui.inverted.blue.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #3bc0ff!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:focus,.ui.inverted.blue.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #2bbbff!important;color:#54c8ff!important}.ui.inverted.blue.basic.active.button,.ui.inverted.blue.basic.buttons .active.button,.ui.inverted.blue.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #3bc0ff!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:active,.ui.inverted.blue.basic.buttons .button:active,.ui.inverted.blue.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #21b8ff!important;color:#54c8ff!important}.ui.green.button,.ui.green.buttons .button{background-color:#21ba45;background-image:none;color:#fff;text-shadow:none}.ui.green.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.green.button:hover,.ui.green.buttons .button:hover{background-color:#13ae38;color:#fff;text-shadow:none}.ui.green.button:focus,.ui.green.buttons .button:focus{background-color:#09a92f;color:#fff;text-shadow:none}.ui.green.button:active,.ui.green.buttons .button:active{background-color:#198f35;color:#fff;text-shadow:none}.ui.green.active.button,.ui.green.button .active.button:active,.ui.green.buttons .active.button,.ui.green.buttons .active.button:active{background-color:#0fb335;color:#fff;text-shadow:none}.ui.basic.green.button,.ui.basic.green.buttons .button{box-shadow:inset 0 0 0 1px #21ba45!important;color:#21ba45!important}.ui.basic.green.button:hover,.ui.basic.green.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #13ae38!important;color:#13ae38!important}.ui.basic.green.button:focus,.ui.basic.green.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #09a92f!important;color:#13ae38!important}.ui.basic.green.active.button,.ui.basic.green.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #0fb335!important;color:#198f35!important}.ui.basic.green.button:active,.ui.basic.green.buttons .button:active{box-shadow:inset 0 0 0 1px #198f35!important;color:#198f35!important}.ui.buttons:not(.vertical)>.basic.green.button:not(:first-child){margin-left:-1px}.ui.inverted.green.button,.ui.inverted.green.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #2ecc40!important;color:#2ecc40}.ui.inverted.green.button.active,.ui.inverted.green.button:active,.ui.inverted.green.button:focus,.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button.active,.ui.inverted.green.buttons .button:active,.ui.inverted.green.buttons .button:focus,.ui.inverted.green.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button:hover{background-color:#1ec231}.ui.inverted.green.button:focus,.ui.inverted.green.buttons .button:focus{background-color:#12c025}.ui.inverted.green.active.button,.ui.inverted.green.buttons .active.button{background-color:#18c82c}.ui.inverted.green.button:active,.ui.inverted.green.buttons .button:active{background-color:#25a233}.ui.inverted.green.basic.button,.ui.inverted.green.basic.buttons .button,.ui.inverted.green.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.green.basic.button:hover,.ui.inverted.green.basic.buttons .button:hover,.ui.inverted.green.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #1ec231!important;color:#2ecc40!important}.ui.inverted.green.basic.button:focus,.ui.inverted.green.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #12c025!important;color:#2ecc40!important}.ui.inverted.green.basic.active.button,.ui.inverted.green.basic.buttons .active.button,.ui.inverted.green.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #18c82c!important;color:#2ecc40!important}.ui.inverted.green.basic.button:active,.ui.inverted.green.basic.buttons .button:active,.ui.inverted.green.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #25a233!important;color:#2ecc40!important}.ui.orange.button,.ui.orange.buttons .button{background-color:#f2711c;background-image:none;color:#fff;text-shadow:none}.ui.orange.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.orange.button:hover,.ui.orange.buttons .button:hover{background-color:#f36101;color:#fff;text-shadow:none}.ui.orange.button:focus,.ui.orange.buttons .button:focus{background-color:#e55b00;color:#fff;text-shadow:none}.ui.orange.button:active,.ui.orange.buttons .button:active{background-color:#cf590c;color:#fff;text-shadow:none}.ui.orange.active.button,.ui.orange.button .active.button:active,.ui.orange.buttons .active.button,.ui.orange.buttons .active.button:active{background-color:#f56100;color:#fff;text-shadow:none}.ui.basic.orange.button,.ui.basic.orange.buttons .button{box-shadow:inset 0 0 0 1px #f2711c!important;color:#f2711c!important}.ui.basic.orange.button:hover,.ui.basic.orange.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #f36101!important;color:#f36101!important}.ui.basic.orange.button:focus,.ui.basic.orange.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #e55b00!important;color:#f36101!important}.ui.basic.orange.active.button,.ui.basic.orange.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #f56100!important;color:#cf590c!important}.ui.basic.orange.button:active,.ui.basic.orange.buttons .button:active{box-shadow:inset 0 0 0 1px #cf590c!important;color:#cf590c!important}.ui.buttons:not(.vertical)>.basic.orange.button:not(:first-child){margin-left:-1px}.ui.inverted.orange.button,.ui.inverted.orange.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #ff851b!important;color:#ff851b}.ui.inverted.orange.button.active,.ui.inverted.orange.button:active,.ui.inverted.orange.button:focus,.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button.active,.ui.inverted.orange.buttons .button:active,.ui.inverted.orange.buttons .button:focus,.ui.inverted.orange.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button:hover{background-color:#ff7702}.ui.inverted.orange.button:focus,.ui.inverted.orange.buttons .button:focus{background-color:#f17000}.ui.inverted.orange.active.button,.ui.inverted.orange.buttons .active.button{background-color:#ff7702}.ui.inverted.orange.button:active,.ui.inverted.orange.buttons .button:active{background-color:#e76b00}.ui.inverted.orange.basic.button,.ui.inverted.orange.basic.buttons .button,.ui.inverted.orange.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.orange.basic.button:hover,.ui.inverted.orange.basic.buttons .button:hover,.ui.inverted.orange.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #ff7702!important;color:#ff851b!important}.ui.inverted.orange.basic.button:focus,.ui.inverted.orange.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #f17000!important;color:#ff851b!important}.ui.inverted.orange.basic.active.button,.ui.inverted.orange.basic.buttons .active.button,.ui.inverted.orange.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #ff7702!important;color:#ff851b!important}.ui.inverted.orange.basic.button:active,.ui.inverted.orange.basic.buttons .button:active,.ui.inverted.orange.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #e76b00!important;color:#ff851b!important}.ui.pink.button,.ui.pink.buttons .button{background-color:#e03997;background-image:none;color:#fff;text-shadow:none}.ui.pink.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.pink.button:hover,.ui.pink.buttons .button:hover{background-color:#e9168d;color:#fff;text-shadow:none}.ui.pink.button:focus,.ui.pink.buttons .button:focus{background-color:#e80886;color:#fff;text-shadow:none}.ui.pink.button:active,.ui.pink.buttons .button:active{background-color:#c71f7e;color:#fff;text-shadow:none}.ui.pink.active.button,.ui.pink.button .active.button:active,.ui.pink.buttons .active.button,.ui.pink.buttons .active.button:active{background-color:#f0108e;color:#fff;text-shadow:none}.ui.basic.pink.button,.ui.basic.pink.buttons .button{box-shadow:inset 0 0 0 1px #e03997!important;color:#e03997!important}.ui.basic.pink.button:hover,.ui.basic.pink.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #e9168d!important;color:#e9168d!important}.ui.basic.pink.button:focus,.ui.basic.pink.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #e80886!important;color:#e9168d!important}.ui.basic.pink.active.button,.ui.basic.pink.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #f0108e!important;color:#c71f7e!important}.ui.basic.pink.button:active,.ui.basic.pink.buttons .button:active{box-shadow:inset 0 0 0 1px #c71f7e!important;color:#c71f7e!important}.ui.buttons:not(.vertical)>.basic.pink.button:not(:first-child){margin-left:-1px}.ui.inverted.pink.button,.ui.inverted.pink.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #ff8edf!important;color:#ff8edf}.ui.inverted.pink.button.active,.ui.inverted.pink.button:active,.ui.inverted.pink.button:focus,.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button.active,.ui.inverted.pink.buttons .button:active,.ui.inverted.pink.buttons .button:focus,.ui.inverted.pink.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button:hover{background-color:#ff75d8}.ui.inverted.pink.button:focus,.ui.inverted.pink.buttons .button:focus{background-color:#ff65d3}.ui.inverted.pink.active.button,.ui.inverted.pink.buttons .active.button{background-color:#ff75d8}.ui.inverted.pink.button:active,.ui.inverted.pink.buttons .button:active{background-color:#ff5bd1}.ui.inverted.pink.basic.button,.ui.inverted.pink.basic.buttons .button,.ui.inverted.pink.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.pink.basic.button:hover,.ui.inverted.pink.basic.buttons .button:hover,.ui.inverted.pink.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #ff75d8!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:focus,.ui.inverted.pink.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #ff65d3!important;color:#ff8edf!important}.ui.inverted.pink.basic.active.button,.ui.inverted.pink.basic.buttons .active.button,.ui.inverted.pink.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #ff75d8!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:active,.ui.inverted.pink.basic.buttons .button:active,.ui.inverted.pink.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #ff5bd1!important;color:#ff8edf!important}.ui.violet.button,.ui.violet.buttons .button{background-color:#6435c9;background-image:none;color:#fff;text-shadow:none}.ui.violet.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.violet.button:hover,.ui.violet.buttons .button:hover{background-color:#5624c0;color:#fff;text-shadow:none}.ui.violet.button:focus,.ui.violet.buttons .button:focus{background-color:#4c17be;color:#fff;text-shadow:none}.ui.violet.button:active,.ui.violet.buttons .button:active{background-color:#502aa1;color:#fff;text-shadow:none}.ui.violet.active.button,.ui.violet.button .active.button:active,.ui.violet.buttons .active.button,.ui.violet.buttons .active.button:active{background-color:#541fc6;color:#fff;text-shadow:none}.ui.basic.violet.button,.ui.basic.violet.buttons .button{box-shadow:inset 0 0 0 1px #6435c9!important;color:#6435c9!important}.ui.basic.violet.button:hover,.ui.basic.violet.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #5624c0!important;color:#5624c0!important}.ui.basic.violet.button:focus,.ui.basic.violet.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #4c17be!important;color:#5624c0!important}.ui.basic.violet.active.button,.ui.basic.violet.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #541fc6!important;color:#502aa1!important}.ui.basic.violet.button:active,.ui.basic.violet.buttons .button:active{box-shadow:inset 0 0 0 1px #502aa1!important;color:#502aa1!important}.ui.buttons:not(.vertical)>.basic.violet.button:not(:first-child){margin-left:-1px}.ui.inverted.violet.button,.ui.inverted.violet.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #a291fb!important;color:#a291fb}.ui.inverted.violet.button.active,.ui.inverted.violet.button:active,.ui.inverted.violet.button:focus,.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button.active,.ui.inverted.violet.buttons .button:active,.ui.inverted.violet.buttons .button:focus,.ui.inverted.violet.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button:hover{background-color:#8a74ff}.ui.inverted.violet.button:focus,.ui.inverted.violet.buttons .button:focus{background-color:#7d64ff}.ui.inverted.violet.active.button,.ui.inverted.violet.buttons .active.button{background-color:#8a74ff}.ui.inverted.violet.button:active,.ui.inverted.violet.buttons .button:active{background-color:#7860f9}.ui.inverted.violet.basic.button,.ui.inverted.violet.basic.buttons .button,.ui.inverted.violet.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.violet.basic.button:hover,.ui.inverted.violet.basic.buttons .button:hover,.ui.inverted.violet.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #8a74ff!important;color:#a291fb!important}.ui.inverted.violet.basic.button:focus,.ui.inverted.violet.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #7d64ff!important;color:#a291fb!important}.ui.inverted.violet.basic.active.button,.ui.inverted.violet.basic.buttons .active.button,.ui.inverted.violet.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #8a74ff!important;color:#a291fb!important}.ui.inverted.violet.basic.button:active,.ui.inverted.violet.basic.buttons .button:active,.ui.inverted.violet.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #7860f9!important;color:#a291fb!important}.ui.purple.button,.ui.purple.buttons .button{background-color:#a333c8;background-image:none;color:#fff;text-shadow:none}.ui.purple.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.purple.button:hover,.ui.purple.buttons .button:hover{background-color:#9823bf;color:#fff;text-shadow:none}.ui.purple.button:focus,.ui.purple.buttons .button:focus{background-color:#9316bd;color:#fff;text-shadow:none}.ui.purple.button:active,.ui.purple.buttons .button:active{background-color:#82299f;color:#fff;text-shadow:none}.ui.purple.active.button,.ui.purple.button .active.button:active,.ui.purple.buttons .active.button,.ui.purple.buttons .active.button:active{background-color:#9b1dc5;color:#fff;text-shadow:none}.ui.basic.purple.button,.ui.basic.purple.buttons .button{box-shadow:inset 0 0 0 1px #a333c8!important;color:#a333c8!important}.ui.basic.purple.button:hover,.ui.basic.purple.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #9823bf!important;color:#9823bf!important}.ui.basic.purple.button:focus,.ui.basic.purple.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #9316bd!important;color:#9823bf!important}.ui.basic.purple.active.button,.ui.basic.purple.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #9b1dc5!important;color:#82299f!important}.ui.basic.purple.button:active,.ui.basic.purple.buttons .button:active{box-shadow:inset 0 0 0 1px #82299f!important;color:#82299f!important}.ui.buttons:not(.vertical)>.basic.purple.button:not(:first-child){margin-left:-1px}.ui.inverted.purple.button,.ui.inverted.purple.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #dc73ff!important;color:#dc73ff}.ui.inverted.purple.button.active,.ui.inverted.purple.button:active,.ui.inverted.purple.button:focus,.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button.active,.ui.inverted.purple.buttons .button:active,.ui.inverted.purple.buttons .button:focus,.ui.inverted.purple.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button:hover{background-color:#d65aff}.ui.inverted.purple.button:focus,.ui.inverted.purple.buttons .button:focus{background-color:#d24aff}.ui.inverted.purple.active.button,.ui.inverted.purple.buttons .active.button{background-color:#d65aff}.ui.inverted.purple.button:active,.ui.inverted.purple.buttons .button:active{background-color:#cf40ff}.ui.inverted.purple.basic.button,.ui.inverted.purple.basic.buttons .button,.ui.inverted.purple.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.purple.basic.button:hover,.ui.inverted.purple.basic.buttons .button:hover,.ui.inverted.purple.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #d65aff!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:focus,.ui.inverted.purple.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #d24aff!important;color:#dc73ff!important}.ui.inverted.purple.basic.active.button,.ui.inverted.purple.basic.buttons .active.button,.ui.inverted.purple.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #d65aff!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:active,.ui.inverted.purple.basic.buttons .button:active,.ui.inverted.purple.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #cf40ff!important;color:#dc73ff!important}.ui.red.button,.ui.red.buttons .button{background-color:#db2828;background-image:none;color:#fff;text-shadow:none}.ui.red.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.red.button:hover,.ui.red.buttons .button:hover{background-color:#d41616;color:#fff;text-shadow:none}.ui.red.button:focus,.ui.red.buttons .button:focus{background-color:#d10909;color:#fff;text-shadow:none}.ui.red.button:active,.ui.red.buttons .button:active{background-color:#b21e1e;color:#fff;text-shadow:none}.ui.red.active.button,.ui.red.button .active.button:active,.ui.red.buttons .active.button,.ui.red.buttons .active.button:active{background-color:#da1010;color:#fff;text-shadow:none}.ui.basic.red.button,.ui.basic.red.buttons .button{box-shadow:inset 0 0 0 1px #db2828!important;color:#db2828!important}.ui.basic.red.button:hover,.ui.basic.red.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #d41616!important;color:#d41616!important}.ui.basic.red.button:focus,.ui.basic.red.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #d10909!important;color:#d41616!important}.ui.basic.red.active.button,.ui.basic.red.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #da1010!important;color:#b21e1e!important}.ui.basic.red.button:active,.ui.basic.red.buttons .button:active{box-shadow:inset 0 0 0 1px #b21e1e!important;color:#b21e1e!important}.ui.buttons:not(.vertical)>.basic.red.button:not(:first-child){margin-left:-1px}.ui.inverted.red.button,.ui.inverted.red.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #ff695e!important;color:#ff695e}.ui.inverted.red.button.active,.ui.inverted.red.button:active,.ui.inverted.red.button:focus,.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button.active,.ui.inverted.red.buttons .button:active,.ui.inverted.red.buttons .button:focus,.ui.inverted.red.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button:hover{background-color:#ff5145}.ui.inverted.red.button:focus,.ui.inverted.red.buttons .button:focus{background-color:#ff4335}.ui.inverted.red.active.button,.ui.inverted.red.buttons .active.button{background-color:#ff5145}.ui.inverted.red.button:active,.ui.inverted.red.buttons .button:active{background-color:#ff392b}.ui.inverted.red.basic.button,.ui.inverted.red.basic.buttons .button,.ui.inverted.red.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.red.basic.button:hover,.ui.inverted.red.basic.buttons .button:hover,.ui.inverted.red.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #ff5145!important;color:#ff695e!important}.ui.inverted.red.basic.button:focus,.ui.inverted.red.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #ff4335!important;color:#ff695e!important}.ui.inverted.red.basic.active.button,.ui.inverted.red.basic.buttons .active.button,.ui.inverted.red.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #ff5145!important;color:#ff695e!important}.ui.inverted.red.basic.button:active,.ui.inverted.red.basic.buttons .button:active,.ui.inverted.red.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #ff392b!important;color:#ff695e!important}.ui.teal.button,.ui.teal.buttons .button{background-color:#00b5ad;background-image:none;color:#fff;text-shadow:none}.ui.teal.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.teal.button:hover,.ui.teal.buttons .button:hover{background-color:#009c95;color:#fff;text-shadow:none}.ui.teal.button:focus,.ui.teal.buttons .button:focus{background-color:#008c86;color:#fff;text-shadow:none}.ui.teal.button:active,.ui.teal.buttons .button:active{background-color:#00827c;color:#fff;text-shadow:none}.ui.teal.active.button,.ui.teal.button .active.button:active,.ui.teal.buttons .active.button,.ui.teal.buttons .active.button:active{background-color:#009c95;color:#fff;text-shadow:none}.ui.basic.teal.button,.ui.basic.teal.buttons .button{box-shadow:inset 0 0 0 1px #00b5ad!important;color:#00b5ad!important}.ui.basic.teal.button:hover,.ui.basic.teal.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #009c95!important;color:#009c95!important}.ui.basic.teal.button:focus,.ui.basic.teal.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #008c86!important;color:#009c95!important}.ui.basic.teal.active.button,.ui.basic.teal.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #009c95!important;color:#00827c!important}.ui.basic.teal.button:active,.ui.basic.teal.buttons .button:active{box-shadow:inset 0 0 0 1px #00827c!important;color:#00827c!important}.ui.buttons:not(.vertical)>.basic.teal.button:not(:first-child){margin-left:-1px}.ui.inverted.teal.button,.ui.inverted.teal.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #6dffff!important;color:#6dffff}.ui.inverted.teal.button.active,.ui.inverted.teal.button:active,.ui.inverted.teal.button:focus,.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button.active,.ui.inverted.teal.buttons .button:active,.ui.inverted.teal.buttons .button:focus,.ui.inverted.teal.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button:hover{background-color:#54ffff}.ui.inverted.teal.button:focus,.ui.inverted.teal.buttons .button:focus{background-color:#4ff}.ui.inverted.teal.active.button,.ui.inverted.teal.buttons .active.button{background-color:#54ffff}.ui.inverted.teal.button:active,.ui.inverted.teal.buttons .button:active{background-color:#3affff}.ui.inverted.teal.basic.button,.ui.inverted.teal.basic.buttons .button,.ui.inverted.teal.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.teal.basic.button:hover,.ui.inverted.teal.basic.buttons .button:hover,.ui.inverted.teal.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #54ffff!important;color:#6dffff!important}.ui.inverted.teal.basic.button:focus,.ui.inverted.teal.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #4ff!important;color:#6dffff!important}.ui.inverted.teal.basic.active.button,.ui.inverted.teal.basic.buttons .active.button,.ui.inverted.teal.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #54ffff!important;color:#6dffff!important}.ui.inverted.teal.basic.button:active,.ui.inverted.teal.basic.buttons .button:active,.ui.inverted.teal.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #3affff!important;color:#6dffff!important}.ui.olive.button,.ui.olive.buttons .button{background-color:#b5cc18;background-image:none;color:#fff;text-shadow:none}.ui.olive.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.olive.button:hover,.ui.olive.buttons .button:hover{background-color:#a8bf0b;color:#fff;text-shadow:none}.ui.olive.button:focus,.ui.olive.buttons .button:focus{background-color:#a3ba01;color:#fff;text-shadow:none}.ui.olive.button:active,.ui.olive.buttons .button:active{background-color:#8d9e13;color:#fff;text-shadow:none}.ui.olive.active.button,.ui.olive.button .active.button:active,.ui.olive.buttons .active.button,.ui.olive.buttons .active.button:active{background-color:#acc406;color:#fff;text-shadow:none}.ui.basic.olive.button,.ui.basic.olive.buttons .button{box-shadow:inset 0 0 0 1px #b5cc18!important;color:#b5cc18!important}.ui.basic.olive.button:hover,.ui.basic.olive.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #a8bf0b!important;color:#a8bf0b!important}.ui.basic.olive.button:focus,.ui.basic.olive.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #a3ba01!important;color:#a8bf0b!important}.ui.basic.olive.active.button,.ui.basic.olive.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #acc406!important;color:#8d9e13!important}.ui.basic.olive.button:active,.ui.basic.olive.buttons .button:active{box-shadow:inset 0 0 0 1px #8d9e13!important;color:#8d9e13!important}.ui.buttons:not(.vertical)>.basic.olive.button:not(:first-child){margin-left:-1px}.ui.inverted.olive.button,.ui.inverted.olive.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #d9e778!important;color:#d9e778}.ui.inverted.olive.button.active,.ui.inverted.olive.button:active,.ui.inverted.olive.button:focus,.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button.active,.ui.inverted.olive.buttons .button:active,.ui.inverted.olive.buttons .button:focus,.ui.inverted.olive.buttons .button:hover{box-shadow:none!important;color:rgba(0,0,0,.6)}.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button:hover{background-color:#daec59}.ui.inverted.olive.button:focus,.ui.inverted.olive.buttons .button:focus{background-color:#def541}.ui.inverted.olive.active.button,.ui.inverted.olive.buttons .active.button{background-color:#ddf155}.ui.inverted.olive.button:active,.ui.inverted.olive.buttons .button:active{background-color:#cddf4d}.ui.inverted.olive.basic.button,.ui.inverted.olive.basic.buttons .button,.ui.inverted.olive.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.olive.basic.button:hover,.ui.inverted.olive.basic.buttons .button:hover,.ui.inverted.olive.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #daec59!important;color:#d9e778!important}.ui.inverted.olive.basic.button:focus,.ui.inverted.olive.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #def541!important;color:#d9e778!important}.ui.inverted.olive.basic.active.button,.ui.inverted.olive.basic.buttons .active.button,.ui.inverted.olive.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #ddf155!important;color:#d9e778!important}.ui.inverted.olive.basic.button:active,.ui.inverted.olive.basic.buttons .button:active,.ui.inverted.olive.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #cddf4d!important;color:#d9e778!important}.ui.mustard.button,.ui.mustard.buttons .button{background-color:#d7b236;background-image:none;color:#fff;text-shadow:none}.ui.mustard.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.mustard.button:hover,.ui.mustard.buttons .button:hover{background-color:#d7ac1c;color:#fff;text-shadow:none}.ui.mustard.button:focus,.ui.mustard.buttons .button:focus{background-color:#d5a80f;color:#fff;text-shadow:none}.ui.mustard.button:active,.ui.mustard.buttons .button:active{background-color:#b69424;color:#fff;text-shadow:none}.ui.mustard.active.button,.ui.mustard.button .active.button:active,.ui.mustard.buttons .active.button,.ui.mustard.buttons .active.button:active{background-color:#ddb016;color:#fff;text-shadow:none}.ui.basic.mustard.button,.ui.basic.mustard.buttons .button{box-shadow:inset 0 0 0 1px #d7b236!important;color:#d7b236!important}.ui.basic.mustard.button:hover,.ui.basic.mustard.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #d7ac1c!important;color:#d7ac1c!important}.ui.basic.mustard.button:focus,.ui.basic.mustard.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #d5a80f!important;color:#d7ac1c!important}.ui.basic.mustard.active.button,.ui.basic.mustard.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #d5a80f!important;color:#b69424!important}.ui.basic.mustard.button:active,.ui.basic.mustard.buttons .button:active{box-shadow:inset 0 0 0 1px #b69424!important;color:#b69424!important}.ui.buttons:not(.vertical)>.basic.mustard.button:not(:first-child){margin-left:-1px}.ui.inverted.mustard.button,.ui.inverted.mustard.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #d7b236!important;color:#d7b236}.ui.inverted.mustard.button.active,.ui.inverted.mustard.button:active,.ui.inverted.mustard.button:focus,.ui.inverted.mustard.button:hover,.ui.inverted.mustard.buttons .button.active,.ui.inverted.mustard.buttons .button:active,.ui.inverted.mustard.buttons .button:focus,.ui.inverted.mustard.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.mustard.button:hover,.ui.inverted.mustard.buttons .button:hover{background-color:#d7ac1c}.ui.inverted.mustard.button:focus,.ui.inverted.mustard.buttons .button:focus{background-color:#d5a80f}.ui.inverted.mustard.active.button,.ui.inverted.mustard.buttons .active.button{background-color:#ddb016}.ui.inverted.mustard.button:active,.ui.inverted.mustard.buttons .button:active{background-color:#b69424}.ui.inverted.mustard.basic.button,.ui.inverted.mustard.basic.buttons .button,.ui.inverted.mustard.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.mustard.basic.button:hover,.ui.inverted.mustard.basic.buttons .button:hover,.ui.inverted.mustard.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #d7ac1c!important;color:#ffe21f!important}.ui.inverted.mustard.basic.button:focus,.ui.inverted.mustard.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #d5a80f!important;color:#ffe21f!important}.ui.inverted.mustard.basic.active.button,.ui.inverted.mustard.basic.buttons .active.button,.ui.inverted.mustard.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #ddb016!important;color:#ffe21f!important}.ui.inverted.mustard.basic.button:active,.ui.inverted.mustard.basic.buttons .button:active,.ui.inverted.mustard.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #b69424!important;color:#ffe21f!important}.ui.primary.button,.ui.primary.buttons .button{background-color:#2185d0;background-image:none;color:#fff;text-shadow:none}.ui.primary.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.primary.button:hover,.ui.primary.buttons .button:hover{background-color:#1378c5;color:#fff;text-shadow:none}.ui.primary.button:focus,.ui.primary.buttons .button:focus{background-color:#0771c1;color:#fff;text-shadow:none}.ui.primary.button:active,.ui.primary.buttons .button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.primary.active.button,.ui.primary.button .active.button:active,.ui.primary.buttons .active.button,.ui.primary.buttons .active.button:active{background-color:#0d79ca;color:#fff;text-shadow:none}.ui.basic.primary.button,.ui.basic.primary.buttons .button{box-shadow:inset 0 0 0 1px #2185d0!important;color:#2185d0!important}.ui.basic.primary.button:hover,.ui.basic.primary.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #1378c5!important;color:#1378c5!important}.ui.basic.primary.button:focus,.ui.basic.primary.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #0771c1!important;color:#1378c5!important}.ui.basic.primary.active.button,.ui.basic.primary.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #0d79ca!important;color:#1a69a4!important}.ui.basic.primary.button:active,.ui.basic.primary.buttons .button:active{box-shadow:inset 0 0 0 1px #1a69a4!important;color:#1a69a4!important}.ui.inverted.primary.button,.ui.inverted.primary.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #54c8ff!important;color:#54c8ff}.ui.inverted.primary.button.active,.ui.inverted.primary.button:active,.ui.inverted.primary.button:focus,.ui.inverted.primary.button:hover,.ui.inverted.primary.buttons .button.active,.ui.inverted.primary.buttons .button:active,.ui.inverted.primary.buttons .button:focus,.ui.inverted.primary.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.primary.button:hover,.ui.inverted.primary.buttons .button:hover{background-color:#3bc0ff}.ui.inverted.primary.button:focus,.ui.inverted.primary.buttons .button:focus{background-color:#2bbbff}.ui.inverted.primary.active.button,.ui.inverted.primary.buttons .active.button{background-color:#3bc0ff}.ui.inverted.primary.button:active,.ui.inverted.primary.buttons .button:active{background-color:#21b8ff}.ui.inverted.primary.basic.button,.ui.inverted.primary.basic.buttons .button,.ui.inverted.primary.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.primary.basic.button:hover,.ui.inverted.primary.basic.buttons .button:hover,.ui.inverted.primary.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #3bc0ff!important;color:#54c8ff!important}.ui.inverted.primary.basic.button:focus,.ui.inverted.primary.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #2bbbff!important;color:#54c8ff!important}.ui.inverted.primary.basic.active.button,.ui.inverted.primary.basic.buttons .active.button,.ui.inverted.primary.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #3bc0ff!important;color:#54c8ff!important}.ui.inverted.primary.basic.button:active,.ui.inverted.primary.basic.buttons .button:active,.ui.inverted.primary.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #21b8ff!important;color:#54c8ff!important}.ui.secondary.button,.ui.secondary.buttons .button{background-color:#1b1c1d;background-image:none;color:#fff;text-shadow:none}.ui.secondary.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.secondary.button:hover,.ui.secondary.buttons .button:hover{background-color:#23292e;color:#fff;text-shadow:none}.ui.secondary.button:focus,.ui.secondary.buttons .button:focus{background-color:#25303c;color:#fff;text-shadow:none}.ui.secondary.button:active,.ui.secondary.buttons .button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.secondary.active.button,.ui.secondary.button .active.button:active,.ui.secondary.buttons .active.button,.ui.secondary.buttons .active.button:active{background-color:#212930;color:#fff;text-shadow:none}.ui.basic.secondary.button,.ui.basic.secondary.buttons .button{box-shadow:inset 0 0 0 1px #1b1c1d!important;color:#1b1c1d!important}.ui.basic.secondary.button:hover,.ui.basic.secondary.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #23292e!important;color:#23292e!important}.ui.basic.secondary.button:focus,.ui.basic.secondary.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #25303c!important;color:#23292e!important}.ui.basic.secondary.active.button,.ui.basic.secondary.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #212930!important;color:#343637!important}.ui.basic.secondary.button:active,.ui.basic.secondary.buttons .button:active{box-shadow:inset 0 0 0 1px #343637!important;color:#343637!important}.ui.inverted.secondary.button,.ui.inverted.secondary.buttons .button{background-color:transparent;box-shadow:inset 0 0 0 2px #545454!important;color:#545454}.ui.inverted.secondary.button.active,.ui.inverted.secondary.button:active,.ui.inverted.secondary.button:focus,.ui.inverted.secondary.button:hover,.ui.inverted.secondary.buttons .button.active,.ui.inverted.secondary.buttons .button:active,.ui.inverted.secondary.buttons .button:focus,.ui.inverted.secondary.buttons .button:hover{box-shadow:none!important;color:#fff}.ui.inverted.secondary.button:hover,.ui.inverted.secondary.buttons .button:hover{background-color:#6a5757}.ui.inverted.secondary.button:focus,.ui.inverted.secondary.buttons .button:focus{background-color:#7d5454}.ui.inverted.secondary.active.button,.ui.inverted.secondary.buttons .active.button{background-color:#6f5252}.ui.inverted.secondary.button:active,.ui.inverted.secondary.buttons .button:active{background-color:#6e6e6e}.ui.inverted.secondary.basic.button,.ui.inverted.secondary.basic.buttons .button,.ui.inverted.secondary.buttons .basic.button{background-color:transparent;box-shadow:inset 0 0 0 2px hsla(0,0%,100%,.5)!important;color:#fff!important}.ui.inverted.secondary.basic.button:hover,.ui.inverted.secondary.basic.buttons .button:hover,.ui.inverted.secondary.buttons .basic.button:hover{box-shadow:inset 0 0 0 2px #6a5757!important;color:#545454!important}.ui.inverted.secondary.basic.button:focus,.ui.inverted.secondary.basic.buttons .button:focus{box-shadow:inset 0 0 0 2px #7d5454!important;color:#545454!important}.ui.inverted.secondary.basic.active.button,.ui.inverted.secondary.basic.buttons .active.button,.ui.inverted.secondary.buttons .basic.active.button{box-shadow:inset 0 0 0 2px #6f5252!important;color:#545454!important}.ui.inverted.secondary.basic.button:active,.ui.inverted.secondary.basic.buttons .button:active,.ui.inverted.secondary.buttons .basic.button:active{box-shadow:inset 0 0 0 2px #6e6e6e!important;color:#545454!important}.ui.positive.button,.ui.positive.buttons .button{background-color:#21ba45;background-image:none;color:#fff;text-shadow:none}.ui.positive.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.positive.button:hover,.ui.positive.buttons .button:hover{background-color:#13ae38;color:#fff;text-shadow:none}.ui.positive.button:focus,.ui.positive.buttons .button:focus{background-color:#09a92f;color:#fff;text-shadow:none}.ui.positive.button:active,.ui.positive.buttons .button:active{background-color:#198f35;color:#fff;text-shadow:none}.ui.positive.active.button,.ui.positive.button .active.button:active,.ui.positive.buttons .active.button,.ui.positive.buttons .active.button:active{background-color:#0fb335;color:#fff;text-shadow:none}.ui.basic.positive.button,.ui.basic.positive.buttons .button{box-shadow:inset 0 0 0 1px #21ba45!important;color:#21ba45!important}.ui.basic.positive.button:hover,.ui.basic.positive.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #13ae38!important;color:#13ae38!important}.ui.basic.positive.button:focus,.ui.basic.positive.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #09a92f!important;color:#13ae38!important}.ui.basic.positive.active.button,.ui.basic.positive.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #0fb335!important;color:#198f35!important}.ui.basic.positive.button:active,.ui.basic.positive.buttons .button:active{box-shadow:inset 0 0 0 1px #198f35!important;color:#198f35!important}.ui.negative.button,.ui.negative.buttons .button{background-color:#db2828;background-image:none;color:#fff;text-shadow:none}.ui.negative.button{box-shadow:inset 0 0 0 0 rgba(34,36,38,.15)}.ui.negative.button:hover,.ui.negative.buttons .button:hover{background-color:#d41616;color:#fff;text-shadow:none}.ui.negative.button:focus,.ui.negative.buttons .button:focus{background-color:#d10909;color:#fff;text-shadow:none}.ui.negative.button:active,.ui.negative.buttons .button:active{background-color:#b21e1e;color:#fff;text-shadow:none}.ui.negative.active.button,.ui.negative.button .active.button:active,.ui.negative.buttons .active.button,.ui.negative.buttons .active.button:active{background-color:#da1010;color:#fff;text-shadow:none}.ui.basic.negative.button,.ui.basic.negative.buttons .button{box-shadow:inset 0 0 0 1px #db2828!important;color:#db2828!important}.ui.basic.negative.button:hover,.ui.basic.negative.buttons .button:hover{background:transparent!important;box-shadow:inset 0 0 0 1px #d41616!important;color:#d41616!important}.ui.basic.negative.button:focus,.ui.basic.negative.buttons .button:focus{background:transparent!important;box-shadow:inset 0 0 0 1px #d10909!important;color:#d41616!important}.ui.basic.negative.active.button,.ui.basic.negative.buttons .active.button{background:transparent!important;box-shadow:inset 0 0 0 1px #da1010!important;color:#b21e1e!important}.ui.basic.negative.button:active,.ui.basic.negative.buttons .button:active{box-shadow:inset 0 0 0 1px #b21e1e!important;color:#b21e1e!important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.buttons{display:inline-flex;flex-direction:row;font-size:0;margin:0 .25em 0 0;vertical-align:baseline}.ui.buttons:not(.basic):not(.inverted){box-shadow:none}.ui.buttons:after{clear:both;content:".";display:block;height:0;visibility:hidden}.ui.buttons .button{border-radius:0;flex:1 0 auto;margin:0}.ui.buttons:not(.basic):not(.inverted)>.button,.ui.buttons>.ui.button:not(.basic):not(.inverted){box-shadow:inset 0 0 0 1px transparent,inset 0 0 0 0 rgba(34,36,38,.15)}.ui.buttons .button:first-child{border-bottom-left-radius:3px;border-left:none;border-top-left-radius:3px;margin-left:0}.ui.buttons .button:last-child{border-bottom-right-radius:3px;border-top-right-radius:3px}.ui.vertical.buttons{display:inline-flex;flex-direction:column}.ui.vertical.buttons .button{border-radius:0;box-shadow:none;display:block;float:none;margin:0;width:100%}.ui.vertical.buttons .button:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.ui.vertical.buttons .button:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;margin-bottom:0}.ui.vertical.buttons .button:only-child{border-radius:3px}/*! - * # Semantic UI - Flag - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */i.flag:not(.icon){speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden;line-height:11px;margin:0 .5em 0 0;text-decoration:inherit;vertical-align:baseline}i.flag:not(.icon),i.flag:not(.icon):before{display:inline-block;height:11px;width:16px}i.flag:not(.icon):before{background:url(assets/flags-99f63ae7.png) no-repeat -108px -1976px;content:""}i.flag.ad:before,i.flag.andorra:before{background-position:0 0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 -104px}i.flag.al:before,i.flag.albania:before{background-position:0 -130px}i.flag.am:before,i.flag.armenia:before{background-position:0 -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0 -182px}i.flag.angola:before,i.flag.ao:before{background-position:0 -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 -234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 -260px}i.flag.at:before,i.flag.austria:before{background-position:0 -286px}i.flag.au:before,i.flag.australia:before{background-position:0 -312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 -338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 -416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 -442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 -468px}i.flag.be:before,i.flag.belgium:before{background-position:0 -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 -546px}i.flag.bahrain:before,i.flag.bh:before{background-position:0 -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 -598px}i.flag.benin:before,i.flag.bj:before{background-position:0 -624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 -702px}i.flag.br:before,i.flag.brazil:before{background-position:0 -728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 -754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 -780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 -806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 -832px}i.flag.belarus:before,i.flag.by:before{background-position:0 -858px}i.flag.belize:before,i.flag.bz:before{background-position:0 -884px}i.flag.ca:before,i.flag.canada:before{background-position:0 -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 -988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 -1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 -1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 -1170px}i.flag.china:before,i.flag.cn:before{background-position:0 -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 -1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 -1300px}i.flag.cape.verde:before,i.flag.cv:before{background-position:0 -1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 -1404px}i.flag.de:before,i.flag.germany:before{background-position:0 -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 -1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 -1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 -1664px}i.flag.england:before,i.flag.gb.eng:before{background-position:0 -1690px}i.flag.er:before,i.flag.eritrea:before{background-position:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 -1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 -1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 -1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 -1950px}i.flag.fr:before,i.flag.france:before{background-position:0 -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0}i.flag.gb:before,i.flag.uk:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.french.guiana:before,i.flag.gf:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px -416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px -546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.iceland:before,i.flag.is:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px -1144px}i.flag.cayman.islands:before,i.flag.ky:before{background-position:-36px -1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px -1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px -1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px -1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px -1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px -1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px -1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-73px -1821px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px -1821px}i.flag.mauritania:before,i.flag.mr:before{background-position:-36px -1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px -1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px -1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px -1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px -1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px -1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px -26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px -286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px -312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px -338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px -676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px -702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px -728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.gb.sct:before,i.flag.scotland:before{background-position:-72px -1014px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px -1222px}i.flag.san.marino:before,i.flag.sm:before{background-position:-72px -1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px -1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px -1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px -1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px -1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px -1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px -1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px -1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.america:before,i.flag.united.states:before,i.flag.us:before{background-position:-72px -1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px -104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px -156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px -182px}i.flag.gb.wls:before,i.flag.wales:before{background-position:-108px -208px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px -312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px -338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px -364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px -390px}/*! - * # Semantic UI - Icon - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */@font-face{font-family:prc-app-ui;font-style:normal;font-weight:400;src:url(assets/prc-app-ui-10a97e62.eot);src:url(assets/prc-app-ui-10a97e62.eot#iefix) format("embedded-opentype"),url(assets/prc-app-ui-32d8e1d0.woff2) format("woff2"),url(assets/prc-app-ui-163e81ce.woff) format("woff"),url(assets/prc-app-ui-d54befad.ttf) format("truetype"),url(assets/prc-app-ui-a4bdaeb8.svg#prc-app-ui) format("svg")}@font-face{font-family:Icons;font-style:normal;font-weight:400;src:url(assets/prc-app-ui-10a97e62.eot);src:url(assets/prc-app-ui-10a97e62.eot#iefix) format("embedded-opentype"),url(assets/prc-app-ui-32d8e1d0.woff2) format("woff2"),url(assets/prc-app-ui-163e81ce.woff) format("woff"),url(assets/prc-app-ui-d54befad.ttf) format("truetype"),url(assets/prc-app-ui-a4bdaeb8.svg#prc-app-ui) format("svg")}:root{--prc--icon--font-family:"prc-app-ui";--prc--icon--width:$width;--prc--icon--height:$height}i.icon{text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:inline-block;font-family:var(--prc--icon--font-family)!important;font-style:normal!important;font-variant:normal!important;font-weight:400!important;height:var(--prc--icon--height);line-height:1;margin:0 .25rem 0 0;opacity:1;text-align:center;text-decoration:inherit;text-transform:none!important;vertical-align:-.125em!important;width:var(--prc--icon--width)}i.icon:before{background:none!important}i.icon.loading{-webkit-animation:icon-loading 2s linear infinite;animation:icon-loading 2s linear infinite;height:1em;line-height:1}@-webkit-keyframes icon-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes icon-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}i.emphasized.icon,i.icon.active,i.icon.hover{opacity:1!important}i.disabled.icon{opacity:.45!important}i.fitted.icon{margin:0!important;width:auto}i.link.icon,i.link.icons{cursor:pointer;opacity:.8;transition:opacity .1s ease}i.link.icon:hover,i.link.icons:hover{opacity:1!important}i.circular.icon{border-radius:500em!important;box-shadow:inset 0 0 0 .1em rgba(0,0,0,.1);height:2em!important;line-height:1!important;padding:.5em 0!important;width:2em!important}i.circular.inverted.icon{border:none;box-shadow:none}i.flipped.icon,i.horizontally.flipped.icon{-webkit-transform:scaleX(-1);transform:scaleX(-1)}i.vertically.flipped.icon{-webkit-transform:scaleY(-1);transform:scaleY(-1)}i.clockwise.rotated.icon,i.right.rotated.icon,i.rotated.icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}i.counterclockwise.rotated.icon,i.left.rotated.icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}i.bordered.icon{box-shadow:inset 0 0 0 .1em rgba(0,0,0,.1);height:2em;line-height:1;padding:.5em 0!important;vertical-align:baseline;width:2em}i.bordered.inverted.icon{border:none;box-shadow:none}i.inverted.bordered.icon,i.inverted.circular.icon{background-color:#1b1c1d!important;color:#fff!important}i.inverted.icon{color:#fff}i.red.icon{color:#db2828!important}i.inverted.red.icon{color:#ff695e!important}i.inverted.bordered.red.icon,i.inverted.circular.red.icon{background-color:#db2828!important;color:#fff!important}i.orange.icon{color:#f2711c!important}i.inverted.orange.icon{color:#ff851b!important}i.inverted.bordered.orange.icon,i.inverted.circular.orange.icon{background-color:#f2711c!important;color:#fff!important}i.yellow.icon{color:#fbbd08!important}i.inverted.yellow.icon{color:#ffe21f!important}i.inverted.bordered.yellow.icon,i.inverted.circular.yellow.icon{background-color:#fbbd08!important;color:#fff!important}i.olive.icon{color:#b5cc18!important}i.inverted.olive.icon{color:#d9e778!important}i.inverted.bordered.olive.icon,i.inverted.circular.olive.icon{background-color:#b5cc18!important;color:#fff!important}i.green.icon{color:#21ba45!important}i.inverted.green.icon{color:#2ecc40!important}i.inverted.bordered.green.icon,i.inverted.circular.green.icon{background-color:#21ba45!important;color:#fff!important}i.teal.icon{color:#00b5ad!important}i.inverted.teal.icon{color:#6dffff!important}i.inverted.bordered.teal.icon,i.inverted.circular.teal.icon{background-color:#00b5ad!important;color:#fff!important}i.blue.icon{color:#2185d0!important}i.inverted.blue.icon{color:#54c8ff!important}i.inverted.bordered.blue.icon,i.inverted.circular.blue.icon{background-color:#2185d0!important;color:#fff!important}i.violet.icon{color:#6435c9!important}i.inverted.violet.icon{color:#a291fb!important}i.inverted.bordered.violet.icon,i.inverted.circular.violet.icon{background-color:#6435c9!important;color:#fff!important}i.purple.icon{color:#a333c8!important}i.inverted.purple.icon{color:#dc73ff!important}i.inverted.bordered.purple.icon,i.inverted.circular.purple.icon{background-color:#a333c8!important;color:#fff!important}i.pink.icon{color:#e03997!important}i.inverted.pink.icon{color:#ff8edf!important}i.inverted.bordered.pink.icon,i.inverted.circular.pink.icon{background-color:#e03997!important;color:#fff!important}i.brown.icon{color:#a5673f!important}i.inverted.brown.icon{color:#d67c1c!important}i.inverted.bordered.brown.icon,i.inverted.circular.brown.icon{background-color:#a5673f!important;color:#fff!important}i.grey.icon{color:#767676!important}i.inverted.grey.icon{color:#dcddde!important}i.inverted.bordered.grey.icon,i.inverted.circular.grey.icon{background-color:#767676!important;color:#fff!important}i.black.icon{color:#1b1c1d!important}i.inverted.black.icon{color:#545454!important}i.inverted.bordered.black.icon,i.inverted.circular.black.icon{background-color:#1b1c1d!important;color:#fff!important}i.mini.icon,i.mini.icons{font-size:.7857142857rem;line-height:1}i.tiny.icon,i.tiny.icons{font-size:.8571428571rem;line-height:1}i.small.icon,i.small.icons{font-size:.9285714286rem;line-height:1}i.icon,i.icons{font-size:1rem}i.large.icon,i.large.icons{font-size:1.1428571429rem;line-height:1;vertical-align:middle}i.big.icon,i.big.icons{font-size:1.2857142857rem;line-height:1;vertical-align:middle}i.huge.icon,i.huge.icons{font-size:1.4285714286rem;line-height:1;vertical-align:middle}i.massive.icon,i.massive.icons{font-size:1.7142857143rem;line-height:1;vertical-align:middle}i.icons{display:inline-block;line-height:1;position:relative}i.icons .icon{left:50%;margin:0;position:absolute;top:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}i.icons .icon:first-child{height:auto;margin-right:.25rem;position:static;-webkit-transform:none;transform:none;vertical-align:top;width:auto}i.icons .corner.icon{bottom:0;font-size:.45em;left:auto;right:0;text-shadow:-2px 0 #fff,0 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff;top:auto;-webkit-transform:none;transform:none}i.icons .top.right.corner.icon{bottom:auto;left:auto;right:0;top:0}i.icons .top.left.corner.icon{bottom:auto;left:0;right:auto;top:0}i.icons .bottom.left.corner.icon{bottom:0;left:0;right:auto;top:auto}i.icons .bottom.right.corner.icon{bottom:0;left:auto;right:0;top:auto}i.icons .inverted.corner.icon{text-shadow:-2px 0 #1b1c1d,0 0 #1b1c1d,-1px 1px 0 #1b1c1d,1px 1px 0 #1b1c1d}.icon.accessible.icon:before{content:""}.icon.address.book:before{content:""}.icon.address.card:before{content:""}.icon.adjust:before{content:""}.icon.adversal:before{content:""}.icon.align.center:before{content:""}.icon.align.justify:before{content:""}.icon.align.left:before{content:""}.icon.align.right:before{content:""}.icon.amazon:before{content:""}.icon.ambulance:before{content:""}.icon.american.sign.language.interpreting:before{content:""}.icon.anchor:before{content:""}.icon.android:before{content:""}.icon.angle.double.down:before{content:""}.icon.angle.double.left:before{content:""}.icon.angle.double.right:before{content:""}.icon.angle.double.up:before{content:""}.icon.angle.down:before{content:""}.icon.angle.left:before{content:""}.icon.angle.right:before{content:""}.icon.angle.up:before{content:""}.icon.angular:before{content:""}.icon.app.store:before{content:""}.icon.app.store.ios:before{content:""}.icon.apple:before{content:""}.icon.apple.pay:before{content:""}.icon.archive:before{content:""}.icon.arrow.alternate.circle.down:before{content:""}.icon.arrow.alternate.circle.left:before{content:""}.icon.arrow.alternate.circle.right:before{content:""}.icon.arrow.alternate.circle.up:before{content:""}.icon.arrow.circle.down:before{content:""}.icon.arrow.circle.left:before{content:""}.icon.arrow.circle.right:before{content:""}.icon.arrow.circle.up:before{content:""}.icon.arrow.down:before{content:""}.icon.arrow.left:before{content:""}.icon.arrow.right:before{content:""}.icon.arrow.up:before{content:""}.icon.arrows.alternate:before{content:""}.icon.arrows.alternate.h:before{content:""}.icon.arrows.alternate.v:before{content:""}.icon.artstation:before{content:""}.icon.assistive.listening.systems:before{content:""}.icon.asterisk:before{content:""}.icon.at:before{content:""}.icon.atlassian:before{content:""}.icon.audible:before{content:""}.icon.audio.description:before{content:""}.icon.aws:before{content:""}.icon.backward:before{content:""}.icon.balance.scale:before{content:""}.icon.ban:before{content:""}.icon.band.aid:before{content:""}.icon.bandcamp:before{content:""}.icon.barcode:before{content:""}.icon.bars:before{content:""}.icon.baseball.ball:before{content:""}.icon.basketball.ball:before{content:""}.icon.bath:before{content:""}.icon.battery.empty:before{content:""}.icon.battery.full:before{content:""}.icon.battery.half:before{content:""}.icon.battery.quarter:before{content:""}.icon.battery.three.quarters:before{content:""}.icon.bed:before{content:""}.icon.beer:before{content:""}.icon.bell:before{content:""}.icon.bell.slash:before{content:""}.icon.bicycle:before{content:""}.icon.binoculars:before{content:""}.icon.birthday.cake:before{content:""}.icon.bitcoin:before{content:""}.icon.blind:before{content:""}.icon.blogger:before{content:""}.icon.blogger.b:before{content:""}.icon.bluetooth:before{content:""}.icon.bluetooth.b:before{content:""}.icon.bold:before{content:""}.icon.bolt:before{content:""}.icon.bomb:before{content:""}.icon.book:before{content:""}.icon.bookmark:before{content:""}.icon.bootstrap:before{content:""}.icon.bowling.ball:before{content:""}.icon.box:before{content:""}.icon.boxes:before{content:""}.icon.braille:before{content:""}.icon.briefcase:before{content:""}.icon.btc:before{content:""}.icon.buffer:before{content:""}.icon.bug:before{content:""}.icon.building:before{content:""}.icon.bullhorn:before{content:""}.icon.bullseye:before{content:""}.icon.bus:before{content:""}.icon.calculator:before{content:""}.icon.calendar:before{content:""}.icon.calendar.alternate:before{content:""}.icon.calendar.check:before{content:""}.icon.calendar.minus:before{content:""}.icon.calendar.plus:before{content:""}.icon.calendar.times:before{content:""}.icon.camera:before{content:""}.icon.camera.retro:before{content:""}.icon.canadian.maple.leaf:before{content:""}.icon.car:before{content:""}.icon.caret.down:before{content:""}.icon.caret.left:before{content:""}.icon.caret.right:before{content:""}.icon.caret.square.down:before{content:""}.icon.caret.square.left:before{content:""}.icon.caret.square.right:before{content:""}.icon.caret.square.up:before{content:""}.icon.caret.up:before{content:""}.icon.cart.arrow.down:before{content:""}.icon.cart.plus:before{content:""}.icon.cc.amex:before{content:""}.icon.cc.apple.pay:before{content:""}.icon.cc.diners.club:before{content:""}.icon.cc.discover:before{content:""}.icon.cc.jcb:before{content:""}.icon.cc.mastercard:before{content:""}.icon.cc.paypal:before{content:""}.icon.cc.stripe:before{content:""}.icon.cc.visa:before{content:""}.icon.certificate:before{content:""}.icon.chart.area:before{content:""}.icon.chart.bar:before{content:""}.icon.chart.line:before{content:""}.icon.chart.pie:before{content:""}.icon.check:before{content:""}.icon.check.circle:before{content:""}.icon.check.square:before{content:""}.icon.chess:before{content:""}.icon.chess.bishop:before{content:""}.icon.chess.board:before{content:""}.icon.chess.king:before{content:""}.icon.chess.knight:before{content:""}.icon.chess.pawn:before{content:""}.icon.chess.queen:before{content:""}.icon.chess.rook:before{content:""}.icon.chevron.circle.down:before{content:""}.icon.chevron.circle.left:before{content:""}.icon.chevron.circle.right:before{content:""}.icon.chevron.circle.up:before{content:""}.icon.chevron.down:before{content:""}.icon.chevron.left:before{content:""}.icon.chevron.right:before{content:""}.icon.chevron.up:before{content:""}.icon.child:before{content:""}.icon.chrome:before{content:""}.icon.chromecast:before{content:""}.icon.circle:before{content:""}.icon.circle.notch:before{content:""}.icon.clipboard:before{content:""}.icon.clipboard.check:before{content:""}.icon.clipboard.list:before{content:""}.icon.clock:before{content:""}.icon.clone:before{content:""}.icon.close:before{content:""}.icon.closed.captioning:before{content:""}.icon.cloud:before{content:""}.icon.cloud.download.alternate:before{content:""}.icon.cloud.upload.alternate:before{content:""}.icon.cloudflare:before{content:""}.icon.code:before{content:""}.icon.code.branch:before{content:""}.icon.codepen:before{content:""}.icon.coffee:before{content:""}.icon.cog:before{content:""}.icon.cogs:before{content:""}.icon.columns:before{content:""}.icon.comment:before{content:""}.icon.comment.alternate:before{content:""}.icon.comments:before{content:""}.icon.compass:before{content:""}.icon.compress:before{content:""}.icon.confluence:before{content:""}.icon.copy:before{content:""}.icon.copyright:before{content:""}.icon.creative.commons:before{content:""}.icon.creative.commons.by:before{content:""}.icon.creative.commons.nc:before{content:""}.icon.creative.commons.nc.eu:before{content:""}.icon.creative.commons.nc.jp:before{content:""}.icon.creative.commons.nd:before{content:""}.icon.creative.commons.pd:before{content:""}.icon.creative.commons.pd.alternate:before{content:""}.icon.creative.commons.remix:before{content:""}.icon.creative.commons.sa:before{content:""}.icon.creative.commons.sampling:before{content:""}.icon.creative.commons.sampling.plus:before{content:""}.icon.creative.commons.share:before{content:""}.icon.creative.commons.zero:before{content:""}.icon.credit.card:before{content:""}.icon.crop:before{content:""}.icon.crosshairs:before{content:""}.icon.css3:before{content:""}.icon.css3.alternate:before{content:""}.icon.cube:before{content:""}.icon.cubes:before{content:""}.icon.cut:before{content:""}.icon.dailymotion:before{content:""}.icon.database:before{content:""}.icon.deaf:before{content:""}.icon.deezer:before{content:""}.icon.delicious:before{content:""}.icon.desktop:before{content:""}.icon.dev:before{content:""}.icon.digg:before{content:""}.icon.discord:before{content:""}.icon.discourse:before{content:""}.icon.dna:before{content:""}.icon.docker:before{content:""}.icon.dollar.sign:before{content:""}.icon.dolly:before{content:""}.icon.dolly.flatbed:before{content:""}.icon.dot.circle:before{content:""}.icon.download:before{content:""}.icon.dropbox:before{content:""}.icon.edge:before{content:""}.icon.edge.legacy:before{content:""}.icon.edit:before{content:""}.icon.eject:before{content:""}.icon.ellipsis.h:before{content:""}.icon.ellipsis.v:before{content:""}.icon.envelope:before,.icon.mail:before{content:""}.icon.envelope.open:before{content:""}.icon.envelope.square:before{content:""}.icon.eraser:before{content:""}.icon.ethereum:before{content:""}.icon.euro.sign:before{content:""}.icon.evernote:before{content:""}.icon.exchange.alternate:before{content:""}.icon.exclamation:before{content:""}.icon.exclamation.circle:before{content:""}.icon.exclamation.triangle:before{content:""}.icon.expand:before{content:""}.icon.expand.arrows.alternate:before{content:""}.icon.external.link.alternate:before{content:""}.icon.external.link.square.alternate:before{content:""}.icon.eye:before{content:""}.icon.eye.dropper:before{content:""}.icon.eye.slash:before{content:""}.icon.facebook.circle:before,.icon.facebook:before{content:""}.icon.facebook.f:before{content:""}.icon.facebook.messenger:before{content:""}.icon.facebook.square:before{content:""}.icon.fast.backward:before{content:""}.icon.fast.forward:before{content:""}.icon.fax:before{content:""}.icon.female:before{content:""}.icon.fighter.jet:before{content:""}.icon.figma:before{content:""}.icon.file:before{content:""}.icon.file.alternate:before{content:""}.icon.file.archive:before{content:""}.icon.file.audio:before{content:""}.icon.file.code:before{content:""}.icon.file.excel:before{content:""}.icon.file.image:before{content:""}.icon.file.pdf:before{content:""}.icon.file.powerpoint:before{content:""}.icon.file.video:before{content:""}.icon.file.word:before{content:""}.icon.film:before{content:""}.icon.filter:before{content:""}.icon.fire:before{content:""}.icon.fire.extinguisher:before{content:""}.icon.firefox:before{content:""}.icon.firefox.browser:before{content:""}.icon.first.aid:before{content:""}.icon.flag:before{content:""}.icon.flag.checkered:before{content:""}.icon.flask:before{content:""}.icon.flipboard:before{content:""}.icon.folder:before{content:""}.icon.folder.open:before{content:""}.icon.font:before{content:""}.icon.font.awesome.flag:before{content:""}.icon.football.ball:before{content:""}.icon.forward:before{content:""}.icon.frown:before{content:""}.icon.futbol:before{content:""}.icon.gamepad:before{content:""}.icon.gavel:before{content:""}.icon.gem:before{content:""}.icon.genderless:before{content:""}.icon.get.pocket:before{content:""}.icon.gift:before{content:""}.icon.git:before{content:""}.icon.git.alternate:before{content:""}.icon.git.square:before{content:""}.icon.github:before{content:""}.icon.github.alternate:before{content:""}.icon.github.square:before{content:""}.icon.glass.martini:before{content:""}.icon.globe:before{content:""}.icon.golf.ball:before{content:""}.icon.goodreads:before{content:""}.icon.goodreads.g:before{content:""}.icon.google:before{content:""}.icon.google.drive:before{content:""}.icon.google.pay:before{content:""}.icon.google.play:before{content:""}.icon.google.plus:before{content:""}.icon.google.plus.g:before{content:""}.icon.google.plus.square:before{content:""}.icon.google.wallet:before{content:""}.icon.graduation.cap:before{content:""}.icon.gulp:before{content:""}.icon.h.square:before{content:""}.icon.hacker.news:before{content:""}.icon.hacker.news.square:before{content:""}.icon.hand.lizard:before{content:""}.icon.hand.paper:before{content:""}.icon.hand.peace:before{content:""}.icon.hand.point.down:before{content:""}.icon.hand.point.left:before{content:""}.icon.hand.point.right:before{content:""}.icon.hand.point.up:before{content:""}.icon.hand.pointer:before{content:""}.icon.hand.rock:before{content:""}.icon.hand.scissors:before{content:""}.icon.hand.spock:before{content:""}.icon.handshake:before{content:""}.icon.hashtag:before{content:""}.icon.hdd:before{content:""}.icon.heading:before{content:""}.icon.headphones:before{content:""}.icon.heart:before{content:""}.icon.heartbeat:before{content:""}.icon.history:before{content:""}.icon.hockey.puck:before{content:""}.icon.home:before{content:""}.icon.hospital:before{content:""}.icon.hospital.symbol:before{content:""}.icon.hourglass:before{content:""}.icon.hourglass.end:before{content:""}.icon.hourglass.half:before{content:""}.icon.hourglass.start:before{content:""}.icon.html5:before{content:""}.icon.i.cursor:before{content:""}.icon.id.badge:before{content:""}.icon.id.card:before{content:""}.icon.image:before{content:""}.icon.images:before{content:""}.icon.inbox:before{content:""}.icon.indent:before{content:""}.icon.industry:before{content:""}.icon.info:before{content:""}.icon.info.circle:before{content:""}.icon.instagram:before{content:""}.icon.instagram.square:before{content:""}.icon.internet.explorer:before{content:""}.icon.italic:before{content:""}.icon.itunes:before{content:""}.icon.itunes.note:before{content:""}.icon.java:before{content:""}.icon.jira:before{content:""}.icon.js:before{content:""}.icon.js.square:before{content:""}.icon.jsfiddle:before{content:""}.icon.key:before{content:""}.icon.keyboard:before{content:""}.icon.language:before{content:""}.icon.laptop:before{content:""}.icon.laravel:before{content:""}.icon.leaf:before{content:""}.icon.lemon:before{content:""}.icon.less:before{content:""}.icon.level.down.alternate:before{content:""}.icon.level.up.alternate:before{content:""}.icon.life.ring:before{content:""}.icon.lightbulb:before{content:""}.icon.line:before{content:""}.icon.link:before{content:""}.icon.linkedin:before{content:""}.icon.linkedin.in:before{content:""}.icon.linux:before{content:""}.icon.lira.sign:before{content:""}.icon.list:before{content:""}.icon.list.alternate:before{content:""}.icon.list.ol:before{content:""}.icon.list.ul:before{content:""}.icon.location.arrow:before{content:""}.icon.lock:before{content:""}.icon.lock.open:before{content:""}.icon.long.arrow.alternate.down:before{content:""}.icon.long.arrow.alternate.left:before{content:""}.icon.long.arrow.alternate.right:before{content:""}.icon.long.arrow.alternate.up:before{content:""}.icon.low.vision:before{content:""}.icon.magic:before{content:""}.icon.magnet:before{content:""}.icon.mailchimp:before{content:""}.icon.male:before{content:""}.icon.map:before{content:""}.icon.map.marker:before{content:""}.icon.map.marker.alternate:before{content:""}.icon.map.pin:before{content:""}.icon.map.signs:before{content:""}.icon.markdown:before{content:""}.icon.mars:before{content:""}.icon.mars.double:before{content:""}.icon.mars.stroke:before{content:""}.icon.mars.stroke.h:before{content:""}.icon.mars.stroke.v:before{content:""}.icon.medium:before{content:""}.icon.medium.m:before{content:""}.icon.medkit:before{content:""}.icon.meh:before{content:""}.icon.mercury:before{content:""}.icon.microblog:before{content:""}.icon.microchip:before{content:""}.icon.microphone:before{content:""}.icon.microphone.slash:before{content:""}.icon.microsoft:before{content:""}.icon.minus:before{content:""}.icon.minus.circle:before{content:""}.icon.minus.square:before{content:""}.icon.mobile:before{content:""}.icon.mobile.alternate:before{content:""}.icon.money.bill.alternate:before{content:""}.icon.moon:before{content:""}.icon.motorcycle:before{content:""}.icon.mouse.pointer:before{content:""}.icon.music:before{content:""}.icon.napster:before{content:""}.icon.newspaper:before{content:""}.icon.node:before{content:""}.icon.node.js:before{content:""}.icon.npm:before{content:""}.icon.object.group:before{content:""}.icon.object.ungroup:before{content:""}.icon.openid:before{content:""}.icon.opera:before{content:""}.icon.outdent:before{content:""}.icon.outline.address.book:before{content:""}.icon.outline.address.card:before{content:""}.icon.outline.angry:before{content:""}.icon.outline.arrow.alternate.circle.down:before{content:""}.icon.outline.arrow.alternate.circle.left:before{content:""}.icon.outline.arrow.alternate.circle.right:before{content:""}.icon.outline.arrow.alternate.circle.up:before{content:""}.icon.outline.bell:before{content:""}.icon.outline.bell.slash:before{content:""}.icon.outline.bookmark:before{content:""}.icon.outline.building:before{content:""}.icon.outline.calendar:before{content:""}.icon.outline.calendar.alternate:before{content:""}.icon.outline.calendar.check:before{content:""}.icon.outline.calendar.minus:before{content:""}.icon.outline.calendar.plus:before{content:""}.icon.outline.calendar.times:before{content:""}.icon.outline.caret.square.down:before{content:""}.icon.outline.caret.square.left:before{content:""}.icon.outline.caret.square.right:before{content:""}.icon.outline.caret.square.up:before{content:""}.icon.outline.chart.bar:before{content:""}.icon.outline.check.circle:before{content:""}.icon.outline.check.square:before{content:""}.icon.outline.circle:before{content:""}.icon.outline.clipboard:before{content:""}.icon.outline.clock:before{content:""}.icon.outline.clone:before{content:""}.icon.outline.closed.captioning:before{content:""}.icon.outline.comment:before{content:""}.icon.outline.comment.alternate:before{content:""}.icon.outline.comment.dots:before{content:""}.icon.outline.comments:before{content:""}.icon.outline.compass:before{content:""}.icon.outline.copy:before{content:""}.icon.outline.copyright:before{content:""}.icon.outline.credit.card:before{content:""}.icon.outline.dizzy:before{content:""}.icon.outline.dot.circle:before{content:""}.icon.outline.edit:before{content:""}.icon.outline.envelope:before{content:""}.icon.outline.envelope.open:before{content:""}.icon.outline.eye:before{content:""}.icon.outline.eye.slash:before{content:""}.icon.outline.file:before{content:""}.icon.outline.file.alternate:before{content:""}.icon.outline.file.archive:before{content:""}.icon.outline.file.audio:before{content:""}.icon.outline.file.code:before{content:""}.icon.outline.file.excel:before{content:""}.icon.outline.file.image:before{content:""}.icon.outline.file.pdf:before{content:""}.icon.outline.file.powerpoint:before{content:""}.icon.outline.file.video:before{content:""}.icon.outline.file.word:before{content:""}.icon.outline.flag:before{content:""}.icon.outline.flushed:before{content:""}.icon.outline.folder:before{content:""}.icon.outline.folder.open:before{content:""}.icon.outline.frown:before{content:""}.icon.outline.frown.open:before{content:""}.icon.outline.futbol:before{content:""}.icon.outline.gem:before{content:""}.icon.outline.grimace:before{content:""}.icon.outline.grin:before{content:""}.icon.outline.grin.alternate:before{content:""}.icon.outline.grin.beam:before{content:""}.icon.outline.grin.beam.sweat:before{content:""}.icon.outline.grin.hearts:before{content:""}.icon.outline.grin.squint:before{content:""}.icon.outline.grin.squint.tears:before{content:""}.icon.outline.grin.stars:before{content:""}.icon.outline.grin.tears:before{content:""}.icon.outline.grin.tongue:before{content:""}.icon.outline.grin.tongue.squint:before{content:""}.icon.outline.grin.tongue.wink:before{content:""}.icon.outline.grin.wink:before{content:""}.icon.outline.hand.lizard:before{content:""}.icon.outline.hand.paper:before{content:""}.icon.outline.hand.peace:before{content:""}.icon.outline.hand.point.down:before{content:""}.icon.outline.hand.point.left:before{content:""}.icon.outline.hand.point.right:before{content:""}.icon.outline.hand.point.up:before{content:""}.icon.outline.hand.pointer:before{content:""}.icon.outline.hand.rock:before{content:""}.icon.outline.hand.scissors:before{content:""}.icon.outline.hand.spock:before{content:""}.icon.outline.handshake:before{content:""}.icon.outline.hdd:before{content:""}.icon.outline.heart:before{content:""}.icon.outline.hospital:before{content:""}.icon.outline.hourglass:before{content:""}.icon.outline.id.badge:before{content:""}.icon.outline.id.card:before{content:""}.icon.outline.image:before{content:""}.icon.outline.images:before{content:""}.icon.outline.keyboard:before{content:""}.icon.outline.kiss:before{content:""}.icon.outline.kiss.beam:before{content:""}.icon.outline.kiss.wink.heart:before{content:""}.icon.outline.laugh:before{content:""}.icon.outline.laugh.beam:before{content:""}.icon.outline.laugh.squint:before{content:""}.icon.outline.laugh.wink:before{content:""}.icon.outline.lemon:before{content:""}.icon.outline.life.ring:before{content:""}.icon.outline.lightbulb:before{content:""}.icon.outline.list.alternate:before{content:""}.icon.outline.map:before{content:""}.icon.outline.meh:before{content:""}.icon.outline.meh.blank:before{content:""}.icon.outline.meh.rolling.eyes:before{content:""}.icon.outline.minus.circle:before{content:""}.icon.outline.minus.square:before{content:""}.icon.outline.money.bill.alternate:before{content:""}.icon.outline.moon:before{content:""}.icon.outline.newspaper:before{content:""}.icon.outline.object.group:before{content:""}.icon.outline.object.ungroup:before{content:""}.icon.outline.paper.plane:before{content:""}.icon.outline.pause.circle:before{content:""}.icon.outline.play.circle:before{content:""}.icon.outline.plus.circle:before{content:""}.icon.outline.plus.square:before{content:""}.icon.outline.question.circle:before{content:""}.icon.outline.registered:before{content:""}.icon.outline.sad.cry:before{content:""}.icon.outline.sad.tear:before{content:""}.icon.outline.save:before{content:""}.icon.outline.share.square:before{content:""}.icon.outline.smile:before{content:""}.icon.outline.smile.beam:before{content:""}.icon.outline.smile.wink:before{content:""}.icon.outline.snowflake:before{content:""}.icon.outline.square:before{content:""}.icon.outline.star:before{content:""}.icon.outline.star.half:before{content:""}.icon.outline.sticky.note:before{content:""}.icon.outline.stop.circle:before{content:""}.icon.outline.sun:before{content:""}.icon.outline.surprise:before{content:""}.icon.outline.thumbs.down:before{content:""}.icon.outline.thumbs.up:before{content:""}.icon.outline.times.circle:before{content:""}.icon.outline.tired:before{content:""}.icon.outline.trash.alternate:before{content:""}.icon.outline.user:before{content:""}.icon.outline.user.circle:before{content:""}.icon.outline.window.close:before{content:""}.icon.outline.window.maximize:before{content:""}.icon.outline.window.minimize:before{content:""}.icon.outline.window.restore:before{content:""}.icon.paint.brush:before{content:""}.icon.pallet:before{content:""}.icon.paper.plane:before{content:""}.icon.paperclip:before{content:""}.icon.paragraph:before{content:""}.icon.paste:before{content:""}.icon.patreon:before{content:""}.icon.pause:before{content:""}.icon.pause.circle:before{content:""}.icon.paw:before{content:""}.icon.paypal:before{content:""}.icon.pen.square:before{content:""}.icon.pencil.alternate:before{content:""}.icon.percent:before{content:""}.icon.phone:before{content:""}.icon.phone.square:before{content:""}.icon.phone.volume:before{content:""}.icon.php:before{content:""}.icon.pills:before{content:""}.icon.pinterest:before{content:""}.icon.pinterest.p:before{content:""}.icon.pinterest.square:before{content:""}.icon.plane:before{content:""}.icon.play:before{content:""}.icon.play.circle:before{content:""}.icon.plug:before{content:""}.icon.plus:before{content:""}.icon.plus.circle:before{content:""}.icon.plus.square:before{content:""}.icon.podcast:before{content:""}.icon.pound.sign:before{content:""}.icon.power.off:before{content:""}.icon.print:before{content:""}.icon.puzzle.piece:before{content:""}.icon.python:before{content:""}.icon.qrcode:before{content:""}.icon.question:before{content:""}.icon.question.circle:before{content:""}.icon.quora:before{content:""}.icon.quote.left:before{content:""}.icon.quote.right:before{content:""}.icon.r.project:before{content:""}.icon.random:before{content:""}.icon.raspberry.pi:before{content:""}.icon.react:before{content:""}.icon.readme:before{content:""}.icon.recycle:before{content:""}.icon.reddit:before{content:""}.icon.reddit.alien:before{content:""}.icon.reddit.square:before{content:""}.icon.redhat:before{content:""}.icon.redo:before{content:""}.icon.redo.alternate:before{content:""}.icon.registered:before{content:""}.icon.reply:before{content:""}.icon.reply.all:before{content:""}.icon.retweet:before{content:""}.icon.rev:before{content:""}.icon.road:before{content:""}.icon.rocket:before{content:""}.icon.rss:before{content:""}.icon.rss.square:before{content:""}.icon.ruble.sign:before{content:""}.icon.rupee.sign:before{content:""}.icon.safari:before{content:""}.icon.salesforce:before{content:""}.icon.sass:before{content:""}.icon.save:before{content:""}.icon.scribd:before{content:""}.icon.search:before{content:""}.icon.search.minus:before{content:""}.icon.search.plus:before{content:""}.icon.server:before{content:""}.icon.share:before{content:""}.icon.share.alternate:before{content:""}.icon.share.alternate.square:before{content:""}.icon.share.square:before{content:""}.icon.shekel.sign:before{content:""}.icon.shield.alternate:before{content:""}.icon.ship:before{content:""}.icon.shipping.fast:before{content:""}.icon.shopping.bag:before{content:""}.icon.shopping.basket:before{content:""}.icon.shopping.cart:before{content:""}.icon.shower:before{content:""}.icon.sign.in.alternate:before{content:""}.icon.sign.language:before{content:""}.icon.sign.out.alternate:before{content:""}.icon.signal:before{content:""}.icon.sitemap:before{content:""}.icon.sketch:before{content:""}.icon.skype:before{content:""}.icon.slack:before{content:""}.icon.slack.hash:before{content:""}.icon.sliders.h:before{content:""}.icon.slideshare:before{content:""}.icon.snapchat:before{content:""}.icon.snapchat.ghost:before{content:""}.icon.snapchat.square:before{content:""}.icon.snowflake:before{content:""}.icon.sort:before{content:""}.icon.sort.alpha.down:before{content:""}.icon.sort.alpha.up:before{content:""}.icon.sort.amount.down:before{content:""}.icon.sort.amount.up:before{content:""}.icon.sort.down:before{content:""}.icon.sort.numeric.down:before{content:""}.icon.sort.numeric.up:before{content:""}.icon.sort.up:before{content:""}.icon.space.shuttle:before{content:""}.icon.speaker.deck:before{content:""}.icon.spinner:before{content:""}.icon.spotify:before{content:""}.icon.square:before{content:""}.icon.square.full:before{content:""}.icon.stack.exchange:before{content:""}.icon.stack.overflow:before{content:""}.icon.star:before{content:""}.icon.star.half:before{content:""}.icon.step.backward:before{content:""}.icon.step.forward:before{content:""}.icon.stethoscope:before{content:""}.icon.sticky.note:before{content:""}.icon.stop:before{content:""}.icon.stop.circle:before{content:""}.icon.stopwatch:before{content:""}.icon.street.view:before{content:""}.icon.strikethrough:before{content:""}.icon.stripe:before{content:""}.icon.stripe.s:before{content:""}.icon.subscript:before{content:""}.icon.subway:before{content:""}.icon.suitcase:before{content:""}.icon.sun:before{content:""}.icon.superscript:before{content:""}.icon.swift:before{content:""}.icon.sync:before{content:""}.icon.sync.alternate:before{content:""}.icon.syringe:before{content:""}.icon.table:before{content:""}.icon.table.tennis:before{content:""}.icon.tablet:before{content:""}.icon.tablet.alternate:before{content:""}.icon.tachometer.alternate:before{content:""}.icon.tag:before{content:""}.icon.tags:before{content:""}.icon.tasks:before{content:""}.icon.taxi:before{content:""}.icon.telegram:before{content:""}.icon.telegram.plane:before{content:""}.icon.terminal:before{content:""}.icon.text.height:before{content:""}.icon.text.width:before{content:""}.icon.th:before{content:""}.icon.th.large:before{content:""}.icon.th.list:before{content:""}.icon.thermometer:before{content:""}.icon.thermometer.empty:before{content:""}.icon.thermometer.full:before{content:""}.icon.thermometer.half:before{content:""}.icon.thermometer.quarter:before{content:""}.icon.thermometer.three.quarters:before{content:""}.icon.thumbs.down:before{content:""}.icon.thumbs.up:before{content:""}.icon.thumbtack:before{content:""}.icon.ticket.alternate:before{content:""}.icon.tiktok:before{content:""}.icon.remove:before:before,.icon.times:before{content:""}.icon.remove.circle:before,.icon.times.circle:before{content:""}.icon.tint:before{content:""}.icon.toggle.off:before{content:""}.icon.toggle.on:before{content:""}.icon.trademark:before{content:""}.icon.train:before{content:""}.icon.transgender:before{content:""}.icon.transgender.alternate:before{content:""}.icon.trash:before{content:""}.icon.trash.alternate:before{content:""}.icon.tree:before{content:""}.icon.trello:before{content:""}.icon.trophy:before{content:""}.icon.truck:before{content:""}.icon.tty:before{content:""}.icon.tumblr:before{content:""}.icon.tumblr.square:before{content:""}.icon.tv:before{content:""}.icon.twitch:before{content:""}.icon.twitter:before{content:""}.icon.twitter.square:before{content:""}.icon.ubuntu:before{content:""}.icon.umbrella:before{content:""}.icon.underline:before{content:""}.icon.undo:before{content:""}.icon.undo.alternate:before{content:""}.icon.universal.access:before{content:""}.icon.university:before{content:""}.icon.unlink:before{content:""}.icon.unlock:before{content:""}.icon.unlock.alternate:before{content:""}.icon.upload:before{content:""}.icon.usb:before{content:""}.icon.user:before{content:""}.icon.user.circle:before{content:""}.icon.user.md:before{content:""}.icon.user.plus:before{content:""}.icon.user.secret:before{content:""}.icon.user.times:before{content:""}.icon.users:before{content:""}.icon.usps:before{content:""}.icon.utensil.spoon:before{content:""}.icon.utensils:before{content:""}.icon.venus:before{content:""}.icon.venus.double:before{content:""}.icon.venus.mars:before{content:""}.icon.video:before{content:""}.icon.vimeo:before{content:""}.icon.vimeo.square:before{content:""}.icon.vimeo.v:before{content:""}.icon.volleyball.ball:before{content:""}.icon.volume.down:before{content:""}.icon.volume.off:before{content:""}.icon.volume.up:before{content:""}.icon.vuejs:before{content:""}.icon.warehouse:before{content:""}.icon.weibo:before{content:""}.icon.weight:before{content:""}.icon.weixin:before{content:""}.icon.whatsapp:before{content:""}.icon.whatsapp.square:before{content:""}.icon.wheelchair:before{content:""}.icon.wifi:before{content:""}.icon.wikipedia.w:before{content:""}.icon.window.close:before{content:""}.icon.window.maximize:before{content:""}.icon.window.minimize:before{content:""}.icon.window.restore:before{content:""}.icon.windows:before{content:""}.icon.won.sign:before{content:""}.icon.wordpress:before{content:""}.icon.wordpress.simple:before{content:""}.icon.wpforms:before{content:""}.icon.wrench:before{content:""}.icon.yammer:before{content:""}.icon.yarn:before{content:""}.icon.yen.sign:before{content:""}.icon.yoast:before{content:""}.icon.youtube:before{content:""}.icon.youtube.square:before{content:""}/*! - * # Semantic UI - Loader - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.loader{display:none;left:50%;margin:0;position:absolute;text-align:center;top:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);z-index:1000}.ui.loader:before{border:.2em solid rgba(0,0,0,.1);border-radius:500rem}.ui.loader:after,.ui.loader:before{content:"";height:100%;left:50%;position:absolute;top:0;width:100%}.ui.loader:after{-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid transparent;border-radius:500rem;border-top-color:#767676;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.ui.mini.loader:after,.ui.mini.loader:before{height:1rem;margin:0 0 0 -.5rem;width:1rem}.ui.tiny.loader:after,.ui.tiny.loader:before{height:1.1428571429rem;margin:0 0 0 -.5714285714rem;width:1.1428571429rem}.ui.small.loader:after,.ui.small.loader:before{height:1.7142857143rem;margin:0 0 0 -.8571428571rem;width:1.7142857143rem}.ui.loader:after,.ui.loader:before{height:2.2857142857rem;margin:0 0 0 -1.1428571429rem;width:2.2857142857rem}.ui.large.loader:after,.ui.large.loader:before{height:3.4285714286rem;margin:0 0 0 -1.7142857143rem;width:3.4285714286rem}.ui.big.loader:after,.ui.big.loader:before{height:3.7142857143rem;margin:0 0 0 -1.8571428571rem;width:3.7142857143rem}.ui.huge.loader:after,.ui.huge.loader:before{height:4.1428571429rem;margin:0 0 0 -2.0714285714rem;width:4.1428571429rem}.ui.massive.loader:after,.ui.massive.loader:before{height:4.5714285714rem;margin:0 0 0 -2.2857142857rem;width:4.5714285714rem}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:hsla(0,0%,100%,.9)}.ui.dimmer .ui.loader:before{border-color:hsla(0,0%,100%,.15)}.ui.dimmer .ui.loader:after{border-color:#fff transparent transparent}.ui.inverted.dimmer .ui.loader{color:#2a2a2a}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{font-style:normal;height:auto!important;text-align:center;width:auto!important}.ui.indeterminate.loader:after{animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{font-size:.7857142857em;height:1rem;width:1rem}.ui.inverted.dimmer .ui.tiny.loader,.ui.tiny.loader{font-size:.8571428571em;height:1.1428571429rem;width:1.1428571429rem}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{font-size:.9285714286em;height:1.7142857143rem;width:1.7142857143rem}.ui.inverted.dimmer .ui.loader,.ui.loader{font-size:1em;height:2.2857142857rem;width:2.2857142857rem}.ui.inverted.dimmer .ui.large.loader,.ui.large.loader{font-size:1.1428571429em;height:3.4285714286rem;width:3.4285714286rem}.ui.big.loader,.ui.inverted.dimmer .ui.big.loader{font-size:1.2857142857em;height:3.7142857143rem;width:3.7142857143rem}.ui.huge.loader,.ui.inverted.dimmer .ui.huge.loader{font-size:1.4285714286em;height:4.1428571429rem;width:4.1428571429rem}.ui.inverted.dimmer .ui.massive.loader,.ui.massive.loader{font-size:1.7142857143em;height:4.5714285714rem;width:4.5714285714rem}.ui.mini.text.loader{min-width:1rem;padding-top:1.7857142857rem}.ui.tiny.text.loader{min-width:1.1428571429rem;padding-top:1.9285714286rem}.ui.small.text.loader{min-width:1.7142857143rem;padding-top:2.5rem}.ui.text.loader{min-width:2.2857142857rem;padding-top:3.0714285714rem}.ui.large.text.loader{min-width:3.4285714286rem;padding-top:4.2142857143rem}.ui.big.text.loader{min-width:3.7142857143rem;padding-top:4.5rem}.ui.huge.text.loader{min-width:4.1428571429rem;padding-top:4.9285714286rem}.ui.massive.text.loader{min-width:4.5714285714rem;padding-top:5.3571428571rem}.ui.inverted.loader{color:hsla(0,0%,100%,.9)}.ui.inverted.loader:before{border-color:hsla(0,0%,100%,.15)}.ui.inverted.loader:after{border-top-color:#fff}.ui.inline.loader{left:0;margin:0;position:relative;top:0;-webkit-transform:none;transform:none;vertical-align:middle}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}/*! - * # Semantic UI - Loader - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.placeholder{-webkit-animation:placeholderShimmer 2s linear;animation:placeholderShimmer 2s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;background-color:#fff;background-image:linear-gradient(90deg,rgba(0,0,0,.08) 0,rgba(0,0,0,.15) 15%,rgba(0,0,0,.08) 30%);background-size:1200px 100%;max-width:30rem;overflow:hidden;position:static}@-webkit-keyframes placeholderShimmer{0%{background-position:-1200px 0}to{background-position:1200px 0}}@keyframes placeholderShimmer{0%{background-position:-1200px 0}to{background-position:1200px 0}}.ui.placeholder+.ui.placeholder{-webkit-animation-delay:.15s;animation-delay:.15s;margin-top:2rem}.ui.placeholder+.ui.placeholder+.ui.placeholder{-webkit-animation-delay:.3s;animation-delay:.3s}.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder{-webkit-animation-delay:.45s;animation-delay:.45s}.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder{-webkit-animation-delay:.6s;animation-delay:.6s}.ui.placeholder,.ui.placeholder .image.header:after,.ui.placeholder .line,.ui.placeholder .line:after,.ui.placeholder>:before{background-color:#fff}.ui.placeholder .image:not(.header):not(.ui){height:100px}.ui.placeholder .square.image:not(.header){height:0;overflow:hidden;padding-top:100%}.ui.placeholder .rectangular.image:not(.header){height:0;overflow:hidden;padding-top:75%}.ui.placeholder .line{height:.8571428571em;position:relative}.ui.placeholder .line:after,.ui.placeholder .line:before{background-color:inherit;content:"";position:absolute;top:100%}.ui.placeholder .line:before{left:0}.ui.placeholder .line:after{right:0}.ui.placeholder .line{margin-bottom:.5em}.ui.placeholder .line:after,.ui.placeholder .line:before{height:.5em}.ui.placeholder .line:not(:first-child){margin-top:.5em}.ui.placeholder .header{overflow:hidden;position:relative}.ui.placeholder .line:first-child:after{width:0}.ui.placeholder .line:nth-child(2):after{width:50%}.ui.placeholder .line:nth-child(3):after{width:10%}.ui.placeholder .line:nth-child(4):after{width:35%}.ui.placeholder .line:nth-child(5):after{width:65%}.ui.placeholder .header .line{margin-bottom:.6428571429em}.ui.placeholder .header .line:after,.ui.placeholder .header .line:before{height:.6428571429em}.ui.placeholder .header .line:not(:first-child){margin-top:.6428571429em}.ui.placeholder .header .line:after{width:20%}.ui.placeholder .header .line:nth-child(2):after{width:60%}.ui.placeholder .image.header .line{margin-left:3em}.ui.placeholder .image.header .line:before{width:.7142857143rem}.ui.placeholder .image.header:after{content:"";display:block;height:.8571428571em;margin-left:3em}.ui.placeholder .header .line:first-child,.ui.placeholder .image .line:first-child,.ui.placeholder .paragraph .line:first-child{height:.01px}.ui.placeholder .header:not(:first-child):before,.ui.placeholder .image:not(:first-child):before,.ui.placeholder .paragraph:not(:first-child):before{content:"";display:block;height:1.4285714286em}.ui.inverted.placeholder{background-image:linear-gradient(90deg,hsla(0,0%,100%,.08) 0,hsla(0,0%,100%,.14) 15%,hsla(0,0%,100%,.08) 30%)}.ui.inverted.placeholder,.ui.inverted.placeholder .image.header:after,.ui.inverted.placeholder .line,.ui.inverted.placeholder .line:after,.ui.inverted.placeholder>:before{background-color:#1b1c1d}.ui.placeholder .full.line.line.line:after{width:0}.ui.placeholder .very.long.line.line.line:after{width:10%}.ui.placeholder .long.line.line.line:after{width:35%}.ui.placeholder .medium.line.line.line:after{width:50%}.ui.placeholder .short.line.line.line:after{width:65%}.ui.placeholder .very.short.line.line.line:after{width:80%}.ui.fluid.placeholder{max-width:none}/*! - * # Semantic UI - Rail - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.rail{height:100%;position:absolute;top:0;width:300px}.ui.left.rail{left:auto;margin:0 2rem 0 0;padding:0 2rem 0 0;right:100%}.ui.right.rail{left:100%}.ui.left.internal.rail,.ui.right.rail{margin:0 0 0 2rem;padding:0 0 0 2rem;right:auto}.ui.left.internal.rail{left:0}.ui.right.internal.rail{left:auto;margin:0 2rem 0 0;padding:0 2rem 0 0;right:0}.ui.dividing.rail{width:302.5px}.ui.left.dividing.rail{border-right:1px solid rgba(34,36,38,.15);margin:0 2.5rem 0 0;padding:0 2.5rem 0 0}.ui.right.dividing.rail{border-left:1px solid rgba(34,36,38,.15);margin:0 0 0 2.5rem;padding:0 0 0 2.5rem}.ui.close.rail{width:calc(300px + 1em)}.ui.close.left.rail{margin:0 1em 0 0;padding:0 1em 0 0}.ui.close.right.rail{margin:0 0 0 1em;padding:0 0 0 1em}.ui.very.close.rail{width:calc(300px + .5em)}.ui.very.close.left.rail{margin:0 .5em 0 0;padding:0 .5em 0 0}.ui.very.close.right.rail{margin:0 0 0 .5em;padding:0 0 0 .5em}.ui.attached.left.rail,.ui.attached.right.rail{margin:0;padding:0}.ui.mini.rail{font-size:.7857142857rem}.ui.tiny.rail{font-size:.8571428571rem}.ui.small.rail{font-size:.9285714286rem}.ui.rail{font-size:1rem}.ui.large.rail{font-size:1.1428571429rem}.ui.big.rail{font-size:1.2857142857rem}.ui.huge.rail{font-size:1.4285714286rem}.ui.massive.rail{font-size:1.7142857143rem}/*! - * # Semantic UI - Reveal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.reveal{display:inherit;font-size:0!important;position:relative!important}.ui.reveal>.visible.content{left:0!important;position:absolute!important;top:0!important;transition:all .5s ease .1s;z-index:3!important}.ui.reveal>.hidden.content{position:relative!important;z-index:2!important}.ui.active.reveal .visible.content,.ui.reveal:hover .visible.content{z-index:4!important}.ui.slide.reveal{overflow:hidden!important;position:relative!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;float:left;margin:0;transition:-webkit-transform .5s ease .1s;transition:transform .5s ease .1s;transition:transform .5s ease .1s,-webkit-transform .5s ease .1s;white-space:normal;width:100%}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{left:0!important;position:absolute!important;-webkit-transform:translateX(100%)!important;transform:translateX(100%)!important;width:100%!important}.ui.slide.active.reveal>.visible.content,.ui.slide.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.active.reveal>.hidden.content,.ui.slide.reveal:hover>.hidden.content,.ui.slide.right.reveal>.visible.content{-webkit-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.right.reveal>.hidden.content{-webkit-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.slide.right.active.reveal>.visible.content,.ui.slide.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.slide.right.active.reveal>.hidden.content,.ui.slide.right.reveal:hover>.hidden.content{-webkit-transform:translateX(0)!important;transform:translateX(0)!important}.ui.slide.up.reveal>.hidden.content{-webkit-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.up.active.reveal>.visible.content,.ui.slide.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.up.active.reveal>.hidden.content,.ui.slide.up.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;transform:translateY(0)!important}.ui.slide.down.reveal>.hidden.content{-webkit-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.slide.down.active.reveal>.visible.content,.ui.slide.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.slide.down.active.reveal>.hidden.content,.ui.slide.down.reveal:hover>.hidden.content{-webkit-transform:translateY(0)!important;transform:translateY(0)!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.active.reveal>.visible.content,.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.reveal{overflow:hidden!important;position:relative!important;white-space:nowrap}.ui.move.reveal>.content{display:block;float:left;margin:0;transition:-webkit-transform .5s cubic-bezier(.175,.885,.32,1) .1s;transition:transform .5s cubic-bezier(.175,.885,.32,1) .1s;transition:transform .5s cubic-bezier(.175,.885,.32,1) .1s,-webkit-transform .5s cubic-bezier(.175,.885,.32,1) .1s;white-space:normal}.ui.move.reveal>.visible.content{position:relative!important}.ui.move.reveal>.hidden.content{left:0!important;position:absolute!important;width:100%!important}.ui.move.active.reveal>.visible.content,.ui.move.reveal:hover>.visible.content{-webkit-transform:translateX(-100%)!important;transform:translateX(-100%)!important}.ui.move.right.active.reveal>.visible.content,.ui.move.right.reveal:hover>.visible.content{-webkit-transform:translateX(100%)!important;transform:translateX(100%)!important}.ui.move.up.active.reveal>.visible.content,.ui.move.up.reveal:hover>.visible.content{-webkit-transform:translateY(-100%)!important;transform:translateY(-100%)!important}.ui.move.down.active.reveal>.visible.content,.ui.move.down.reveal:hover>.visible.content{-webkit-transform:translateY(100%)!important;transform:translateY(100%)!important}.ui.rotate.reveal>.visible.content{-webkit-transform:rotate(0deg);transform:rotate(0deg);transition-duration:.5s}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{-webkit-transform-origin:bottom right;transform-origin:bottom right}.ui.rotate.active.reveal>.visible.content,.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.active.reveal>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{-webkit-transform:rotate(110deg);transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{-webkit-transform-origin:bottom left;transform-origin:bottom left}.ui.rotate.left.active.reveal>.visible.content,.ui.rotate.left.reveal:hover>.visible.content{-webkit-transform:rotate(-110deg);transform:rotate(-110deg)}.ui.disabled.reveal:hover>.visible.visible.content{bottom:auto!important;display:block!important;left:0!important;opacity:1!important;position:static!important;right:auto!important;top:0!important;-webkit-transform:none!important;transform:none!important}.ui.disabled.reveal:hover>.hidden.hidden.content{display:none!important}.ui.reveal>.ui.ribbon.label{z-index:5}.ui.visible.reveal{overflow:visible}.ui.instant.reveal>.content{transition-delay:0s!important}.ui.reveal>.content{font-size:1rem!important}/*! - * # Semantic UI - Input - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.input{color:#2a2a2a;display:inline-flex;font-style:normal;font-weight:400;position:relative}.ui.input>input{-webkit-tap-highlight-color:rgba(255,255,255,0);background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:5px;box-shadow:none;color:#2a2a2a;flex:1 0 auto;font-family:var(--wp--preset--font-family--sans-serif);line-height:1.0625em;margin:0;max-width:100%;outline:none;padding:.7544642857em 1em;text-align:left;transition:box-shadow .1s ease,border-color .1s ease}.ui.input>input::-webkit-input-placeholder{color:#999;font-size:15px}.ui.input>input::-moz-placeholder{color:#999;font-size:15px}.ui.input>input:-ms-input-placeholder{color:#999;font-size:15px}.ui.disabled.input,.ui.input:not(.disabled) input[disabled]{opacity:.45}.ui.disabled.input>input,.ui.input:not(.disabled) input[disabled]{pointer-events:none}.ui.input.down input,.ui.input>input:active{background:#fafafa;border-color:rgba(0,0,0,.3);box-shadow:none;color:#2a2a2a}.ui.loading.loading.input>i.icon:before{border:.2em solid rgba(0,0,0,.1);border-radius:500rem}.ui.loading.loading.input>i.icon:after,.ui.loading.loading.input>i.icon:before{content:"";height:1.2857142857em;left:50%;margin:-.6428571429em 0 0 -.6428571429em;position:absolute;top:50%;width:1.2857142857em}.ui.loading.loading.input>i.icon:after{-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid transparent;border-radius:500rem;border-top-color:#767676;box-shadow:0 0 0 1px transparent}.ui.input.focus>input,.ui.input>input:focus{background:#fff;border-color:#818181;box-shadow:none;color:rgba(0,0,0,.8)}.ui.input.focus>input::-webkit-input-placeholder,.ui.input>input:focus::-webkit-input-placeholder{color:#9d9d9d}.ui.input.focus>input::-moz-placeholder,.ui.input>input:focus::-moz-placeholder{color:#9d9d9d}.ui.input.focus>input:-ms-input-placeholder,.ui.input>input:focus:-ms-input-placeholder{color:#9d9d9d}.ui.input.error>input{background-color:#fff6f6;border-color:#e0b4b4;box-shadow:none;color:#9f3a38}.ui.input.error>input::-webkit-input-placeholder{color:#e7bdbc}.ui.input.error>input::-moz-placeholder{color:#e7bdbc}.ui.input.error>input:-ms-input-placeholder{color:#e7bdbc!important}.ui.input.error>input:focus::-webkit-input-placeholder{color:#da9796}.ui.input.error>input:focus::-moz-placeholder{color:#da9796}.ui.input.error>input:focus:-ms-input-placeholder{color:#da9796!important}.ui.transparent.input>input{background-color:transparent!important;border-color:transparent!important;border-radius:0!important;box-shadow:none!important;padding:0!important}.ui.transparent.icon.input>i.icon{width:1.1em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:2em!important}.ui.transparent[class*="left icon"].input>input{padding-left:2em!important;padding-right:0!important}.ui.transparent.inverted.input{color:#fff}.ui.transparent.inverted.input>input{color:inherit}.ui.transparent.inverted.input>input::-webkit-input-placeholder{color:hsla(0,0%,100%,.5)}.ui.transparent.inverted.input>input::-moz-placeholder{color:hsla(0,0%,100%,.5)}.ui.transparent.inverted.input>input:-ms-input-placeholder{color:hsla(0,0%,100%,.5)}.ui.icon.input>i.icon{border-radius:0 5px 5px 0;cursor:default;height:100%;line-height:1;margin:0;opacity:.5;position:absolute;right:0;text-align:center;top:0;transition:opacity .3s ease;width:2.6714285714em}.ui.icon.input>i.icon:not(.link){pointer-events:none}.ui.icon.input>input{padding-right:2.6714285714em!important}.ui.icon.input>i.icon:after,.ui.icon.input>i.icon:before{left:0;margin-top:-.5em;position:absolute;text-align:center;top:50%;width:100%}.ui.icon.input>i.link.icon{cursor:pointer}.ui.icon.input>i.circular.icon{right:.5em;top:.35em}.ui[class*="left icon"].input>i.icon{border-radius:5px 0 0 5px;left:1px;right:auto}.ui[class*="left icon"].input>i.circular.icon{left:.5em;right:auto}.ui[class*="left icon"].input>input{padding-left:2.6714285714em!important;padding-right:1em!important}.ui.icon.input>input:focus~i.icon{opacity:1}.ui.labeled.input>.label{flex:0 0 auto;font-size:1em;margin:0}.ui.labeled.input>.label:not(.corner){padding-bottom:.7857142857em;padding-top:.7857142857em}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input{border-bottom-left-radius:0;border-left-color:transparent;border-top-left-radius:0}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input:focus{border-left-color:#818181}.ui[class*="right labeled"].input>input{border-bottom-right-radius:0!important;border-right-color:transparent!important;border-top-right-radius:0!important}.ui[class*="right labeled"].input>input+.label{border-bottom-left-radius:0;border-top-left-radius:0}.ui[class*="right labeled"].input>input:focus{border-right-color:#818181!important}.ui.labeled.input .corner.label{border-radius:0 5px 0 0;font-size:.6428571429em;right:1px;top:1px}.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input>input{padding-right:2.5em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>input{padding-right:3.25em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>.icon{margin-right:1.25em}.ui[class*="left corner labeled"].labeled.input>input{padding-left:2.5em!important}.ui[class*="left corner labeled"].icon.input>input{padding-left:3.25em!important}.ui[class*="left corner labeled"].icon.input>.icon{margin-left:1.25em}.ui.input>.ui.corner.label{right:1px;top:1px}.ui.input>.ui.left.corner.label{left:1px;right:auto}.ui.action.input>.button,.ui.action.input>.buttons{align-items:center;display:flex;flex:0 0 auto}.ui.action.input>.button,.ui.action.input>.buttons>.button{margin:0;padding-bottom:.7857142857em;padding-top:.7857142857em}.ui.action.input:not([class*="left action"])>input{border-radius:0;border-right-color:transparent!important}.ui.action.input:not([class*="left action"])>.button:last-child,.ui.action.input:not([class*="left action"])>.button:not(:first-child),.ui.action.input:not([class*="left action"])>.buttons:last-child>.button,.ui.action.input:not([class*="left action"])>.buttons:not(:first-child)>.button,.ui.action.input:not([class*="left action"])>.dropdown:last-child,.ui.action.input:not([class*="left action"])>.dropdown:not(:first-child){border-radius:0}.ui.action.input:not([class*="left action"])>input:focus{border-right-color:#818181!important}.ui[class*="left action"].input>input{border-left-color:transparent!important;border-radius:0}.ui[class*="left action"].input>.button,.ui[class*="left action"].input>.button:first-child,.ui[class*="left action"].input>.buttons:first-child>.button,.ui[class*="left action"].input>.buttons>.button,.ui[class*="left action"].input>.dropdown,.ui[class*="left action"].input>.dropdown:first-child{border-radius:0}.ui[class*="left action"].input>input:focus{border-left-color:#818181!important}.ui.inverted.input>input{border:none}.ui.fluid.input{display:flex}.ui.mini.input{font-size:.7857142857rem}.ui.small.input{font-size:.8571428571rem}.ui.input{font-size:.9285714286rem}.ui.large.input{font-size:1rem}.ui.big.input{font-size:1.1428571429rem}.ui.huge.input{font-size:1.2857142857rem}.ui.massive.input{font-size:1.4285714286rem}/*! - * # Semantic UI - Image - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */img{height:auto}.wp-block-video a,a[rel*=" wp-att-"],a[rel^=wp-att-]{display:block}.wp-block-video img[class*=" wp-image-"],.wp-block-video img[class^=wp-image-],.wp-block-video>img{margin-bottom:0}.wp-block-video figcaption{color:#6d6e70;font-family:var(--wp--preset--font-family--sans-serif);font-size:13px;line-height:17px;max-width:640px}.size-A1{max-width:564px!important}.size-A2{max-width:268px!important}.size-A3{max-width:194px!important}.size-A4{max-width:268px!important}.size-XL{max-width:720px!important}.size-200-wide{max-width:200px!important}.size-260-wide{max-width:260px!important}.size-310-wide{max-width:310px!important}.size-420-wide{max-width:420px!important}.size-640-wide{max-width:640px!important}.size-740-wide{max-width:740px!important}.size-1400-wide{max-width:1400px!important}.wp-caption{margin-bottom:1.25rem}.wp-caption img[class*=" wp-image-"],.wp-caption img[class^=wp-image-],.wp-caption>img{margin-bottom:0}.wp-caption .wp-caption-text{color:#6d6e70;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9rem;max-width:640px}img[class*=" wp-image-"],img[class^=wp-image-]{height:auto;max-width:100%}img[class*=" wp-image-"].alignleft,img[class*=" wp-image-"].alignright,img[class^=wp-image-].alignleft,img[class^=wp-image-].alignright{clear:both;display:block;margin-left:auto;margin-right:auto}@media only screen and (min-width:767px){img[class*=" wp-image-"].alignleft,img[class*=" wp-image-"].alignright,img[class^=wp-image-].alignleft,img[class^=wp-image-].alignright{display:inline-block}}@media only screen and (min-width:991px){img[class*=" wp-image-"].alignright,img[class^=wp-image-].alignright{clear:right;float:right;margin-bottom:15px;margin-left:15px!important;margin-right:0;margin-top:5px}img[class*=" wp-image-"].alignleft,img[class^=wp-image-].alignleft{clear:left;float:left;margin-bottom:15px;margin-left:0;margin-right:15px!important;margin-top:5px}}.ui.image{background-color:transparent;display:inline-block;max-width:100%;position:relative;vertical-align:middle}img.ui.image{display:block}.ui.image img,.ui.image svg{display:block;height:auto;max-width:100%}.ui.hidden.image,.ui.hidden.images{display:none}.ui.hidden.transition.image,.ui.hidden.transition.images{display:block;visibility:hidden}.ui.images>.hidden.transition{display:inline-block;visibility:hidden}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.45}.ui.inline.image,.ui.inline.image img,.ui.inline.image svg{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.image svg,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.image svg,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.image svg,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image>*,.ui.rounded.images .image,.ui.rounded.images .image>*{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.image svg,.ui.bordered.images .image,.ui.bordered.images img,.ui.bordered.images svg,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.images{overflow:hidden}.ui.circular.image,.ui.circular.image>*,.ui.circular.images .image,.ui.circular.images .image>*{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.image svg,.ui.fluid.images,.ui.fluid.images img,.ui.fluid.images svg{display:block;height:auto;width:100%}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.image svg,.ui.avatar.images .image,.ui.avatar.images img,.ui.avatar.images svg{display:inline-block;margin-right:.25em;width:69px}.ui.spaced.image{display:inline-block!important;margin-left:.5em;margin-right:.5em}.ui[class*="left spaced"].image{margin-left:.5em;margin-right:0}.ui[class*="right spaced"].image{margin-left:0;margin-right:.5em}.ui.image.padded{padding:.3em}.ui.floated.image,.ui.floated.images{float:left;margin-bottom:1em;margin-right:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-bottom:1em;margin-left:1em;margin-right:0}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img,.ui.mini.images svg{font-size:.7857142857rem;height:auto;width:35px}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img,.ui.tiny.images svg{font-size:.8571428571rem;height:auto;width:80px}.ui.small.image,.ui.small.images .image,.ui.small.images img,.ui.small.images svg{font-size:.9285714286rem;height:auto;width:150px}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img,.ui.medium.images svg{font-size:1rem;height:auto;width:300px}.ui.large.image,.ui.large.images .image,.ui.large.images img,.ui.large.images svg{font-size:1.1428571429rem;height:auto;width:450px}.ui.big.image,.ui.big.images .image,.ui.big.images img,.ui.big.images svg{font-size:1.2857142857rem;height:auto;width:600px}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img,.ui.huge.images svg{font-size:1.4285714286rem;height:auto;width:800px}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img,.ui.massive.images svg{font-size:1.7142857143rem;height:auto;width:960px}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images>img,.ui.images>svg{display:inline-block;margin:0 .25rem .5rem}/*! - * # Semantic UI - Label - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.label{background-color:#e8e8e8;background-image:none;border:0 solid transparent;border-radius:.2857142857rem;color:rgba(0,0,0,.6);display:inline-block;font-family:var(--wp--preset--font-family--sans-serif);font-weight:700;line-height:1;margin:0 .1428571429em;padding:.5833em .833em;text-transform:none;transition:background .1s ease;vertical-align:baseline}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}.ui.label>a,a.ui.label{cursor:pointer}.ui.label>a{color:inherit;opacity:.5;transition:opacity .1s ease}.ui.label>a:hover{opacity:1}.ui.label>img{height:2.1666em!important;vertical-align:middle;width:auto!important}.ui.label>.icon{margin:0 .75em 0 0;width:auto}.ui.label>.detail{display:inline-block;font-weight:700;margin-left:1em;opacity:.8;vertical-align:top}.ui.label>.detail .icon{margin:0 .25em 0 0}.ui.label>.close.icon,.ui.label>.delete.icon{cursor:pointer;font-size:.9285714286em;margin-left:.5em;margin-right:0;opacity:.5;transition:background .1s ease}.ui.label>.delete.icon:hover{opacity:1}.ui.labels>.label{margin:0 .5em .5em 0}.ui.header>.ui.label{margin-top:-.29165em}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label+[class*="right floated"]+*,.ui.top.attached.label:first-child+:not(.attached){margin-top:2rem!important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-bottom:2rem!important;margin-top:0}.ui.image.label{background:#e8e8e8;border-radius:.2857142857rem;box-shadow:none;margin-bottom:0;margin-top:0;max-width:9999px;padding:.5833em .833em .5833em .5em;text-transform:none;vertical-align:baseline;width:auto!important}.ui.image.label img{border-radius:.2857142857rem 0 0 .2857142857rem;display:inline-block;height:2.1666em;margin:-.5833em;vertical-align:top}.ui.image.label .detail{background:rgba(0,0,0,.1);border-radius:0 .2857142857rem .2857142857rem 0;margin:-1.9996em .5em;padding:.5833em .833em}.ui.tag.label,.ui.tag.labels .label{border-radius:0 .2857142857rem .2857142857rem 0;margin-left:1em;padding-left:1.5em;padding-right:1.5em;position:relative;transition:none}.ui.tag.label:before,.ui.tag.labels .label:before{background-color:inherit;background-image:none;content:"";height:1.56em;position:absolute;right:100%;top:50%;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg);transition:none;width:1.56em}.ui.tag.label:after,.ui.tag.labels .label:after{background-color:#fff!important;border-radius:500rem;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);content:"";height:.5em;left:-.25em;margin-top:-.25em;position:absolute;top:50%;width:.5em}.ui.corner.label{border-color:#e8e8e8;height:4em;margin:0;padding:0;text-align:center;width:4em;z-index:1}.ui.corner.label,.ui.corner.label:after{background-color:transparent!important;position:absolute;right:0;top:0;transition:border-color .1s ease}.ui.corner.label:after{border-color:transparent;border-right-color:inherit;border-style:solid;border-width:0 4em 4em 0;content:"";height:0;width:0;z-index:-1}.ui.corner.label .icon{cursor:default;font-size:1.1428571429em;left:.7857142857em;margin:0;position:relative;top:.6428571429em}.ui.left.corner.label,.ui.left.corner.label:after{left:0;right:auto}.ui.left.corner.label:after{border-color:transparent;border-style:solid;border-top-color:inherit;border-width:4em 4em 0 0}.ui.left.corner.label .icon{left:-.7857142857em}.ui.segment>.ui.corner.label{right:-1px;top:-1px}.ui.segment>.ui.left.corner.label{left:-1px;right:auto}.ui.ribbon.label{border-color:rgba(0,0,0,.15);border-radius:0 .2857142857rem .2857142857rem 0;margin:0;min-width:-webkit-max-content;min-width:max-content;position:relative}.ui.ribbon.label:after{background-color:transparent!important;border-color:transparent;border-right-color:inherit;border-style:solid;border-width:0 1.2em 1.2em 0;content:"";height:0;left:0;position:absolute;top:100%;width:0}.ui.ribbon.label{left:-1rem-strip-unit(1.2em);margin-right:-1.2em;padding-left:1remstrip-unit(1.2em);padding-right:1.2em}.ui[class*="right ribbon"].label{border-radius:.2857142857rem 0 0 .2857142857rem;left:calc(100% + 1rem + 1.2em);padding-left:1.2em;padding-right:1remstrip-unit(1.2em);text-align:left;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.ui[class*="right ribbon"].label:after{border-color:transparent;border-style:solid;border-top-color:inherit;border-width:1.2em 1.2em 0 0;left:auto;right:0}.ui.card .image>.ribbon.label,.ui.image>.ribbon.label{position:absolute;top:1rem}.ui.card .image>.ui.ribbon.label,.ui.image>.ui.ribbon.label{left:0.05rem-strip-unit(1.2em)}.ui.card .image>.ui[class*="right ribbon"].label,.ui.image>.ui[class*="right ribbon"].label{left:calc(100% - .05rem + 1.2em);padding-left:.833em}.ui.table td>.ui.ribbon.label{left:-1.9857142857em}.ui.table td>.ui[class*="right ribbon"].label{left:calc(100% + 1.98571em);padding-left:.833em}.ui.attached.label,.ui[class*="top attached"].label{border-radius:.2142857143rem .2142857143rem 0 0;left:0;margin:0;padding:.75em 1em;position:absolute;top:0;width:100%}.ui[class*="bottom attached"].label{border-radius:0 0 .2142857143rem .2142857143rem;bottom:0;top:auto}.ui[class*="top left attached"].label{border-radius:.2142857143rem 0 .2857142857rem 0;margin-top:0!important;width:auto}.ui[class*="top right attached"].label{border-radius:0 .2142857143rem 0 .2857142857rem;left:auto;right:0;width:auto}.ui[class*="bottom left attached"].label{border-radius:0 .2857142857rem 0 .2142857143rem;bottom:0;top:auto;width:auto}.ui[class*="bottom right attached"].label{border-radius:.2857142857rem 0 .2142857143rem 0;bottom:0;left:auto;right:0;top:auto;width:auto}.ui.label.disabled{opacity:.5}a.ui.label:hover,a.ui.labels .label:hover{background-color:#e0e0e0;background-image:none;border-color:#e0e0e0;color:rgba(0,0,0,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{color:rgba(0,0,0,.8)}.ui.active.label{border-color:#d0d0d0}.ui.active.label,.ui.active.label:before{background-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.95)}a.ui.active.label:hover,a.ui.labels .active.label:hover{background-color:#c8c8c8;background-image:none;border-color:#c8c8c8;color:rgba(0,0,0,.95)}.ui.labels a.active.label:activehover:before,a.ui.active.label:activehover:before{background-color:#c8c8c8;background-image:none;color:rgba(0,0,0,.95)}.ui.label.visible:not(.dropdown),.ui.labels.visible .label{display:inline-block!important}.ui.label.hidden,.ui.labels.hidden .label{display:none!important}.ui.red.label,.ui.red.labels .label{background-color:#db2828!important;border-color:#db2828!important;color:#fff!important}.ui.red.labels .label:hover,a.ui.red.label:hover{background-color:#d41616!important;border-color:#d41616!important;color:#fff!important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:transparent!important}.ui.red.ribbon.label{border-color:#b21e1e!important}.ui.basic.red.label{background:none #fff!important;border-color:#db2828!important;color:#db2828!important}.ui.basic.red.labels a.label:hover,a.ui.basic.red.label:hover{background-color:#fff!important;border-color:#d41616!important;color:#d41616!important}.ui.orange.label,.ui.orange.labels .label{background-color:#f2711c!important;border-color:#f2711c!important;color:#fff!important}.ui.orange.labels .label:hover,a.ui.orange.label:hover{background-color:#f36101!important;border-color:#f36101!important;color:#fff!important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:transparent!important}.ui.orange.ribbon.label{border-color:#cf590c!important}.ui.basic.orange.label{background:none #fff!important;border-color:#f2711c!important;color:#f2711c!important}.ui.basic.orange.labels a.label:hover,a.ui.basic.orange.label:hover{background-color:#fff!important;border-color:#f36101!important;color:#f36101!important}.ui.yellow.label,.ui.yellow.labels .label{background-color:#fbbd08!important;border-color:#fbbd08!important;color:#fff!important}.ui.yellow.labels .label:hover,a.ui.yellow.label:hover{background-color:#eaae00!important;border-color:#eaae00!important;color:#fff!important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:transparent!important}.ui.yellow.ribbon.label{border-color:#cd9903!important}.ui.basic.yellow.label{background:none #fff!important;border-color:#fbbd08!important;color:#fbbd08!important}.ui.basic.yellow.labels a.label:hover,a.ui.basic.yellow.label:hover{background-color:#fff!important;border-color:#eaae00!important;color:#eaae00!important}.ui.olive.label,.ui.olive.labels .label{background-color:#b5cc18!important;border-color:#b5cc18!important;color:#fff!important}.ui.olive.labels .label:hover,a.ui.olive.label:hover{background-color:#a8bf0b!important;border-color:#a8bf0b!important;color:#fff!important}.ui.olive.corner.label,.ui.olive.corner.label:hover{background-color:transparent!important}.ui.olive.ribbon.label{border-color:#198f35!important}.ui.basic.olive.label{background:none #fff!important;border-color:#b5cc18!important;color:#b5cc18!important}.ui.basic.olive.labels a.label:hover,a.ui.basic.olive.label:hover{background-color:#fff!important;border-color:#a8bf0b!important;color:#a8bf0b!important}.ui.green.label,.ui.green.labels .label{background-color:#21ba45!important;border-color:#21ba45!important;color:#fff!important}.ui.green.labels .label:hover,a.ui.green.label:hover{background-color:#13ae38!important;border-color:#13ae38!important;color:#fff!important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:transparent!important}.ui.green.ribbon.label{border-color:#198f35!important}.ui.basic.green.label{background:none #fff!important;border-color:#21ba45!important;color:#21ba45!important}.ui.basic.green.labels a.label:hover,a.ui.basic.green.label:hover{background-color:#fff!important;border-color:#13ae38!important;color:#13ae38!important}.ui.teal.label,.ui.teal.labels .label{background-color:#00b5ad!important;border-color:#00b5ad!important;color:#fff!important}.ui.teal.labels .label:hover,a.ui.teal.label:hover{background-color:#009c95!important;border-color:#009c95!important;color:#fff!important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:transparent!important}.ui.teal.ribbon.label{border-color:#00827c!important}.ui.basic.teal.label{background:none #fff!important;border-color:#00b5ad!important;color:#00b5ad!important}.ui.basic.teal.labels a.label:hover,a.ui.basic.teal.label:hover{background-color:#fff!important;border-color:#009c95!important;color:#009c95!important}.ui.blue.label,.ui.blue.labels .label{background-color:#2185d0!important;border-color:#2185d0!important;color:#fff!important}.ui.blue.labels .label:hover,a.ui.blue.label:hover{background-color:#1378c5!important;border-color:#1378c5!important;color:#fff!important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:transparent!important}.ui.blue.ribbon.label{border-color:#1a69a4!important}.ui.basic.blue.label{background:none #fff!important;border-color:#2185d0!important;color:#2185d0!important}.ui.basic.blue.labels a.label:hover,a.ui.basic.blue.label:hover{background-color:#fff!important;border-color:#1378c5!important;color:#1378c5!important}.ui.violet.label,.ui.violet.labels .label{background-color:#6435c9!important;border-color:#6435c9!important;color:#fff!important}.ui.violet.labels .label:hover,a.ui.violet.label:hover{background-color:#5624c0!important;border-color:#5624c0!important;color:#fff!important}.ui.violet.corner.label,.ui.violet.corner.label:hover{background-color:transparent!important}.ui.violet.ribbon.label{border-color:#502aa1!important}.ui.basic.violet.label{background:none #fff!important;border-color:#6435c9!important;color:#6435c9!important}.ui.basic.violet.labels a.label:hover,a.ui.basic.violet.label:hover{background-color:#fff!important;border-color:#5624c0!important;color:#5624c0!important}.ui.purple.label,.ui.purple.labels .label{background-color:#a333c8!important;border-color:#a333c8!important;color:#fff!important}.ui.purple.labels .label:hover,a.ui.purple.label:hover{background-color:#9823bf!important;border-color:#9823bf!important;color:#fff!important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:transparent!important}.ui.purple.ribbon.label{border-color:#82299f!important}.ui.basic.purple.label{background:none #fff!important;border-color:#a333c8!important;color:#a333c8!important}.ui.basic.purple.labels a.label:hover,a.ui.basic.purple.label:hover{background-color:#fff!important;border-color:#9823bf!important;color:#9823bf!important}.ui.pink.label,.ui.pink.labels .label{background-color:#e03997!important;border-color:#e03997!important;color:#fff!important}.ui.pink.labels .label:hover,a.ui.pink.label:hover{background-color:#e9168d!important;border-color:#e9168d!important;color:#fff!important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:transparent!important}.ui.pink.ribbon.label{border-color:#c71f7e!important}.ui.basic.pink.label{background:none #fff!important;border-color:#e03997!important;color:#e03997!important}.ui.basic.pink.labels a.label:hover,a.ui.basic.pink.label:hover{background-color:#fff!important;border-color:#e9168d!important;color:#e9168d!important}.ui.brown.label,.ui.brown.labels .label{background-color:#a5673f!important;border-color:#a5673f!important;color:#fff!important}.ui.brown.labels .label:hover,a.ui.brown.label:hover{background-color:#9d592e!important;border-color:#9d592e!important;color:#fff!important}.ui.brown.corner.label,.ui.brown.corner.label:hover{background-color:transparent!important}.ui.brown.ribbon.label{border-color:#805031!important}.ui.basic.brown.label{background:none #fff!important;border-color:#a5673f!important;color:#a5673f!important}.ui.basic.brown.labels a.label:hover,a.ui.basic.brown.label:hover{background-color:#fff!important;border-color:#9d592e!important;color:#9d592e!important}.ui.grey.label:not(.flat),.ui.grey.labels .label:not(.flat){background-color:#767676!important;border-color:#767676!important;color:#fff!important}.ui.grey.label:not(.flat):hover,.ui.grey.labels .label:not(.flat):hover{background-color:#838383!important;border-color:#838383!important;color:#fff!important}.ui.grey.corner.label,.ui.grey.corner.label:hover{background-color:transparent!important}.ui.grey.ribbon.label{border-color:#805031!important}.ui.basic.grey.label{background:none #fff!important;border-color:#767676!important;color:#767676!important}.ui.basic.grey.labels a.label:hover,a.ui.basic.grey.label:hover{background-color:#fff!important;border-color:#838383!important;color:#838383!important}.ui.flat.grey.label,.ui.flat.grey.labels .label{color:#767676!important}.ui.black.label,.ui.black.labels .label{background-color:#1b1c1d!important;border-color:#1b1c1d!important;color:#fff!important}.ui.black.labels .label:hover,a.ui.black.label:hover{background-color:#27292a!important;border-color:#27292a!important;color:#fff!important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:transparent!important}.ui.black.ribbon.label{border-color:#805031!important}.ui.basic.black.label{background:none #fff!important;border-color:#1b1c1d!important;color:#1b1c1d!important}.ui.basic.black.labels a.label:hover,a.ui.basic.black.label:hover{background-color:#fff!important;border-color:#27292a!important;color:#27292a!important}.label.pewresearch{color:#282828}.label.politics,.label.u-s-politics{color:#d1a730}.label.journalism,.label.media-news{color:#733d47}.label.religion{color:#0090bf}.label.hispanic{color:#a55a26}.label.social-trends{color:#377668}.label.internet,.label.internet-tech{color:#069}.label.science{color:#ea9e2c}.label.global{color:#949d48}.label .methodology-report,.label .research-methodology{color:#d1a730}.ui.basic.label.pewresearch{border-color:#282828;color:#282828;font-weight:lighter}.ui.basic.label.politics,.ui.basic.label.u-s-politics{border-color:#d1a730;color:#d1a730;font-weight:lighter}.ui.basic.label.journalism,.ui.basic.label.media-news{border-color:#733d47;color:#733d47;font-weight:lighter}.ui.basic.label.religion{border-color:#0090bf;color:#0090bf;font-weight:lighter}.ui.basic.label.hispanic{border-color:#a55a26;color:#a55a26;font-weight:lighter}.ui.basic.label.social-trends{border-color:#377668;color:#377668;font-weight:lighter}.ui.basic.label.internet,.ui.basic.label.internet-tech{border-color:#069;color:#069;font-weight:lighter}.ui.basic.label.science{border-color:#ea9e2c;color:#ea9e2c;font-weight:lighter}.ui.basic.label.global{border-color:#949d48;color:#949d48;font-weight:lighter}.ui.basic.label .methodology-report,.ui.basic.label .research-methodology{border-color:#d1a730;color:#d1a730;font-weight:lighter}.ui.label:not(.basic).pewresearch{background-color:#282828;border-color:#282828;color:#fff;font-weight:lighter}.ui.label:not(.basic).politics,.ui.label:not(.basic).u-s-politics{background-color:#d1a730;border-color:#d1a730;color:#fff;font-weight:lighter}.ui.label:not(.basic).journalism,.ui.label:not(.basic).media-news{background-color:#733d47;border-color:#733d47;color:#fff;font-weight:lighter}.ui.label:not(.basic).religion{background-color:#0090bf;border-color:#0090bf;color:#fff;font-weight:lighter}.ui.label:not(.basic).hispanic{background-color:#a55a26;border-color:#a55a26;color:#fff;font-weight:lighter}.ui.label:not(.basic).social-trends{background-color:#377668;border-color:#377668;color:#fff;font-weight:lighter}.ui.label:not(.basic).internet,.ui.label:not(.basic).internet-tech{background-color:#069;border-color:#069;color:#fff;font-weight:lighter}.ui.label:not(.basic).science{background-color:#ea9e2c;border-color:#ea9e2c;color:#fff;font-weight:lighter}.ui.label:not(.basic).global{background-color:#949d48;border-color:#949d48;color:#fff;font-weight:lighter}.ui.label:not(.basic) .methodology-report,.ui.label:not(.basic) .research-methodology{background-color:#d1a730;border-color:#d1a730;color:#fff;font-weight:lighter}.ui.basic.label{background:none #fff;border:1px solid rgba(34,36,38,.15);box-shadow:none;color:#2a2a2a}a.ui.basic.label:hover{background:none #fff;box-shadow:1px solid rgba(34,36,38,.15);box-shadow:none;color:#5f94cf;text-decoration:none}.ui.basic.pointing.label:before{border-color:inherit}.ui.flat.label{border:none;color:#2a2a2a}.ui.flat.label,a.ui.flat.label:hover{background:none;box-shadow:none;font-weight:400;margin:0;padding:0}a.ui.flat.label:hover{color:#5f94cf;text-decoration:underline}.ui.fluid.labels>.label,.ui.label.fluid{box-sizing:border-box;width:100%}.ui.inverted.label,.ui.inverted.labels .label{color:hsla(0,0%,100%,.9)!important}.ui.horizontal.label,.ui.horizontal.labels .label{margin:0 .5em 0 0;min-width:3em;padding:.4em .833em;text-align:center}.ui.circular.label,.ui.circular.labels .label{border-radius:500rem;line-height:1em;min-height:2em;min-width:2em;padding:.5em!important;text-align:center}.ui.empty.circular.label,.ui.empty.circular.labels .label{height:.5em;min-height:0;min-width:0;overflow:hidden;vertical-align:baseline;width:.5em}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{background-color:inherit;background-image:inherit;background-image:none;border:0 solid;border-color:inherit;content:"";height:.6666em;position:absolute;-webkit-transform:rotate(45deg);transform:rotate(45deg);transition:background .1s ease;width:.6666em;z-index:2}.ui.pointing.label,.ui[class*="pointing above"].label{margin-top:1em}.ui.pointing.label:before,.ui[class*="pointing above"].label:before{border-width:1px 0 0 1px;left:50%;top:0;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg)}.ui[class*="bottom pointing"].label,.ui[class*="pointing below"].label{margin-bottom:1em;margin-top:0}.ui[class*="bottom pointing"].label:before,.ui[class*="pointing below"].label:before{border-width:0 1px 1px 0;left:50%;right:auto;top:auto;top:100%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg)}.ui[class*="left pointing"].label{margin-left:.6666em;margin-top:0}.ui[class*="left pointing"].label:before{border-width:0 0 1px 1px;bottom:auto;left:0;right:auto;top:50%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg)}.ui[class*="right pointing"].label{margin-right:.6666em;margin-top:0}.ui[class*="right pointing"].label:before{border-width:1px 1px 0 0;bottom:auto;left:auto;right:0;top:50%;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg)}.ui.basic.pointing.label:before,.ui.basic[class*="pointing above"].label:before{margin-top:-1px}.ui.basic[class*="bottom pointing"].label:before,.ui.basic[class*="pointing below"].label:before{bottom:auto;margin-top:1px;top:100%}.ui.basic[class*="left pointing"].label:before{left:-1px;top:50%}.ui.basic[class*="right pointing"].label:before{right:-1px;top:50%}.ui.floating.label{left:100%;margin:0 0 0 -1.5em!important;position:absolute;top:-1em;z-index:100}.ui.mini.label,.ui.mini.labels .label{font-size:.6428571429rem}.ui.tiny.label,.ui.tiny.labels .label{font-size:.7142857143rem}.ui.small.label,.ui.small.labels .label{font-size:.7857142857rem}.ui.label,.ui.labels .label{font-size:.8571428571rem}.ui.large.label,.ui.large.labels .label{font-size:1rem}.ui.big.label,.ui.big.labels .label{font-size:1.2857142857rem}.ui.huge.label,.ui.huge.labels .label{font-size:1.4285714286rem}.ui.massive.label,.ui.massive.labels .label{font-size:1.7142857143rem}/*! - * # Semantic UI - Segment - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.segment{background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);font-family:var(--wp--preset--font-family--sans-serif);margin:1rem 0;min-width:250px;padding:1em;position:relative}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.segment:not(.aligncenter),.ui.segment:not(.alignleft),.ui.segment:not(.alignright),.ui.segment:not(.alignwide){clear:both}.ui.segment .embedded_chart{border-bottom:0;border-top:0;margin-bottom:0;padding:0}.ui.vertical.segment{background:none transparent;border:none;border-bottom:1px solid rgba(34,36,38,.15);border-radius:0;box-shadow:none;margin:0;padding-left:0;padding-right:0}.ui.vertical.segment:last-child{border-bottom:none}.ui.inverted.segment:not(.beige)>.ui.header{color:#fff}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.grid>.row>.ui.segment.column,.ui.grid>.ui.segment.column,.ui.page.grid.segment{padding-bottom:2em;padding-top:2em}.ui.grid.segment{border-radius:0;margin:1rem 0}.ui.basic.table.segment{background:#fff;border:1px solid rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui[class*="very basic"].table.segment{padding:1em}.ui.placeholder.segment{align-items:stretch;-webkit-animation:none;animation:none;background:#f9fafb;border-color:rgba(34,36,38,.15);box-shadow:inset 0 2px 25px 0 rgba(34,36,38,.05);display:flex;flex-direction:column;justify-content:center;max-width:none;min-height:18rem;overflow:visible;padding:1em}.ui.placeholder.segment .button,.ui.placeholder.segment textarea{display:block}.ui.placeholder.segment .button,.ui.placeholder.segment .column .button,.ui.placeholder.segment .column .field,.ui.placeholder.segment .column textarea,.ui.placeholder.segment .column>.ui.input,.ui.placeholder.segment .field,.ui.placeholder.segment textarea,.ui.placeholder.segment>.ui.input{margin-left:auto;margin-right:auto;max-width:15rem}.ui.placeholder.segment>.inline{align-self:center}.ui.placeholder.segment>.inline>.button{display:inline-block;margin:0 .3571428571rem 0 0;width:auto}.ui.placeholder.segment>.inline>.button:last-child{margin-right:0}.ui.piled.segment,.ui.piled.segments{box-shadow:"";margin:3em 0;z-index:auto}.ui.piled.segment:first-child{margin-top:0}.ui.piled.segment:last-child{margin-bottom:0}.ui.piled.segment:after,.ui.piled.segment:before,.ui.piled.segments:after,.ui.piled.segments:before{background-color:#fff;border:1px solid rgba(34,36,38,.15);box-shadow:"";content:"";display:block;height:100%;left:0;position:absolute;visibility:visible;width:100%}.ui.piled.segment:before,.ui.piled.segments:before{top:0;-webkit-transform:rotate(-1.2deg);transform:rotate(-1.2deg);z-index:-2}.ui.piled.segment:after,.ui.piled.segments:after{top:0;-webkit-transform:rotate(1.2deg);transform:rotate(1.2deg);z-index:-1}.ui[class*="top attached"].piled.segment{margin-bottom:0;margin-top:3em}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0}.ui.piled.segment[class*="bottom attached"]{margin-bottom:3em;margin-top:0}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segment:after,.ui.stacked.segment:before,.ui.stacked.segments:after,.ui.stacked.segments:before{background:rgba(0,0,0,.03);border-top:1px solid rgba(34,36,38,.15);bottom:-3px;content:"";height:6px;left:0;position:absolute;visibility:visible;width:100%}.ui.stacked.segment:before,.ui.stacked.segments:before{display:none}.ui.tall.stacked.segment:before,.ui.tall.stacked.segments:before{bottom:0;display:block}.ui.stacked.inverted.segment:after,.ui.stacked.inverted.segment:before,.ui.stacked.inverted.segments:after,.ui.stacked.inverted.segments:before{background-color:rgba(0,0,0,.03);border-top:1px solid rgba(34,36,38,.35)}.ui.padded.segment{padding:1.5em}.ui[class*="very padded"].segment{padding:3em}.ui.padded.segment.vertical.segment,.ui[class*="very padded"].vertical.segment{padding-left:0;padding-right:0}.ui.compact.segment{display:table}.ui.compact.segments{display:inline-flex}.ui.compact.segments .segment,.ui.segments .compact.segment{display:block;flex:0 1 auto}.ui.circular.segment{border-radius:500em;display:table-cell;padding:2em;text-align:center;vertical-align:middle}.ui.raised.segment,.ui.raised.segments{box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.inset-arrow.segment{background:#e7e8e9;box-shadow:inset 0 6px 10px -8px;padding:2rem;text-align:center}.ui.inset-arrow.segment:before{background:#fff;box-shadow:2px 2px 0 0 #bbb;content:"";display:block;height:26px;left:50%;margin-left:-13px;margin-top:-3rem;position:absolute;transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);width:26px}.ui.segments{border:1px solid rgba(34,36,38,.15);border-radius:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);flex-direction:column;margin:1rem 0;position:relative}.ui.segments:first-child{margin-top:0}.ui.segments:last-child{margin-bottom:0}.ui.segments>.segment{border:none;border-radius:0;border-top:1px solid rgba(34,36,38,.15);bottom:0;box-shadow:none;margin:0;top:0;width:auto}.ui.segments:not(.horizontal)>.segment:first-child{border-radius:0 0 0 0;border-top:none;bottom:0;margin-bottom:0;margin-top:0;top:0}.ui.segments:not(.horizontal)>.segment:last-child{border-radius:0 0 0 0;bottom:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;margin-bottom:0;margin-top:0;top:0}.ui.segments:not(.horizontal)>.segment:only-child{border-radius:0}.ui.segments>.ui.segments{border-top:1px solid rgba(34,36,38,.15);margin:1rem}.ui.segments>.segments:first-child{border-top:none}.ui.segments>.segment+.segments:not(.horizontal){margin-top:0}.ui.horizontal.segments{background-color:transparent;background-color:#fff;border:1px solid rgba(34,36,38,.15);border-radius:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);display:flex;flex-direction:row;margin:1rem 0;padding:0}.ui.segments>.horizontal.segments{border:none;border-top:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments>.segment,.ui.segments>.horizontal.segments{background-color:transparent;border-radius:0;box-shadow:none;margin:0}.ui.horizontal.segments>.segment{border:none;border-left:1px solid rgba(34,36,38,.15);flex:1 1 auto;-ms-flex:1 1 0px;min-width:0}.ui.segments>.horizontal.segments:first-child{border-top:none}.ui.horizontal.segments>.segment:first-child{border-left:none}.ui.disabled.segment{color:rgba(0,0,0,.2);opacity:.45}.ui.loading.segment{color:transparent!important;cursor:default;pointer-events:none;position:relative;text-shadow:none!important;transition:all 0s linear}.ui.loading.segment:before{background:hsla(0,0%,100%,.8);border-radius:0;content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:100}.ui.loading.segment:after{-webkit-animation:segment-spin .6s linear;animation:segment-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid rgba(0,0,0,.1);border-radius:500rem;border-top-color:#767676;box-shadow:0 0 0 1px transparent;content:"";height:1.2857142857em;left:50%;margin:-.6428571429em 0 0 -.6428571429em;position:absolute;top:50%;visibility:visible;width:1.2857142857em;z-index:101}@-webkit-keyframes segment-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes segment-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.ui.basic.segment{background:none transparent;border:none;border-radius:0;box-shadow:none}.ui.very.basic.segment{padding:0}.ui.clearing.segment:after{clear:both;content:".";display:block;height:0;visibility:hidden}.ui.red.segment:not(.inverted){border-top:2px solid #db2828!important}.ui.inverted.red.segment{background-color:#db2828!important;color:#fff!important}.ui.orange.segment:not(.inverted){border-top:2px solid #f2711c!important}.ui.inverted.orange.segment{background-color:#f2711c!important;color:#fff!important}.ui.yellow.segment:not(.inverted){border-top:2px solid #fbbd08!important}.ui.inverted.yellow.segment{background-color:#fbbd08!important;color:#fff!important}.ui.olive.segment:not(.inverted){border-top:2px solid #b5cc18!important}.ui.inverted.olive.segment{background-color:#b5cc18!important;color:#fff!important}.ui.green.segment:not(.inverted){border-top:2px solid #21ba45!important}.ui.inverted.green.segment{background-color:#21ba45!important;color:#fff!important}.ui.teal.segment:not(.inverted){border-top:2px solid #00b5ad!important}.ui.inverted.teal.segment{background-color:#00b5ad!important;color:#fff!important}.ui.blue.segment:not(.inverted){border-top:2px solid #2185d0!important}.ui.inverted.blue.segment{background-color:#2185d0!important;color:#fff!important}.ui.violet.segment:not(.inverted){border-top:2px solid #6435c9!important}.ui.inverted.violet.segment{background-color:#6435c9!important;color:#fff!important}.ui.purple.segment:not(.inverted){border-top:2px solid #a333c8!important}.ui.inverted.purple.segment{background-color:#a333c8!important;color:#fff!important}.ui.pink.segment:not(.inverted){border-top:2px solid #e03997!important}.ui.inverted.pink.segment{background-color:#e03997!important;color:#fff!important}.ui.brown.segment:not(.inverted){border-top:2px solid #a5673f!important}.ui.inverted.brown.segment{background-color:#a5673f!important;color:#fff!important}.ui.grey.segment:not(.inverted){border-top:2px solid #767676!important}.ui.inverted.grey.segment{background-color:#efefef!important;border:1px solid #dadbdb;color:#1b1c1d!important}.ui.black.segment:not(.inverted){border-top:2px solid #1b1c1d!important}.ui.inverted.black.segment{background-color:#1b1c1d!important;color:#fff!important}.ui.oatmeal.segment:not(.inverted){border-top:2px solid #ecece3!important}.ui.inverted.oatmeal.segment{background:#ecece3!important;border:0!important;color:#1b1c1d}.ui.beige.segment:not(.inverted){border-top:2px solid #b7b8af!important}.ui.inverted.beige.segment{background:#f7f7f1!important;border-bottom:none!important;border-left:none!important;border-right:none!important;color:#1b1c1d}.ui.inverted.beige.segment .header{color:inherit!important}.ui.inverted.beige.segment .content{color:#6b6b6b}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1em}.ui[class*="right floated"].segment{float:right;margin-left:1em}div[data-align=left]>.ui.segment,div[data-align=right]>.ui.segment{max-width:270px}.ui.inverted.segment:not(.inverted.beige){border:none}.ui.inverted.segment{box-shadow:none}.ui.inverted.segment,.ui.primary.inverted.segment{background:#1b1c1d;color:hsla(0,0%,100%,.9)}.ui.inverted.segment .segment{color:#2a2a2a}.ui.inverted.segment .inverted.segment{color:hsla(0,0%,100%,.9)}.ui.inverted.attached.segment{border-color:#555}.ui.secondary.segment{background:#f3f4f5;color:rgba(0,0,0,.6)}.ui.secondary.inverted.segment{background:#4c4f52 linear-gradient(hsla(0,0%,100%,.2),hsla(0,0%,100%,.2));color:hsla(0,0%,100%,.8)}.ui.tertiary.segment{background:#dcddde;color:rgba(0,0,0,.6)}.ui.tertiary.inverted.segment{background:#717579 linear-gradient(hsla(0,0%,100%,.35),hsla(0,0%,100%,.35));color:hsla(0,0%,100%,.8)}.ui.attached.segment{border:1px solid #d4d4d5;border-radius:0;bottom:0;box-shadow:none;margin:0 -1px;max-width:calc(100% + 2px);top:0;width:calc(100% + 2px)}.ui.attached:not(.message)+.ui.attached.segment:not(.top){border-top:none}.ui[class*="top attached"].segment{border-radius:0 0 0 0;bottom:0;margin-bottom:0;margin-top:1rem;top:0}.ui.segment[class*="top attached"]:first-child{margin-top:0}.ui.segment[class*="bottom attached"]{border-radius:0 0 0 0;bottom:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;margin-bottom:1rem;margin-top:0;top:0}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.segment.size-200,.ui.segment.size-310,.ui.segment.size-420,.ui.segment.size-640{width:100%}.ui.segment.size-200{max-width:200px!important}.ui.segment.size-310{max-width:310px!important}.ui.segment.size-420{max-width:420px!important}.ui.segment.size-640{max-width:640px!important}.ui.mini.segment,.ui.mini.segments .segment{font-size:.7857142857rem}.ui.tiny.segment,.ui.tiny.segments .segment{font-size:.8571428571rem}.ui.small.segment,.ui.small.segments .segment{font-size:.9285714286rem}.ui.segment,.ui.segments .segment{font-size:1rem}.ui.large.segment,.ui.large.segments .segment{font-size:1.1428571429rem}.ui.big.segment,.ui.big.segments .segment{font-size:1.2857142857rem}.ui.huge.segment,.ui.huge.segments .segment{font-size:1.4285714286rem}.ui.massive.segment,.ui.massive.segments .segment{font-size:1.7142857143rem}/*! - * # Semantic UI - Breadcrumb - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */#breadcrumbs{padding-bottom:1em}#breadcrumbs .ui.breadcrumb{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.ui.breadcrumb{display:inline-block;font-family:var(--wp--preset--font-family--sans-serif);font-size:15px;line-height:1;margin:0;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb>.hidden{display:none!important}.ui.breadcrumb .divider{color:rgba(0,0,0,.4);display:inline-block;font-size:.9285714286em;margin:0 .2142857143rem;opacity:.7;vertical-align:baseline}.ui.breadcrumb a{color:#346ead}.ui.breadcrumb a:hover{color:#5f94cf}.ui.breadcrumb .icon.divider{font-size:.8571428571em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.7857142857em 1em}.ui.breadcrumb .active.section{font-weight:700}/*! - * # Semantic UI - Form - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.form{max-width:100%;position:relative}.ui.form.gform{display:flex;flex-direction:row}.ui.form.gform .ginput_container,.ui.form.gform li.gfield{margin-top:0}.ui.form.gform .ginput_container>input{width:100%}.ui.form.gform .gform_footer{margin:0;padding:0}.ui.form.gform input[type=submit]{background:#000;color:#fff;font-size:1rem!important;margin-left:.5rem;padding-bottom:.4rem;padding-top:.4rem}.ui.form>p{margin:1em 0}.ui.form .field{clear:both;margin:0 0 1em}.ui.form .field:last-child,.ui.form .fields:last-child .field{margin-bottom:0}.ui.form .fields .field{clear:both;margin:0}.ui.form .field>label{color:#2a2a2a;display:block;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:700;margin:0 0 .2857142857rem;text-transform:none}.ui.form input:not([type]),.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=email],.ui.form input[type=file],.ui.form input[type=number],.ui.form input[type=password],.ui.form input[type=search],.ui.form input[type=tel],.ui.form input[type=text],.ui.form input[type=time],.ui.form input[type=url],.ui.form textarea{vertical-align:top;width:100%}.ui.form ::-webkit-datetime-edit,.ui.form ::-webkit-inner-spin-button{height:1.0625em}.ui.form input:not([type]),.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=email],.ui.form input[type=file],.ui.form input[type=number],.ui.form input[type=password],.ui.form input[type=search],.ui.form input[type=tel],.ui.form input[type=text],.ui.form input[type=time],.ui.form input[type=url]{tap-highlight-color:hsla(0,0%,100%,0);-webkit-appearance:none;background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;box-shadow:inset 0 0 0 0 transparent;color:#2a2a2a;font-family:var(--wp--preset--font-family--sans-serif);font-size:1em;line-height:1.0625em;margin:0;outline:none;padding:.7544642857em 1em;transition:color .1s ease,border-color .1s ease}.ui.form textarea{tap-highlight-color:hsla(0,0%,100%,0);-webkit-appearance:none;background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;box-shadow:inset 0 0 0 0 transparent;color:#2a2a2a;font-size:1em;line-height:1.2857;margin:0;outline:none;padding:.7857142857em 1em;resize:vertical;transition:color .1s ease,border-color .1s ease}.ui.form textarea:not([rows]){height:12em;max-height:24em;min-height:8em}.ui.form input[type=checkbox],.ui.form textarea{vertical-align:top}.ui.form input.attached{width:auto}.ui.form select{background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;box-shadow:inset 0 0 0 0 transparent;color:#2a2a2a;display:block;height:auto;padding:.62em 1em;transition:color .1s ease,border-color .1s ease;width:100%}.ui.form .field>.selection.dropdown{width:100%}.ui.form .field>.selection.dropdown>.dropdown.icon{float:right}.ui.form .inline.field>.selection.dropdown,.ui.form .inline.fields .field>.selection.dropdown{width:auto}.ui.form .inline.field>.selection.dropdown>.dropdown.icon,.ui.form .inline.fields .field>.selection.dropdown>.dropdown.icon{float:none}.ui.form .field .ui.input,.ui.form .fields .field .ui.input,.ui.form .wide.field .ui.input{width:100%}.ui.form .inline.field:not(.wide) .ui.input,.ui.form .inline.fields .field:not(.wide) .ui.input{vertical-align:middle;width:auto}.ui.form .field .ui.input input,.ui.form .fields .field .ui.input input{width:auto}.ui.form .eight.fields .ui.input input,.ui.form .five.fields .ui.input input,.ui.form .four.fields .ui.input input,.ui.form .nine.fields .ui.input input,.ui.form .seven.fields .ui.input input,.ui.form .six.fields .ui.input input,.ui.form .ten.fields .ui.input input,.ui.form .three.fields .ui.input input,.ui.form .two.fields .ui.input input,.ui.form .wide.field .ui.input input{flex:1 0 auto;width:0}.ui.form .error.message,.ui.form .success.message,.ui.form .warning.message{display:none}.ui.form .message:first-child{margin-top:0}.ui.form .field .prompt.label{background:#fff!important;border:1px solid #e0b4b4!important;color:#9f3a38!important;white-space:normal}.ui.form .inline.field .prompt,.ui.form .inline.fields .field .prompt{margin:-.25em 0 -.5em .5em;vertical-align:top}.ui.form .inline.field .prompt:before,.ui.form .inline.fields .field .prompt:before{border-width:0 0 1px 1px;bottom:auto;left:0;right:auto;top:50%}.ui.form .field.field input:-webkit-autofill{border-color:#e5dfa1!important;box-shadow:inset 0 0 0 100px ivory!important}.ui.form .field.field input:-webkit-autofill:focus{border-color:#d5c315!important;box-shadow:inset 0 0 0 100px ivory!important}.ui.form .error.error input:-webkit-autofill{border-color:#e0b4b4!important;box-shadow:inset 0 0 0 100px #fffaf0!important}.ui.form ::-webkit-input-placeholder{color:#999}.ui.form :-ms-input-placeholder{color:#999!important}.ui.form ::-moz-placeholder{color:#999}.ui.form :focus::-webkit-input-placeholder{color:#9d9d9d}.ui.form :focus:-ms-input-placeholder{color:#9d9d9d!important}.ui.form :focus::-moz-placeholder{color:#9d9d9d}.ui.form .error ::-webkit-input-placeholder{color:#e7bdbc}.ui.form .error :-ms-input-placeholder{color:#e7bdbc!important}.ui.form .error ::-moz-placeholder{color:#e7bdbc}.ui.form .error :focus::-webkit-input-placeholder{color:#da9796}.ui.form .error :focus:-ms-input-placeholder{color:#da9796!important}.ui.form .error :focus::-moz-placeholder{color:#da9796}.ui.form input:not([type]):focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=email]:focus,.ui.form input[type=file]:focus,.ui.form input[type=number]:focus,.ui.form input[type=password]:focus,.ui.form input[type=search]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=text]:focus,.ui.form input[type=time]:focus,.ui.form input[type=url]:focus,.ui.form textarea:focus{background:#fff;border-color:#818181;border-radius:.2857142857rem;box-shadow:inset 0 0 0 0 rgba(34,36,38,.35);color:rgba(0,0,0,.95)}.ui.form textarea:focus{-webkit-appearance:none}.ui.form.success .success.message:not(:empty){display:block}.ui.form.success .compact.success.message:not(:empty){display:inline-block}.ui.form.success .icon.success.message:not(:empty){display:flex}.ui.form.warning .warning.message:not(:empty){display:block}.ui.form.warning .compact.warning.message:not(:empty){display:inline-block}.ui.form.warning .icon.warning.message:not(:empty){display:flex}.ui.form.error .error.message:not(:empty){display:block}.ui.form.error .compact.error.message:not(:empty){display:inline-block}.ui.form.error .icon.error.message:not(:empty){display:flex}.ui.form .field.error .input,.ui.form .field.error label,.ui.form .fields.error .field .input,.ui.form .fields.error .field label{color:#9f3a38}.ui.form .field.error .corner.label,.ui.form .fields.error .field .corner.label{border-color:#9f3a38;color:#fff}.ui.form .field.error input:not([type]),.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=email],.ui.form .field.error input[type=file],.ui.form .field.error input[type=number],.ui.form .field.error input[type=password],.ui.form .field.error input[type=search],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=text],.ui.form .field.error input[type=time],.ui.form .field.error input[type=url],.ui.form .field.error select,.ui.form .field.error textarea,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=file],.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=url],.ui.form .fields.error .field select,.ui.form .fields.error .field textarea{background:#fff6f6;border-color:#e0b4b4;border-radius:"";box-shadow:none;color:#9f3a38}.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=file]:focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=url]:focus,.ui.form .field.error select:focus,.ui.form .field.error textarea:focus{-webkit-appearance:none;background:#fff6f6;border-color:#e0b4b4;box-shadow:none;color:#9f3a38}.ui.form .field.error select{-webkit-appearance:menulist-button}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown .item,.ui.form .field.error .ui.dropdown .text,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown .item{background:#fff6f6;color:#9f3a38}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown:hover,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown:hover{border-color:#e0b4b4!important}.ui.form .field.error .ui.dropdown:hover .menu,.ui.form .fields.error .field .ui.dropdown:hover .menu{border-color:#e0b4b4}.ui.form .field.error .ui.multiple.selection.dropdown>.label,.ui.form .fields.error .field .ui.multiple.selection.dropdown>.label{background-color:#eacbcb;color:#9f3a38}.ui.form .field.error .ui.dropdown .menu .item:hover,.ui.form .field.error .ui.dropdown .menu .selected.item,.ui.form .fields.error .field .ui.dropdown .menu .item:hover,.ui.form .fields.error .field .ui.dropdown .menu .selected.item{background-color:#fbe7e7}.ui.form .field.error .ui.dropdown .menu .active.item,.ui.form .fields.error .field .ui.dropdown .menu .active.item{background-color:#fdcfcf!important}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label{color:#9f3a38}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before{background:#fff6f6;border-color:#e0b4b4}.ui.form .field.error .checkbox .box:after,.ui.form .field.error .checkbox label:after,.ui.form .fields.error .field .checkbox .box:after,.ui.form .fields.error .field .checkbox label:after{color:#9f3a38}.ui.form .disabled.field,.ui.form .disabled.fields .field,.ui.form .field :disabled{opacity:.45;pointer-events:none}.ui.form .field.disabled>label,.ui.form .fields.disabled>label{opacity:.45}.ui.form .field.disabled :disabled{opacity:1}.ui.loading.form{cursor:default;pointer-events:none;position:relative}.ui.loading.form:before{background:hsla(0,0%,100%,.8);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:100}.ui.loading.form:after{-webkit-animation:form-spin .6s linear;animation:form-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid rgba(0,0,0,.1);border-radius:500rem;border-top-color:#767676;box-shadow:0 0 0 1px transparent;content:"";height:3em;left:50%;margin:-.6428571429em 0 0 -.6428571429em;position:absolute;top:50%;visibility:visible;width:3em;z-index:101}@-webkit-keyframes form-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes form-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.ui.form .required.field>.checkbox:after,.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>label:after{color:#db2828;content:"*";margin:-.2em 0 0 .2em}.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>label:after{display:inline-block;vertical-align:top}.ui.form .required.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after{left:100%;position:absolute;top:0}.ui.form .inverted.segment .ui.checkbox .box,.ui.form .inverted.segment .ui.checkbox label,.ui.form .inverted.segment label,.ui.inverted.form .inline.field>label,.ui.inverted.form .inline.field>p,.ui.inverted.form .inline.fields .field>label,.ui.inverted.form .inline.fields .field>p,.ui.inverted.form .inline.fields>label,.ui.inverted.form .ui.checkbox .box,.ui.inverted.form .ui.checkbox label,.ui.inverted.form label{color:hsla(0,0%,100%,.9)}.ui.inverted.form input:not([type]),.ui.inverted.form input[type=date],.ui.inverted.form input[type=datetime-local],.ui.inverted.form input[type=email],.ui.inverted.form input[type=file],.ui.inverted.form input[type=number],.ui.inverted.form input[type=password],.ui.inverted.form input[type=search],.ui.inverted.form input[type=tel],.ui.inverted.form input[type=text],.ui.inverted.form input[type=time],.ui.inverted.form input[type=url]{background:#fff;border-color:hsla(0,0%,100%,.1);box-shadow:none;color:#2a2a2a}.ui.form .grouped.fields{display:block;margin:0 0 1em}.ui.form .grouped.fields:last-child{margin-bottom:0}.ui.form .grouped.fields>label{color:#2a2a2a;font-size:.9285714286rem;font-weight:700;margin:0 0 .2857142857rem;text-transform:none}.ui.form .grouped.fields .field,.ui.form .grouped.inline.fields .field{display:block;margin:.5em 0;padding:0}.ui.form .fields{display:flex;flex-direction:row;margin:-.5em 1em}.ui.form .fields>.field{flex:0 1 auto;padding-left:.5em;padding-right:.5em}.ui.form .fields>.field:first-child{border-left:none;box-shadow:none}.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:50%}.ui.form .three.fields>.field,.ui.form .three.fields>.fields{width:33.3333333333%}.ui.form .four.fields>.field,.ui.form .four.fields>.fields{width:25%}.ui.form .five.fields>.field,.ui.form .five.fields>.fields{width:20%}.ui.form .six.fields>.field,.ui.form .six.fields>.fields{width:16.6666666667%}.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields{width:14.2857142857%}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields{width:12.5%}.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields{width:11.1111111111%}.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields{width:10%}@media only screen and (max-width:767px){.ui.form .fields{flex-wrap:wrap}.ui.form:not(.unstackable) .eight.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .eight.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .nine.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .nine.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .seven.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .seven.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .six.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .six.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .ten.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .ten.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable)>.field,.ui[class*="equal width"].form:not(.unstackable) .fields>.field{margin:0 0 1em;width:100%!important}}.ui.form .fields .wide.field{padding-left:.5em;padding-right:.5em;width:6.25%}.ui.form .one.wide.field{width:6.25%!important}.ui.form .two.wide.field{width:12.5%!important}.ui.form .three.wide.field{width:18.75%!important}.ui.form .four.wide.field{width:25%!important}.ui.form .five.wide.field{width:31.25%!important}.ui.form .six.wide.field{width:37.5%!important}.ui.form .seven.wide.field{width:43.75%!important}.ui.form .eight.wide.field{width:50%!important}.ui.form .nine.wide.field{width:56.25%!important}.ui.form .ten.wide.field{width:62.5%!important}.ui.form .eleven.wide.field{width:68.75%!important}.ui.form .twelve.wide.field{width:75%!important}.ui.form .thirteen.wide.field{width:81.25%!important}.ui.form .fourteen.wide.field{width:87.5%!important}.ui.form .fifteen.wide.field{width:93.75%!important}.ui.form .sixteen.wide.field{width:100%!important}@media only screen and (max-width:767px){.ui.form:not(.unstackable) .fields:not(.unstackable)>.eight.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.eleven.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.fifteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.five.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.four.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.fourteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.nine.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.seven.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.six.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.sixteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.ten.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.thirteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.three.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.twelve.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.two.wide.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.fields{width:100%!important}.ui.form .fields{margin-bottom:0}}.ui.form [class*="equal width"].fields>.field,.ui[class*="equal width"].form .fields>.field{flex:1 1 auto;width:100%}.ui.form .inline.fields{align-items:center;margin:0 0 1em}.ui.form .inline.fields .field{margin:0;padding:0 1em 0 0}.ui.form .inline.field>label,.ui.form .inline.field>p,.ui.form .inline.fields .field>label,.ui.form .inline.fields .field>p,.ui.form .inline.fields>label{color:#2a2a2a;display:inline-block;font-size:.9285714286rem;font-weight:700;margin-bottom:0;margin-top:0;text-transform:none;vertical-align:baseline;width:auto}.ui.form .inline.fields>label{margin:.035714em 1em 0 0}.ui.form .inline.field>input,.ui.form .inline.field>select,.ui.form .inline.fields .field>input,.ui.form .inline.fields .field>select{display:inline-block;font-size:1em;margin-bottom:0;margin-top:0;vertical-align:middle;width:auto}.ui.form .inline.field>:first-child,.ui.form .inline.fields .field>:first-child{margin:0 .8571428571em 0 0}.ui.form .inline.field>:only-child,.ui.form .inline.fields .field>:only-child{margin:0}.ui.form .inline.fields .wide.field{align-items:center;display:flex}.ui.form .inline.fields .wide.field>input,.ui.form .inline.fields .wide.field>select{width:100%}.ui.mini.form{font-size:.7857142857rem}.ui.tiny.form{font-size:.8571428571rem}.ui.small.form{font-size:.9285714286rem}.ui.form{font-size:1rem}.ui.large.form{font-size:1.1428571429rem}.ui.big.form{font-size:1.2857142857rem}.ui.huge.form{font-size:1.4285714286rem}.ui.massive.form{font-size:1.7142857143rem}.prc-block-area[data-block-area-location=menu] nav.is-style-text .ui.menu:not(.vertical)>.item:first-child{padding-left:0}@media only screen and (max-width:767px){.prc-block-area .ui.menu:not(.vertical){overflow-x:overlay}}.ui.menu{background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);display:flex;font-family:var(--wp--preset--font-family--sans-serif);font-weight:400;margin:1rem 0;min-height:2.8571428571em}.ui.menu:after{clear:both;content:"";display:block;height:0;visibility:hidden}.ui.menu:first-child{margin-top:0}.ui.menu:last-child{margin-bottom:0}.ui.menu .menu{margin:0}.ui.menu:not(.vertical)>.menu{display:flex}.ui.menu:not(.vertical) .block-list-appender.wp-block,.ui.menu:not(.vertical) .item{align-items:center;display:flex}.ui.menu .item{text-transform:capitalize}.ui.menu .block-list-appender.wp-block,.ui.menu .item,.ui.menu .wp-block-navigation-link{-webkit-tap-highlight-color:rgba(0,0,0,0);background:none;color:#2a2a2a;flex:0 0 auto;font-weight:400;line-height:1;padding:.9285714286em 1.1428571429em;position:relative;text-decoration:none;transition:background .1s ease,box-shadow .1s ease,color .1s ease;-webkit-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.ui.menu .block-list-appender.wp-block:before,.ui.menu .item:before,.ui.menu .wp-block-navigation-link:before{background:rgba(34,36,38,.1);content:"";height:100%;position:absolute;right:0;top:0;width:1px}.ui.menu .wp-block-navigation-link a{color:#000;text-decoration:none}.ui.menu .wp-block-navigation-link a:visited{color:#000}.ui.menu>.item:first-child,.ui.menu>.wp-block-navigation__container>.wp-block-navigation-link:first-child{border-radius:0 0 0 0}.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child,.ui.menu .text.item>*{line-height:1.3;-webkit-user-select:text;-ms-user-select:text;user-select:text}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{float:none;margin:0 .3571428571em 0 0;opacity:.9}.ui.menu:not(.vertical) .item>.button{font-size:1em;margin:-.5em 0;padding-bottom:.7857142857em;padding-top:.7857142857em;position:relative;top:0}.ui.menu>.container,.ui.menu>.grid{align-items:inherit;display:flex;flex-direction:inherit}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{margin:-.5em 0;position:relative;top:0}.ui.menu .item>.input input{font-size:1em;padding-bottom:.5714285714em;padding-top:.5714285714em}.ui.menu .header.item,.ui.vertical.menu .header.item{background:"";font-weight:700;margin:0;text-transform:normal}.ui.vertical.menu .item>.header:not(.ui){font-size:1em;font-weight:700;margin:0 0 .5em}.ui.menu .item>i.dropdown.icon{float:right;margin:0 0 0 1em;padding:0}.ui.menu .dropdown.item .menu{background:#fff;border-radius:0 0 0 0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);flex-direction:column!important;margin:0;min-width:calc(100% - 1px)}.ui.menu .ui.dropdown .menu>.item{background:transparent!important;box-shadow:none!important;color:#2a2a2a!important;font-size:1em!important;font-weight:400!important;margin:0;padding:.7857142857em 1.1428571429em!important;text-align:left;text-transform:none!important;transition:none!important}.ui.menu .ui.dropdown .menu>.item:hover,.ui.menu .ui.dropdown .menu>.selected.item{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.menu .ui.dropdown .menu>.active.item{background:rgba(0,0,0,.03)!important;color:rgba(0,0,0,.95)!important;font-weight:700!important}.ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}.ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;float:none;font-size:1em!important;margin:0 .75em 0 0!important}.ui.secondary.menu .dropdown.item>.menu,.ui.text.menu .dropdown.item>.menu{border-radius:0;margin-top:.3571428571em}.ui.menu .pointing.dropdown.item .menu{margin-top:.75em}.ui.inverted.menu .search.dropdown.item>.search,.ui.inverted.menu .search.dropdown.item>.text{color:hsla(0,0%,100%,.9)}.ui.vertical.menu .dropdown.item>.icon{content:"";float:right;margin-left:1em}.ui.vertical.menu .dropdown.item .menu{border-radius:0 0 0 0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);left:100%;margin:0;min-width:0}.ui.vertical.menu .dropdown.item.upward .menu{bottom:0}.ui.vertical.menu .dropdown.item:not(.upward) .menu{top:0}.ui.vertical.menu .active.dropdown.item{border-bottom-right-radius:0;border-top-right-radius:0}.ui.vertical.menu .dropdown.active.item{box-shadow:none}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{margin-left:1em}.ui.menu .item>.label,.ui.vertical.menu .item>.label{background:#999;color:#fff;padding:.3em .7857142857em}.ui.vertical.menu .item>.label{margin-bottom:-.15em;margin-top:-.15em}.ui.menu .item>.floating.label{padding:.3em .7857142857em}.ui.menu .item>img:not(.ui){display:inline-block;margin:-.3em 0;vertical-align:middle;width:2.5em}.ui.vertical.menu .item>img:not(.ui):only-child{display:block;max-width:100%;width:auto}.ui.menu .list .item:before{background:none!important}.ui.vertical.sidebar.menu>.item:first-child:before{display:block!important}.ui.vertical.sidebar.menu>.item:before{bottom:0;top:auto}@media only screen and (max-width:767px){.ui.menu>.ui.container{margin-left:0!important;margin-right:0!important;width:100%!important}}@media only screen and (min-width:768px){.ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless)>.container>.item:not(.right):not(.borderless):first-child{border-left:1px solid rgba(34,36,38,.1)}}.ui.link.menu .item:hover,.ui.menu .dropdown.item:hover,.ui.menu .link.item:hover,.ui.menu a.item:hover{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95);cursor:pointer}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.menu .active.item,.wp-block-navigation .wp-block-navigation-link.current-menu-item{background:rgba(0,0,0,.05);box-shadow:none;color:rgba(0,0,0,.95);font-weight:400}.ui.menu .active.item>i.icon,.wp-block-navigation .wp-block-navigation-link.current-menu-item>i.icon{opacity:1}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover,.wp-block-navigation .wp-block-navigation-link.current-menu-item:hover{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{background-color:transparent!important;color:rgba(0,0,0,.2)!important;cursor:default!important}.ui.relaxed.menu{margin-bottom:24px;margin-top:24px}.ui.menu:not(.vertical) .left.item,.ui.menu:not(.vertical) :not(.dropdown)>.left.menu{display:flex;margin-right:auto!important}.ui.menu:not(.vertical) .right.item,.ui.menu:not(.vertical) .right.menu{display:flex;margin-left:auto!important}.ui.menu .right.item:before,.ui.menu .right.menu>.item:before{left:0;right:auto}.ui.vertical.menu{background:#fff;box-shadow:0 1px 2px 0 rgba(34,36,38,.15);display:block;flex-direction:column}.ui.vertical.menu .item{background:none;border-right:none;border-top:none;display:block}.ui.vertical.menu>.item:first-child,.ui.vertical.menu>.item:last-child{border-radius:0 0 0 0}.ui.vertical.menu .item>.label{float:right;text-align:center}.ui.vertical.menu .item>i.icon{float:right;margin:0 0 0 .5em;width:1.18em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0 .5em 0 0}.ui.vertical.menu .item:before{background:rgba(34,36,38,.1);content:"";height:1px;left:0;position:absolute;top:0;width:100%}.ui.vertical.menu .item:first-child:before{display:none!important}.ui.vertical.menu .item>.menu{margin:-.6428571429em 0}.ui.vertical.menu .menu .item{background:none;color:rgba(0,0,0,.5);font-size:.8571428571em;padding:.5em 1.3333333333em}.ui.vertical.menu .item .menu .link.item:hover,.ui.vertical.menu .item .menu a.item:hover{color:rgba(0,0,0,.85)}.ui.vertical.menu .menu .item:before{display:none}.ui.vertical.menu .active.item{background:rgba(0,0,0,.05);border-radius:0;box-shadow:none}.ui.vertical.menu>.active.item:first-child,.ui.vertical.menu>.active.item:last-child{border-radius:0 0 0 0}.ui.vertical.menu>.active.item:only-child{border-radius:0}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:transparent;color:rgba(0,0,0,.95);font-weight:700}.ui.tabular.menu{background:none transparent;border:none;border-bottom:1px solid #d4d4d5;border-radius:0;box-shadow:none!important}.ui.tabular.fluid.menu{width:calc(100% + 2px)!important}.ui.tabular.menu .item{background:transparent;border:1px solid transparent;border-bottom:none;border-top:2px solid transparent;color:#2a2a2a;padding:.9285714286em 1.4285714286em}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:transparent;color:rgba(0,0,0,.8)}.ui.tabular.menu .active.item{background:none #fff;border-color:#d4d4d5;border-radius:0 0 0 0!important;border-top-width:1px;box-shadow:none;color:rgba(0,0,0,.95);font-weight:700;margin-bottom:-1px}.ui.tabular.menu+.attached:not(.top).segment,.ui.tabular.menu+.attached:not(.top).segment+.attached:not(.top).segment{border-top:none;margin-left:0;margin-right:0;margin-top:0;width:100%}.top.attached.segment+.ui.bottom.tabular.menu{left:-1px;position:relative;width:calc(100% + 2px)}.ui.bottom.tabular.menu{background:none transparent;border-bottom:none;border-radius:0;border-top:1px solid #d4d4d5;box-shadow:none!important}.ui.bottom.tabular.menu .item{background:none;border:1px solid transparent;border-top:none}.ui.bottom.tabular.menu .active.item{background:none #fff;border-color:#d4d4d5;border-radius:0 0 0 0!important;color:rgba(0,0,0,.95);margin:-1px 0 0}.ui.vertical.tabular.menu{background:none transparent;border-bottom:none;border-radius:0;border-right:1px solid #d4d4d5;box-shadow:none!important}.ui.vertical.tabular.menu[data-borderHidden=true]{border-right:1px solid transparent}.ui.vertical.tabular.menu .item{background:none;border:1px solid transparent;border-right:none;font-weight:500;padding:1.8571428571em 1.4285714286em}.ui.vertical.tabular.menu .active.item{background:#efefef;border-color:#d4d4d5;border-radius:0 0 0 0!important;color:rgba(0,0,0,.95);margin:-1px 0 0}.ui.vertical.right.tabular.menu{background:none transparent;border-bottom:none;border-left:1px solid #d4d4d5;border-radius:0;border-right:none;box-shadow:none!important}.ui.vertical.right.tabular.menu .item{background:none;border:1px solid transparent;border-left:none}.ui.vertical.right.tabular.menu .active.item{background:#efefef;border-color:#d4d4d5;border-radius:0 0 0 0!important;color:rgba(0,0,0,.95);margin:0 0 -1px}.ui.tabular.menu .active.dropdown.item{border:1px solid transparent;border-bottom:none;border-top:2px solid transparent;margin-bottom:0}.ui.pagination.menu{border:none;box-shadow:none;display:inline-flex;margin:0;min-height:1rem;padding-top:0;vertical-align:middle}.ui.pagination.menu .item:last-child{border-radius:0 0 0 0;margin-right:0}.ui.pagination.menu .item:before,.ui.pagination.menu .item:last-child:before{display:none}.ui.pagination.menu .item{border:1px solid #d3d3d3;border-radius:0;margin-right:.25rem;min-width:1rem;padding:.25rem .5rem;text-align:center}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu .active.item{background-color:#fff;border:none;box-shadow:none;cursor:default;font-weight:500;padding-top:.25rem}#js-pagination{margin-top:3.5714285714rem}#js-pagination a{cursor:pointer}#js-pagination>div{display:flex;padding-top:25px}#js-pagination>div>div:nth-of-type(2){display:flex;flex-grow:1;justify-content:center}@media only screen and (max-width:767px){#js-pagination>div{flex-wrap:wrap}#js-pagination>div>div:first-of-type{order:1;width:50%}#js-pagination>div>div:nth-of-type(2){order:3;padding-top:1rem;width:100%}#js-pagination>div>div:nth-of-type(3){order:2;text-align:right;width:50%}}#js-pagination .next,#js-pagination .previous{color:#000;font-family:var(--wp--preset--font-family--sans-serif);font-size:1rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase}#js-pagination .disabled{color:#ccc}.ui.secondary.menu,.wp-block-navigation.is-style-secondary,.wp-block-navigation.is-style-secondary-pointing{background:none;border:none;border-radius:0;box-shadow:none;margin-left:-.3571428571em;margin-right:-.3571428571em}.ui.secondary.menu .item,.wp-block-navigation.is-style-secondary .wp-block-navigation-link,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link{align-self:center;border:none;border-radius:.2857142857rem;box-shadow:none;margin:0 .3571428571em;padding:.7857142857em .9285714286em;transition:color .1s ease}.ui.secondary.menu .item:before,.wp-block-navigation.is-style-secondary .wp-block-navigation-link:before,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:before{display:none!important}.ui.secondary.menu .item.header,.wp-block-navigation.is-style-secondary .wp-block-navigation-link.header,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.header{background:none transparent;border-radius:0;border-right:none}.ui.secondary.menu .item>img:not(.ui),.wp-block-navigation.is-style-secondary .wp-block-navigation-link>img:not(.ui),.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link>img:not(.ui){margin:0}.ui.secondary.menu .item .ui.secondary.menu .item.active,.wp-block-navigation.is-style-secondary .wp-block-navigation-link .ui.secondary.menu .item.active,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link .ui.secondary.menu .item.active{background:rgba(0,0,0,.05);border-radius:.2857142857rem;box-shadow:none;color:rgba(0,0,0,.95)}.ui.secondary.menu .item .ui.secondary.menu .item.active:hover,.wp-block-navigation.is-style-secondary .wp-block-navigation-link .ui.secondary.menu .item.active:hover,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link .ui.secondary.menu .item.active:hover{background:rgba(0,0,0,.05);box-shadow:none;color:rgba(0,0,0,.95)}.ui.secondary.menu .dropdown.item:hover,.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:hsla(0,0%,100%,.7)!important}.ui.secondary.inverted.menu .dropdown.item:hover,.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{background:hsla(0,0%,100%,.08);color:#fff!important}.ui.secondary.inverted.menu .active.item{background:hsla(0,0%,100%,.15);color:#fff!important}.ui.secondary.item.menu{margin-left:0;margin-right:0}.ui.secondary.item.menu .item:last-child{margin-right:0}.ui.secondary.attached.menu{box-shadow:none}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu{margin:-.9285714286em}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 1.3333333333em}.ui.secondary.vertical.menu>.item{border:none;border-radius:.2857142857rem!important;margin:0 0 .3571428571em}.ui.secondary.vertical.menu>.header.item{border-radius:0}.ui.secondary.inverted.menu,.ui.vertical.secondary.menu .item>.menu .item{background-color:transparent}.ui.secondary.pointing.menu,nav.wp-block-navigation.is-style-secondary-pointing{border-bottom:2px solid rgba(34,36,38,.15);margin-left:0;margin-right:0}.ui.secondary.pointing.menu .item,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link{align-self:flex-end;border-bottom:2px solid transparent;border-radius:0;margin:0 0 -2px;padding:.8571428571em 1.1428571429em;transition:color .1s ease}.ui.secondary.pointing.menu .item.header,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.header{color:rgba(0,0,0,.85)!important}.ui.secondary.pointing.menu .item.text,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.text{box-shadow:none!important}.ui.secondary.pointing.menu .item:after,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:after{display:none}.ui.secondary.pointing.menu .item.active,.ui.secondary.pointing.menu .item.current-menu-item,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.active,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.current-menu-item{background-color:transparent;border-color:#1b1c1d;box-shadow:none;color:rgba(0,0,0,.95);font-weight:700}.ui.secondary.pointing.menu .item.active:hover,.ui.secondary.pointing.menu .item.current-menu-item:hover,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.active:hover,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.current-menu-item:hover{border-color:#1b1c1d;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .item.active.dropdown,.ui.secondary.pointing.menu .item.current-menu-item.dropdown,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.active.dropdown,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.current-menu-item.dropdown{border-color:transparent}.ui.secondary.pointing.menu .dropdown.item:hover,.ui.secondary.pointing.menu .link.item:hover,.ui.secondary.pointing.menu a.item:hover,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:hover{background-color:transparent;color:#2a2a2a}.ui.secondary.pointing.menu .dropdown.item:active,.ui.secondary.pointing.menu .link.item:active,.ui.secondary.pointing.menu a.item:active,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:active{background-color:transparent;border-color:rgba(34,36,38,.15)}.ui.secondary.vertical.pointing.menu{border-bottom-width:0;border-right:2px solid rgba(34,36,38,.15)}.ui.secondary.vertical.pointing.menu .item{border-bottom:none;border-radius:0!important;border-right:2px solid transparent;margin:0 -2px 0 0}.ui.secondary.vertical.pointing.menu .active.item{border-color:#1b1c1d}.ui.secondary.inverted.pointing.menu{border-color:hsla(0,0%,100%,.1);border-color:rgba(34,36,38,.15);border-width:2px}.ui.secondary.inverted.pointing.menu .item{color:hsla(0,0%,100%,.9)}.ui.secondary.inverted.pointing.menu .header.item{color:#fff!important}.ui.secondary.inverted.pointing.menu .link.item:hover,.ui.secondary.inverted.pointing.menu a.item:hover{color:rgba(0,0,0,.95)}.ui.secondary.inverted.pointing.menu .active.item{border-color:#fff;color:#fff}.ui.text.menu{background:none transparent;border:none;border-radius:0;box-shadow:none;margin:.5em}.ui.text.menu .item{align-self:center;border-radius:0;box-shadow:none;color:rgba(0,0,0,.6);font-weight:400;margin:0;padding:.3571428571em .5em;transition:opacity .1s ease}.ui.text.menu .item:before,.ui.text.menu .menu .item:before{display:none!important}.ui.text.menu .header.item{background-color:transparent;color:rgba(0,0,0,.85);font-size:.9285714286em;font-weight:700;opacity:1;text-transform:uppercase}.ui.text.item.menu .item,.ui.text.menu .item>img:not(.ui){margin:0}.ui.vertical.text.menu{margin:1em 0}.ui.vertical.text.menu:first-child{margin-top:0}.ui.vertical.text.menu:last-child{margin-bottom:0}.ui.vertical.text.menu .item{margin:.5714285714em 0;padding-left:0;padding-right:0}.ui.vertical.text.menu .item>i.icon{float:none;margin:0 .3571428571em 0 0}.ui.vertical.text.menu .header.item{margin:.5714285714em 0 .7142857143em}.ui.vertical.text.menu .item:not(.dropdown)>.menu{margin:0}.ui.vertical.text.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 0}.ui.text.menu .item:hover{background-color:transparent;opacity:1}.ui.text.menu .active.item{border:none;box-shadow:none;color:rgba(0,0,0,.95);font-weight:400}.ui.text.menu .active.item,.ui.text.menu .active.item:hover{background-color:transparent}.ui.text.attached.menu,.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.inverted.text.menu{background:#1b1c1d!important;border:0 solid transparent!important;box-shadow:none!important}.ui.inverted.text.menu .active.item,.ui.inverted.text.menu .item,.ui.inverted.text.menu .item:hover{background-color:transparent!important}.ui.fluid.text.menu{margin-left:0;margin-right:0}.ui.vertical.icon.menu{display:inline-block;width:auto}.ui.icon.menu .item{color:#1b1c1d;height:auto;text-align:center}.ui.icon.menu .item>.icon:not(.dropdown){margin:0;opacity:1}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item>.icon{margin:0 auto;width:auto}.ui.vertical.icon.menu .item>.icon:not(.dropdown){display:block;float:none;margin:0 auto;opacity:1}.ui.inverted.icon.menu .item{color:#fff}.ui.labeled.icon.menu{text-align:center}.ui.labeled.icon.menu .item{flex-direction:column;min-width:6em}.ui.labeled.icon.menu .item>.icon:not(.dropdown){display:block;font-size:1.7142857143em!important;height:1em;margin:0 auto .5rem!important}.ui.fluid.labeled.icon.menu>.item{min-width:0}@media only screen and (max-width:767px){.ui.stackable.menu{flex-direction:column}.ui.stackable.menu .item{width:100%!important}.ui.stackable.menu .item:before{background:rgba(34,36,38,.1);bottom:0;content:"";height:1px;left:0;position:absolute;top:auto;width:100%}.ui.stackable.menu .left.item,.ui.stackable.menu .left.menu{margin-right:0!important}.ui.stackable.menu .right.item,.ui.stackable.menu .right.menu{margin-left:0!important}.ui.stackable.menu .left.menu,.ui.stackable.menu .right.menu{flex-direction:column}}.ui.inverted.menu{background:#1b1c1d;border:0 solid transparent;box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){background:transparent;color:hsla(0,0%,100%,.9)}.ui.inverted.menu .item.menu{background:transparent}.ui.inverted.menu .item:before,.ui.vertical.inverted.menu .item:before{background:hsla(0,0%,100%,.08)}.ui.vertical.inverted.menu .menu .item,.ui.vertical.inverted.menu .menu .item a:not(.ui){color:hsla(0,0%,100%,.5)}.ui.inverted.menu .header.item{background:transparent;box-shadow:none;margin:0}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:hsla(0,0%,100%,.2)}.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover,.ui.link.inverted.menu .item:hover{background:hsla(0,0%,100%,.08);color:#fff}.ui.vertical.inverted.menu .item .menu .link.item:hover,.ui.vertical.inverted.menu .item .menu a.item:hover{background:transparent;color:#fff}.ui.inverted.menu .link.item:active,.ui.inverted.menu a.item:active{background:hsla(0,0%,100%,.08);color:#fff}.ui.inverted.menu .active.item{background:hsla(0,0%,100%,.15);color:#fff!important}.ui.inverted.vertical.menu .item .menu .active.item{background:transparent;color:#fff}.ui.inverted.pointing.menu .active.item:after{background:#3d3e3f!important;border:none!important;box-shadow:none!important;margin:0!important}.ui.inverted.menu .active.item:hover{background:hsla(0,0%,100%,.15);color:#fff!important}.ui.inverted.pointing.menu .active.item:hover:after{background:#3d3e3f!important}.ui.floated.menu{float:left;margin:0 .5rem 0 0}.ui.floated.menu .item:last-child:before{display:none}.ui.right.floated.menu{float:right;margin:0 0 0 .5rem}.ui.inverted.beige.menu{background:none;border-radius:0;min-height:inherit}.ui.inverted.beige.menu .item{background-color:#b7b8af;border:0;border-radius:0!important;border-right:1px solid #fff;color:#58585a!important;font-size:.7857142857rem;letter-spacing:.078rem;padding:.5rem 1rem}.ui.inverted.beige.menu .item:last-of-type{border-right:none}.ui.inverted.beige.menu .item:hover{background-color:#b7b8af;color:#58585a}.ui.inverted.beige.menu .active.item{background-color:#f7f7f1!important;border-color:none!important;font-weight:400!important}.ui.inverted.beige.menu .active.item:hover{color:#58585a!important}.ui.inverted.oatmeal.menu{background:none;border-radius:0;min-height:inherit}.ui.inverted.oatmeal.menu .item{background-color:#b2b3a5;border:0;border-radius:0!important;border-right:1px solid #fff;color:#58585a!important;font-size:.7857142857rem;letter-spacing:.078rem;padding:.5rem 1rem}.ui.inverted.oatmeal.menu .item:last-of-type{border-right:none}.ui.inverted.oatmeal.menu .item:hover{background-color:#b2b3a5;color:#58585a}.ui.inverted.oatmeal.menu .active.item{background-color:#ecece3!important;border-color:none!important;font-weight:400!important}.ui.inverted.oatmeal.menu .active.item:hover{color:#58585a!important}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-bottom:.9285714286em;padding-top:.9285714286em}.ui.menu .vertically.fitted.item,.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item{padding-left:1.1428571429em;padding-right:1.1428571429em}.ui.menu.attached.borderless{border:none!important}.ui.borderless.menu .item .menu .item:before,.ui.borderless.menu .item:before,.ui.menu .borderless.item:before{background:none!important}.ui.compact.menu{display:inline-flex;margin:0;vertical-align:middle}.ui.compact.menu .item:last-child{border-radius:0 0 0 0}.ui.compact.menu .item:last-child:before{display:none}.ui.compact.vertical.menu{display:inline-block;width:auto!important}.ui.compact.vertical.menu .item:last-child:before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{width:100%!important}.ui.item.menu,.ui.item.menu .item{justify-content:center;margin-left:0!important;margin-right:0!important;padding-left:0!important;padding-right:0!important;text-align:center;width:100%}.ui.attached.item.menu{margin:0 -1px!important}.ui.item.menu .item:last-child:before{display:none}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{margin:0;position:fixed;width:100%;z-index:101}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0!important}.ui.fixed.menu,.ui[class*="top fixed"].menu{bottom:auto;left:0;right:auto;top:0}.ui[class*="top fixed"].menu{border-left:none;border-right:none;border-top:none}.ui[class*="right fixed"].menu{border-bottom:none;border-right:none;border-top:none;bottom:auto;height:100%;left:auto;right:0;top:0;width:auto}.ui[class*="bottom fixed"].menu{border-bottom:none;border-left:none;border-right:none;bottom:0;left:0;right:auto;top:auto}.ui[class*="left fixed"].menu{border-bottom:none;border-left:none;border-top:none;bottom:auto;height:100%;left:0;right:auto;top:0;width:auto}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .item.active:after,.ui.pointing.menu .item.current-menu-item:after,.ui.pointing.menu .wp-block-navigation-link.active:after,.ui.pointing.menu .wp-block-navigation-link.current-menu-item:after,.wp-block-navigation.is-style-pointing .item.active:after,.wp-block-navigation.is-style-pointing .item.current-menu-item:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.active:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.current-menu-item:after{background-color:#f2f2f2;visibility:visible}.ui.pointing.menu .item.active.dropdown:after,.ui.pointing.menu .item.current-menu-item.dropdown:after,.ui.pointing.menu .wp-block-navigation-link.active.dropdown:after,.ui.pointing.menu .wp-block-navigation-link.current-menu-item.dropdown:after,.wp-block-navigation.is-style-pointing .item.active.dropdown:after,.wp-block-navigation.is-style-pointing .item.current-menu-item.dropdown:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.active.dropdown:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.current-menu-item.dropdown:after{visibility:hidden}.ui.pointing.menu .item.active:hover:after,.ui.pointing.menu .item.current-menu-item:hover:after,.ui.pointing.menu .wp-block-navigation-link.active:hover:after,.ui.pointing.menu .wp-block-navigation-link.current-menu-item:hover:after,.wp-block-navigation.is-style-pointing .item.active:hover:after,.wp-block-navigation.is-style-pointing .item.current-menu-item:hover:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.active:hover:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.current-menu-item:hover:after{background-color:#f2f2f2}.ui.pointing.menu .item:after,.ui.pointing.menu .wp-block-navigation-link:after,.wp-block-navigation.is-style-pointing .item:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link:after{background:none;border:1px solid #d4d4d5;border-left:none;border-top:none;content:"";height:.5714285714em;left:50%;margin:.5px 0 0;position:absolute;top:100%;-webkit-transform:translateX(-50%) translateY(-50%) rotate(45deg);transform:translateX(-50%) translateY(-50%) rotate(45deg);transition:background .1s ease;visibility:hidden;width:.5714285714em;z-index:2}.ui.pointing.menu .active.item .menu .active.item:after,.ui.pointing.menu .dropdown.active.item:after,.wp-block-navigation.is-style-pointing .active.item .menu .active.item:after,.wp-block-navigation.is-style-pointing .dropdown.active.item:after{display:none}.ui.pointing.vertical.menu .menu .active.item:after{background-color:#fff}.ui.pointing.vertical.menu .item.active:after,.ui.pointing.vertical.menu .item.active:hover:after{background-color:#f2f2f2}.ui.pointing.vertical.menu .item:after{border:1px solid #d4d4d5;border-bottom:none;border-left:none;bottom:auto;left:auto;margin:0 -.5px 0 0;position:absolute;right:0;top:50%;-webkit-transform:translateX(50%) translateY(-50%) rotate(45deg);transform:translateX(50%) translateY(-50%) rotate(45deg)}.ui.attached.menu{border-radius:0;bottom:0;box-shadow:none;margin:0 -1px;max-width:calc(100% + 2px);top:0;width:calc(100% + 2px)}.ui.attached+.ui.attached.menu:not(.top){border-top:none}.ui[class*="top attached"].menu{border-radius:0 0 0 0;bottom:0;margin-bottom:0;margin-top:1rem;top:0}.ui.menu[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].menu{border-radius:0 0 0 0;bottom:0;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;margin-bottom:1rem;margin-top:0;top:0}.ui[class*="bottom attached"].menu:last-child{margin-bottom:0}.ui.bottom.attached.menu>.item:first-child,.ui.top.attached.menu>.item:first-child{border-radius:0 0 0 0}.ui.attached.menu:not(.tabular){border:1px solid #d4d4d5}.ui.attached.inverted.menu{border:none}.ui.attached.tabular.menu{margin-left:0;margin-right:0;width:100%}.ui.mini.menu{font-size:.7857142857rem}.ui.mini.vertical.menu{width:9rem}.ui.tiny.menu{font-size:.8571428571rem}.ui.tiny.vertical.menu{width:11rem}.ui.small.menu{font-size:.9285714286rem}.ui.small.vertical.menu{width:13rem}.ui.menu,.wp-block-navigation{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu{font-size:1.0714285714rem}.ui.large.vertical.menu{width:18rem}.ui.huge.menu{font-size:1.2142857143rem}.ui.huge.vertical.menu{width:22rem}.ui.big.menu{font-size:1.1428571429rem}.ui.big.vertical.menu{width:20rem}.ui.massive.menu{font-size:1.2857142857rem}.ui.massive.vertical.menu{width:25rem}.wp-block-prc-block-menu>.menu{padding-top:0}.wp-block-prc-block-menu.items-justified-center:not(.vertical)>.menu{justify-content:center}.wp-block-prc-block-menu.items-justified-right:not(.vertical)>.menu{justify-content:flex-end}.wp-block-prc-block-menu.items-justified-center.vertical>.menu{text-align:center}.wp-block-prc-block-menu.items-justified-right.vertical>.menu{text-align:right}.wp-block-prc-block-menu .block-list-appender{align-items:center;display:flex;margin:inherit!important;max-width:inherit!important}.ui.menu.block-editor-block-list__layout>.item{margin:0!important;max-width:inherit!important}.wp-block-prc-block-menu .wp-block-prc-block-menu{margin:0!important}.wp-block-prc-block-menu>.ui.menu>.wp-block-prc-block-post-publish-date{flex-grow:1}/*! - * # Semantic UI - Message - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.message{background:#f8f8f9;border-radius:.2857142857rem;box-shadow:inset 0 0 0 1px rgba(34,36,38,.22),0 0 0 0 transparent;color:#2a2a2a;line-height:1.4285em;margin:1em 0;min-height:1em;padding:1em 1.5em;position:relative;transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:var(--wp--preset--font-family--sans-serif);font-weight:700;margin:-.1428571429em 0 0}.ui.message .header:not(.ui){font-size:1.1428571429em}.ui.message p{font-family:var(--wp--preset--font-family--sans-serif);margin:.75em 0;opacity:.85}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message .list:not(.ui){list-style-position:inside;margin:.5em 0 0;opacity:.85;padding:0;text-align:left}.ui.message .list:not(.ui):first-child{margin-top:0}.ui.message .list:not(.ui):last-child{margin-bottom:0}.ui.message .list:not(.ui) li{list-style-type:none;margin:0 0 .3em 1em;padding:0;position:relative}.ui.message .list:not(.ui) li:before{content:"•";height:100%;left:-1em;position:absolute;vertical-align:baseline}.ui.message .list:not(.ui) li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;margin:0;opacity:.7;position:absolute;right:.5em;top:.78575em;transition:opacity .1s ease}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.dropdown .menu>.message{margin:-1px}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:flex}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.compact.icon.message{display:inline-flex}.ui.attached.message{border-radius:.2857142857rem .2857142857rem 0 0;box-shadow:inset 0 0 0 1px rgba(34,36,38,.15);margin-bottom:-1px;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){border-radius:0;margin-top:-1px}.ui.bottom.attached.message{border-radius:0 0 .2857142857rem .2857142857rem;box-shadow:inset 0 0 0 1px rgba(34,36,38,.15),0 1px 2px 0 rgba(34,36,38,.15);margin-top:-1px}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{width:auto}.ui.icon.message{align-items:center;display:flex;width:100%}.ui.icon.message>.icon:not(.close){display:block;flex:0 0 auto;font-size:3em;line-height:1;opacity:.8;vertical-align:middle;width:auto}.ui.icon.message>.content{display:block;flex:1 1 auto;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:0}.ui.icon.message .circular.icon{width:1em}.ui.floating.message{box-shadow:inset 0 0 0 1px rgba(34,36,38,.22),0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.black.message{background-color:#1b1c1d;color:hsla(0,0%,100%,.9)}.ui.positive.message{background-color:#fcfff5;color:#2c662d}.ui.attached.positive.message,.ui.positive.message{box-shadow:inset 0 0 0 1px #a3c293,0 0 0 0 transparent}.ui.positive.message .header{color:#1a531b}.ui.negative.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.negative.message,.ui.negative.message{box-shadow:inset 0 0 0 1px #e0b4b4,0 0 0 0 transparent}.ui.negative.message .header{color:#912d2b}.ui.info.message{background-color:#f8ffff;color:#276f86}.ui.attached.info.message,.ui.info.message{box-shadow:inset 0 0 0 1px #a9d5de,0 0 0 0 transparent}.ui.info.message .header{color:#0e566c}.ui.warning.message{background-color:#fffaf3;color:#573a08}.ui.attached.warning.message,.ui.warning.message{box-shadow:inset 0 0 0 1px #c9ba9b,0 0 0 0 transparent}.ui.warning.message .header{color:#794b02}.ui.error.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.error.message,.ui.error.message{box-shadow:inset 0 0 0 1px #e0b4b4,0 0 0 0 transparent}.ui.error.message .header{color:#912d2b}.ui.success.message{background-color:#fcfff5;color:#2c662d}.ui.attached.success.message,.ui.success.message{box-shadow:inset 0 0 0 1px #a3c293,0 0 0 0 transparent}.ui.success.message .header{color:#1a531b}.ui.black.message,.ui.inverted.message{background-color:#1b1c1d;color:hsla(0,0%,100%,.9)}.ui.red.message{background-color:#ffe8e6;box-shadow:inset 0 0 0 1px #db2828,0 0 0 0 transparent;color:#db2828}.ui.red.message .header{color:#c82121}.ui.orange.message{background-color:#ffedde;box-shadow:inset 0 0 0 1px #f2711c,0 0 0 0 transparent;color:#f2711c}.ui.orange.message .header{color:#e7640d}.ui.yellow.message{background-color:#fff8db;box-shadow:inset 0 0 0 1px #b58105,0 0 0 0 transparent;color:#b58105}.ui.yellow.message .header{color:#9c6f04}.ui.olive.message{background-color:#fbfdef;box-shadow:inset 0 0 0 1px #8abc1e,0 0 0 0 transparent;color:#8abc1e}.ui.olive.message .header{color:#7aa61a}.ui.green.message{background-color:#e5f9e7;box-shadow:inset 0 0 0 1px #1ebc30,0 0 0 0 transparent;color:#1ebc30}.ui.green.message .header{color:#1aa62a}.ui.teal.message{background-color:#e1f7f7;box-shadow:inset 0 0 0 1px #10a3a3,0 0 0 0 transparent;color:#10a3a3}.ui.teal.message .header{color:#0e8c8c}.ui.blue.message{background-color:#dff0ff;box-shadow:inset 0 0 0 1px #2185d0,0 0 0 0 transparent;color:#2185d0}.ui.blue.message .header{color:#1e77ba}.ui.violet.message{background-color:#eae7ff;box-shadow:inset 0 0 0 1px #6435c9,0 0 0 0 transparent;color:#6435c9}.ui.violet.message .header{color:#5a30b5}.ui.purple.message{background-color:#f6e7ff;box-shadow:inset 0 0 0 1px #a333c8,0 0 0 0 transparent;color:#a333c8}.ui.purple.message .header{color:#922eb4}.ui.pink.message{background-color:#ffe3fb;box-shadow:inset 0 0 0 1px #e03997,0 0 0 0 transparent;color:#e03997}.ui.pink.message .header{color:#dd238b}.ui.brown.message{background-color:#f1e2d3;box-shadow:inset 0 0 0 1px #a5673f,0 0 0 0 transparent;color:#a5673f}.ui.brown.message .header{color:#935b38}.ui.mini.message{font-size:.7857142857em}.ui.tiny.message{font-size:.8571428571em}.ui.small.message{font-size:.9285714286em}.ui.message{font-size:1em}.ui.large.message{font-size:1.1428571429em}.ui.big.message{font-size:1.2857142857em}.ui.huge.message{font-size:1.4285714286em}.ui.massive.message{font-size:1.7142857143em}/*! - * # Semantic UI - Table - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.table,.wp-block-table>table{background:#fff;border:1px solid rgba(34,36,38,.15);border-collapse:separate;border-radius:0;border-spacing:0;box-shadow:none;color:#2a2a2a;font-family:var(--wp--preset--font-family--sans-serif);margin:1em 0;text-align:left;width:100%}.ui.table:first-child,.wp-block-table>table:first-child{margin-top:0}.ui.table:last-child,.wp-block-table>table:last-child{margin-bottom:0}.ui.table td,.ui.table th,.wp-block-table>table td,.wp-block-table>table th{transition:background .1s ease,color .1s ease}.ui.table thead,.wp-block-table>table thead{box-shadow:none}.ui.table thead th,.wp-block-table>table thead th{background:#f9fafb;border-bottom:none;border-left:none;color:#2a2a2a;cursor:auto;font-style:none;font-weight:700;padding:.9285714286em .7857142857em;text-align:inherit;text-transform:none;vertical-align:bottom}.ui.table thead tr>th:first-child,.wp-block-table>table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child,.ui.table thead tr:first-child>th:last-child,.ui.table thead tr:first-child>th:only-child,.wp-block-table>table thead tr:first-child>th:first-child,.wp-block-table>table thead tr:first-child>th:last-child,.wp-block-table>table thead tr:first-child>th:only-child{border-radius:0 0 0 0}.ui.table tfoot,.wp-block-table>table tfoot{box-shadow:none}.ui.table tfoot th,.wp-block-table>table tfoot th{background:#f9fafb;border-top:1px solid rgba(34,36,38,.15);color:#2a2a2a;cursor:auto;font-style:normal;font-weight:400;padding:.7857142857em;text-align:inherit;text-transform:none;vertical-align:middle}.ui.table tfoot tr>th:first-child,.wp-block-table>table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child,.ui.table tfoot tr:first-child>th:last-child,.ui.table tfoot tr:first-child>th:only-child,.wp-block-table>table tfoot tr:first-child>th:first-child,.wp-block-table>table tfoot tr:first-child>th:last-child,.wp-block-table>table tfoot tr:first-child>th:only-child{border-radius:0 0 0 0}.ui.table tr td,.wp-block-table>table tr td{border-top:1px dotted #dadbdb}.ui.table tr:first-child td,.wp-block-table>table tr:first-child td{border-top:none}.ui.table tbody+tbody tr:first-child td,.wp-block-table>table tbody+tbody tr:first-child td{border-top:1px dotted #dadbdb}.ui.table td,.wp-block-table>table td{padding:.7857142857em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767px){.ui.table:not(.unstackable){width:100%}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{display:block!important;width:auto!important}.ui.table:not(.unstackable){padding:0}.ui.table:not(.unstackable) tfoot,.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tr{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1)!important;padding-bottom:1em;padding-top:1em}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:none;border:none!important;box-shadow:none!important;padding:.25em .75em!important}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:700}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr td,.ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table thead:not(.full-width) th:first-child{background:transparent;box-shadow:-2px 0 1px #fff;color:rgba(0,0,0,.4);font-weight:400;pointer-events:none}.ui.definition.table tfoot:not(.full-width) th:first-child{background:transparent;box-shadow:1px 1px 0 1px #fff;color:normal;font-weight:rgba(0,0,0,.4);pointer-events:none}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:-1px 0 1px #fff}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0 1px 0 1px #fff}.ui.definition.table tr td.definition,.ui.definition.table tr td:first-child:not(.ignored){background:rgba(0,0,0,.03);box-shadow:"";color:rgba(0,0,0,.95);font-size:1em;font-weight:700;padding-left:"";padding-right:"";text-align:"";text-transform:""}.ui.definition.table td:nth-child(2),.ui.definition.table tfoot:not(.full-width) th:nth-child(2),.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.table td.positive,.ui.table tr.positive{background:#fcfff5!important;box-shadow:inset 0 0 0 #a3c293;color:#2c662d!important}.ui.table td.negative,.ui.table tr.negative{background:#fff6f6!important;box-shadow:inset 0 0 0 #e0b4b4;color:#9f3a38!important}.ui.table td.error,.ui.table tr.error{background:#fff6f6!important;box-shadow:inset 0 0 0 #e0b4b4;color:#9f3a38!important}.ui.table td.warning,.ui.table tr.warning{background:#fffaf3!important;box-shadow:inset 0 0 0 #c9ba9b;color:#573a08!important}.ui.table td.active,.ui.table tr.active{background:#e0e0e0!important;box-shadow:inset 0 0 0 #2a2a2a;color:#2a2a2a!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{color:rgba(0,0,0,.2);pointer-events:none}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{display:block!important;width:100%!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table tfoot,.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tr{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1)!important;padding-bottom:1em;padding-top:1em}.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{background:none;border:none!important;box-shadow:none!important;padding:.25em .75em}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{white-space:nowrap;width:1px}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.selectable.table tbody tr:hover,.ui.table tbody tr td.selectable:hover{background:#ecece3!important;color:rgba(0,0,0,.95)!important}.ui.inverted.table tbody tr td.selectable:hover,.ui.selectable.inverted.table tbody tr:hover{background:hsla(0,0%,100%,.08)!important;color:#fff!important}.ui.table tbody tr td.selectable{padding:0}.ui.table tbody tr td.selectable>a:not(.ui){color:inherit;display:block;padding:.7857142857em}.ui.selectable.table tr.error:hover,.ui.selectable.table tr:hover td.error,.ui.table tr td.selectable.error:hover{background:#ffe7e7!important;color:#943634!important}.ui.selectable.table tr.warning:hover,.ui.selectable.table tr:hover td.warning,.ui.table tr td.selectable.warning:hover{background:#fff4e4!important;color:#493107!important}.ui.selectable.table tr.active:hover,.ui.selectable.table tr:hover td.active,.ui.table tr td.selectable.active:hover{background:#e0e0e0!important;color:#2a2a2a!important}.ui.selectable.table tr.positive:hover,.ui.selectable.table tr:hover td.positive,.ui.table tr td.selectable.positive:hover{background:#f7ffe6!important;color:#275b28!important}.ui.selectable.table tr.negative:hover,.ui.selectable.table tr:hover td.negative,.ui.table tr td.selectable.negative:hover{background:#ffe7e7!important;color:#943634!important}.ui.attached.table{border:1px solid #d4d4d5;border-radius:0;bottom:0;box-shadow:none;margin:0 -1px;max-width:calc(100% + 2px);top:0;width:calc(100% + 2px)}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{border-radius:0 0 0 0;bottom:0;margin-bottom:0;margin-top:1em;top:0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{border-radius:0 0 0 0;bottom:0;box-shadow:none,none;margin-bottom:1em;margin-top:0;top:0}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:#f8f9f5}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:hsla(0,0%,100%,.05)}.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef!important;color:rgba(0,0,0,.95)!important}.ui.basic.striped.table tbody tr.negative:nth-child(2n){background-color:#fff6f6!important}.ui.basic.striped.table tbody tr.positive:nth-child(2n){background-color:#fcfff5!important}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);color:#2a2a2a;cursor:pointer;white-space:nowrap}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table thead th:after{content:"";display:none;font-family:Icons;font-style:normal;font-weight:400;height:1em;margin:0 0 0 .5em;opacity:.8;text-decoration:inherit;width:auto}.ui.sortable.table thead th.ascending:after{content:""}.ui.sortable.table thead th.descending:after{content:""}.ui.sortable.table th.disabled:hover{color:rgba(0,0,0,.2);cursor:auto}.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.sortable.table thead th.sorted{background:hsla(0,0%,100%,.15) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.ui.inverted.sortable.table thead th:hover{background:hsla(0,0%,100%,.08) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;border:none;color:hsla(0,0%,100%,.9)}.ui.inverted.table th{background-color:rgba(0,0,0,.15);color:hsla(0,0%,100%,.9)!important}.ui.inverted.table th,.ui.inverted.table tr td{border-color:hsla(0,0%,100%,.1)!important}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{color:hsla(0,0%,100%,.2);pointer-events:none}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.ui.inverted.definition.table tr td:first-child{background:hsla(0,0%,100%,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:transparent;border:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.table tfoot,.ui.basic.table thead{box-shadow:none}.ui.basic.table th{background:transparent;border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:transparent}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:#f8f9f5!important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) td,.ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:""}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.ui.celled.table tr td,.ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table td,.ui.padded.table th{padding:1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em}.ui.compact.table th{padding:.5rem .7em}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.8571428571rem}.ui.table{font-size:.9285714286rem}.ui.large.table{font-size:1rem}.ui.table.dataTable{width:100%!important}.ui.table.dataTable th.sorting,.ui.table.dataTable th.sorting_asc,.ui.table.dataTable th.sorting_desc{cursor:pointer}.ui.table.dataTable th:after{top:0!important}.ui.table.dataTable thead.ui.sticky.fixed{background:#fff}.ui.table.dataTable thead th{line-height:1rem}table.dataTable.table{margin:0}table.dataTable.table thead td,table.dataTable.table thead th{position:relative}table.dataTable.table thead td.sorting:after,table.dataTable.table thead td.sorting_asc:after,table.dataTable.table thead td.sorting_desc:after,table.dataTable.table thead th.sorting:after,table.dataTable.table thead th.sorting_asc:after,table.dataTable.table thead th.sorting_desc:after{display:inline-block;float:right;font-family:Icons;margin-left:5px}table.dataTable.table thead td.sorting:after,table.dataTable.table thead th.sorting:after{color:#ddd;content:"";font-size:.8em}table.dataTable.table thead td.sorting_asc:after,table.dataTable.table thead th.sorting_asc:after{content:""}table.dataTable.table thead td.sorting_desc:after,table.dataTable.table thead th.sorting_desc:after{content:""}table.dataTable.table td,table.dataTable.table th{box-sizing:content-box}table.dataTable.table td.dataTables_empty,table.dataTable.table th.dataTables_empty{text-align:center}table.dataTable.table.nowrap td,table.dataTable.table.nowrap th{white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{min-height:2.7142em;vertical-align:middle}div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown{min-width:0}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em}div.dataTables_wrapper div.dataTables_info{padding-top:13px;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{left:50%;margin-left:-100px;position:absolute;text-align:center;top:50%;width:200px}div.dataTables_wrapper div.row.dt-table{padding:0}div.dataTables_wrapper div.dataTables_scrollHead table.dataTable{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after,div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after,div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after{display:none}div.dataTables_wrapper div.dataTables_scrollBody table.dataTable{border-bottom-width:0;border-radius:0;border-top:none}div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer{border-bottom-width:1px}div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable{border-top:none;border-top-left-radius:0;border-top-right-radius:0}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child{cursor:default!important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before{display:none!important}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child{cursor:pointer;padding-left:30px;position:relative}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child:before{border:none;box-sizing:content-box;color:#000;content:"+";display:inline;font-family:Courier New,Courier,monospace;height:14px;left:4px;line-height:14px;margin-right:.5rem;text-align:center;text-indent:0!important;top:9px;width:14px}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:"-"}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{border-radius:14px;height:14px;left:4px;line-height:14px;text-indent:3px;top:5px;width:14px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{cursor:pointer;position:relative}table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{background-color:#21ba45;border:2px solid #fff;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;color:#fff;content:"+";display:block;font-family:Courier New,Courier,monospace;height:16px;left:50%;line-height:14px;margin-left:-10px;margin-top:-10px;position:absolute;text-align:center;text-indent:0!important;top:50%;width:16px}table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:"-"}table.dataTable>tbody>tr.child{padding:.5em 1em}table.dataTable>tbody>tr.child:hover{background:transparent!important}table.dataTable>tbody>tr.child ul.dtr-details{display:block;list-style-type:none;margin:0;padding:0;width:100%}table.dataTable>tbody>tr.child ul.dtr-details>li{list-style:none;margin:0 0 0 1.3rem;padding:.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;font-weight:700;min-width:75px}div.dtr-modal{box-sizing:border-box;height:100%;left:0;padding:10em 1em;position:fixed;top:0;width:100%;z-index:100}div.dtr-modal div.dtr-modal-display{background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;bottom:0;box-shadow:0 12px 30px rgba(0,0,0,.6);height:50%;left:0;margin:auto;overflow:auto;position:absolute;right:0;top:0;width:50%;z-index:102}div.dtr-modal div.dtr-modal-content{padding:1em;position:relative}div.dtr-modal div.dtr-modal-close{background-color:#f9f9f9;border:1px solid #eaeaea;border-radius:3px;cursor:pointer;height:22px;position:absolute;right:6px;text-align:center;top:6px;width:22px;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{background:rgba(0,0,0,.6);bottom:0;left:0;position:fixed;right:0;top:0;z-index:101}@media screen and (max-width:767px){div.dtr-modal div.dtr-modal-display{width:95%}}div.dtr-bs-modal table.table tr:first-child td{border-top:none}#js-prc-table-dropdown{margin-bottom:1rem}#js-prc-table-dropdown>div:first-of-type{margin-right:1rem}#js-prc-table-dropdown>div{display:flex}#js-prc-table-dropdown>div>.ui.button{align-items:center;display:flex}/*! - * # Semantic UI - Accordion - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */@font-face{font-family:Accordion;font-style:normal;font-weight:400;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("woff")}.ui.accordion,.ui.accordion .accordion{max-width:100%}.ui.accordion .accordion.divided>.title,.ui.accordion.divided>.title{padding-bottom:1em!important;padding-top:1em!important}.ui.accordion .accordion.divided>.title:not(:first-of-type),.ui.accordion.divided>.title:not(:first-of-type){border-top:1px solid rgba(34,36,38,.15)}.ui.accordion .accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion .title,.ui.accordion .title{cursor:pointer}.ui.accordion .accordion .title .icon.minus:not(.circle),.ui.accordion .accordion .title .icon.plus:not(.circle),.ui.accordion .title .icon.minus:not(.circle),.ui.accordion .title .icon.plus:not(.circle){color:#818181}.ui.accordion .accordion .title .icon.minus:not(.circle):before,.ui.accordion .accordion .title .icon.plus:not(.circle):before,.ui.accordion .title .icon.minus:not(.circle):before,.ui.accordion .title .icon.plus:not(.circle):before{align-items:center;border:1px solid #818181;border-radius:100%;display:flex;font-size:12px;height:18px;justify-content:center;width:18px}.ui.accordion .title:not(.ui){color:#2a2a2a;font-family:var(--wp--preset--font-family--sans-serif);padding:.5em 0}.ui.accordion .title:not(.ui)>h4{display:inline}.ui.accordion .title:not(h4):not(.ui){font-size:1em}.ui.accordion .accordion .title~.content,.ui.accordion .title~.content{display:none;font-family:var(--wp--preset--font-family--sans-serif);font-size:1rem}.ui.accordion .accordion .title~.content:after,.ui.accordion .title~.content:after{clear:both;content:"";display:table}.ui.accordion p{font-family:var(--wp--preset--font-family--sans-serif)!important}.ui.accordion p,body.post-template-template-essay .ui.accordion .accordion .title~.content,body.post-template-template-essay .ui.accordion .content p,body.post-template-template-essay .ui.accordion .title~.content{font-size:1rem!important}body.post-template-template-essay .ui.accordion .content p{line-height:160%!important}.ui.accordion:not(.styled) .accordion .title~.content:not(.ui),.ui.accordion:not(.styled) .title~.content:not(.ui){margin:"";padding:.5em 0 1em}.ui.accordion:not(.styled) .title~.content:not(.ui):last-child{padding-bottom:0}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:inline-block;float:none;font-family:Accordion!important;font-size:1em;font-style:normal;font-weight:400;height:1em;line-height:1;margin:0 .25rem 0 0;opacity:1;padding:0;text-align:center;-webkit-transform:none;transform:none;transition:opacity .1s ease,-webkit-transform .1s ease;transition:transform .1s ease,opacity .1s ease;transition:transform .1s ease,opacity .1s ease,-webkit-transform .1s ease;vertical-align:baseline;width:1.25em}.ui.accordion .accordion .title .dropdown.icon:before,.ui.accordion .title .dropdown.icon:before{content:""}.ui.accordion.menu .item .title{display:block;padding:0}.ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:.21425em 0 0 1em;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0 .25rem 0 0}.ui.accordion .accordion .active.title .dropdown.icon,.ui.accordion .active.title .dropdown.icon,.ui.accordion.menu .item .active.title>.dropdown.icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ui.styled.accordion{border:1px solid rgba(34,36,38,.15)!important;margin-bottom:1em}.ui.styled.accordion>.content,.ui.styled.accordion>.title{background:#f7f7f1}.ui.basic.styled.accordion>.content,.ui.basic.styled.accordion>.title{background:#fff}.ui.styled.accordion .accordion .title,.ui.styled.accordion .title{color:#000;font-weight:700;margin:0;padding:.75em 1em;transition:background .1s ease,color .1s ease}.ui.styled.accordion .accordion .title{border-top:1px solid rgba(34,36,38,.15)!important}.ui.styled.accordion .accordion .title:first-child,.ui.styled.accordion>.title:first-child{border-top:none}.ui.styled.accordion .accordion .content,.ui.styled.accordion .content{margin:0;padding:0 1em 1.5em}.ui.styled.accordion .accordion .content ol,.ui.styled.accordion .accordion .content ul,.ui.styled.accordion .content ol,.ui.styled.accordion .content ul{margin-left:0}.ui.styled.accordion .accordion .content ol:first-of-type,.ui.styled.accordion .accordion .content ul:first-of-type,.ui.styled.accordion .content ol:first-of-type,.ui.styled.accordion .content ul:first-of-type{margin-top:0}.ui.styled.accordion .accordion .content{padding:0 1em 1.5em}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover,.ui.styled.accordion .active.title,.ui.styled.accordion .title:hover{color:#2a2a2a}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .active.title{color:rgba(0,0,0,.95)}.ui.accordion .accordion .active.content,.ui.accordion .active.content{display:block}.ui.fluid.accordion,.ui.fluid.accordion .accordion{width:100%}.ui.inverted.accordion:not(.beige) .title:not(.ui){color:hsla(0,0%,100%,.9)}/*! - * # Semantic UI - Checkbox - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */@font-face{font-family:Checkbox;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype")}.ui.checkbox{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:inline-block;font-size:1rem;font-style:normal;line-height:17px;min-height:17px;min-width:17px;outline:none;position:relative;vertical-align:baseline}.ui.checkbox input[type=checkbox],.ui.checkbox input[type=radio]{cursor:pointer;height:17px;left:0;opacity:0!important;outline:none;position:absolute;top:0;width:17px;z-index:3}.ui.checkbox .box,.ui.checkbox label{cursor:auto;display:block;font-size:1rem;outline:none;padding-left:1.85714em;position:relative}.ui.checkbox .box:before,.ui.checkbox label:before{background:#fff;border:1px solid #d4d4d5;border-radius:.2142857143rem;content:""}.ui.checkbox .box:after,.ui.checkbox .box:before,.ui.checkbox label:after,.ui.checkbox label:before{height:17px;left:0;position:absolute;top:0;transition:border .1s ease,opacity .1s ease,box-shadow .1s ease,-webkit-transform .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease,-webkit-transform .1s ease;width:17px}.ui.checkbox .box:after,.ui.checkbox label:after{color:#2a2a2a;font-family:Checkbox;font-size:14px;opacity:0;text-align:center}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{content:""}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{content:"";font-size:12px}.ui.checkbox label,.ui.checkbox+label{color:#2a2a2a;transition:color .1s ease}.ui.checkbox+label{vertical-align:middle}.ui.checkbox .box:hover:before,.ui.checkbox label:hover:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox label:hover,.ui.checkbox+label:hover{color:rgba(0,0,0,.8)}.ui.checkbox .box:active:before,.ui.checkbox label:active:before{background:#f9fafb;border-color:rgba(34,36,38,.35)}.ui.checkbox .box:active:after,.ui.checkbox input:active~label,.ui.checkbox label:active:after{color:rgba(0,0,0,.95)}.ui.checkbox input:focus~.box:before,.ui.checkbox input:focus~label:before{background:#fff;border-color:#96c8da}.ui.checkbox input:focus~.box:after,.ui.checkbox input:focus~label,.ui.checkbox input:focus~label:after{color:rgba(0,0,0,.95)}.ui.checkbox input:checked~.box:before,.ui.checkbox input:checked~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{color:rgba(0,0,0,.95);opacity:1}.ui.checkbox input:not([type=radio]):indeterminate~.box:before,.ui.checkbox input:not([type=radio]):indeterminate~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input:not([type=radio]):indeterminate~.box:after,.ui.checkbox input:not([type=radio]):indeterminate~label:after{color:rgba(0,0,0,.95);opacity:1}.ui.checkbox input:checked:focus~.box:before,.ui.checkbox input:checked:focus~label:before,.ui.checkbox input:not([type=radio]):indeterminate:focus~.box:before,.ui.checkbox input:not([type=radio]):indeterminate:focus~label:before{background:#fff;border-color:#96c8da}.ui.checkbox input:checked:focus~.box:after,.ui.checkbox input:checked:focus~label:after,.ui.checkbox input:not([type=radio]):indeterminate:focus~.box:after,.ui.checkbox input:not([type=radio]):indeterminate:focus~label:after{color:rgba(0,0,0,.95)}.ui.read-only.checkbox,.ui.read-only.checkbox label{cursor:default}.ui.checkbox input[disabled]~.box:after,.ui.checkbox input[disabled]~label,.ui.disabled.checkbox .box:after,.ui.disabled.checkbox label{color:#000;cursor:default!important;opacity:.5}.ui.checkbox input.hidden{z-index:-1}.ui.checkbox input.hidden+label{cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none}.ui.radio.checkbox{min-height:15px}.ui.radio.checkbox .box,.ui.radio.checkbox label{padding-left:1.85714em}.ui.radio.checkbox .box:before,.ui.radio.checkbox label:before{border-radius:500rem;content:"";height:15px;left:0;top:1px;-webkit-transform:none;transform:none;width:15px}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{background-color:#2a2a2a;border:none;border-radius:500rem;content:""!important;height:15px;left:0;line-height:15px;top:1px;-webkit-transform:scale(.4666666667);transform:scale(.4666666667);width:15px}.ui.radio.checkbox input:focus~.box:before,.ui.radio.checkbox input:focus~label:before{background-color:#fff}.ui.radio.checkbox input:focus~.box:after,.ui.radio.checkbox input:focus~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:indeterminate~.box:after,.ui.radio.checkbox input:indeterminate~label:after{opacity:0}.ui.radio.checkbox input:checked~.box:before,.ui.radio.checkbox input:checked~label:before{background-color:#fff}.ui.radio.checkbox input:checked~.box:after,.ui.radio.checkbox input:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:focus:checked~.box:before,.ui.radio.checkbox input:focus:checked~label:before{background-color:#fff}.ui.radio.checkbox input:focus:checked~.box:after,.ui.radio.checkbox input:focus:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.slider.checkbox{min-height:1.25rem}.ui.slider.checkbox input{height:1.25rem;width:3.5rem}.ui.slider.checkbox .box,.ui.slider.checkbox label{color:rgba(0,0,0,.4);line-height:1rem;padding-left:4.5rem}.ui.slider.checkbox .box:before,.ui.slider.checkbox label:before{background-color:rgba(0,0,0,.05);border:none!important;border-radius:500rem;content:"";display:block;height:.2142857143rem;left:0;position:absolute;top:.4rem;-webkit-transform:none;transform:none;transition:background .3s ease;width:3.5rem;z-index:1}.ui.slider.checkbox .box:after,.ui.slider.checkbox label:after{background:#fff linear-gradient(transparent,rgba(0,0,0,.05));border:none;border-radius:500rem;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),inset 0 0 0 1px rgba(34,36,38,.15);content:""!important;height:1.5rem;left:0;opacity:1;position:absolute;top:-.25rem;-webkit-transform:none;transform:none;transition:left .3s ease;width:1.5rem;z-index:2}.ui.slider.checkbox input:focus~.box:before,.ui.slider.checkbox input:focus~label:before{background-color:rgba(0,0,0,.15);border:none}.ui.slider.checkbox .box:hover,.ui.slider.checkbox label:hover{color:rgba(0,0,0,.8)}.ui.slider.checkbox .box:hover:before,.ui.slider.checkbox label:hover:before{background:rgba(0,0,0,.15)}.ui.slider.checkbox input:checked~.box,.ui.slider.checkbox input:checked~label{color:rgba(0,0,0,.95)!important}.ui.slider.checkbox input:checked~.box:before,.ui.slider.checkbox input:checked~label:before{background-color:#545454!important}.ui.slider.checkbox input:checked~.box:after,.ui.slider.checkbox input:checked~label:after{left:2rem}.ui.slider.checkbox input:focus:checked~.box,.ui.slider.checkbox input:focus:checked~label{color:rgba(0,0,0,.95)!important}.ui.slider.checkbox input:focus:checked~.box:before,.ui.slider.checkbox input:focus:checked~label:before{background-color:#000!important}.ui.toggle.checkbox{min-height:1.5rem}.ui.toggle.checkbox input{height:1.5rem;width:3.5rem}.ui.toggle.checkbox .box,.ui.toggle.checkbox label{color:#2a2a2a;min-height:1.5rem;padding-left:4.5rem}.ui.toggle.checkbox label{padding-top:.15em}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{background:rgba(0,0,0,.05);border:none;border-radius:500rem;box-shadow:none;content:"";display:block;height:1.5rem;position:absolute;top:0;-webkit-transform:none;transform:none;width:3.5rem;z-index:1}.ui.toggle.checkbox .box:after,.ui.toggle.checkbox label:after{background:#fff linear-gradient(transparent,rgba(0,0,0,.05));border:none;border-radius:500rem;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),inset 0 0 0 1px rgba(34,36,38,.15);content:""!important;height:1.5rem;left:0;opacity:1;position:absolute;top:0;transition:background .3s ease,left .3s ease;width:1.5rem;z-index:2}.ui.toggle.checkbox input~.box:after,.ui.toggle.checkbox input~label:after{box-shadow:0 1px 2px 0 rgba(34,36,38,.15),inset 0 0 0 1px rgba(34,36,38,.15);left:-.05rem}.ui.toggle.checkbox .box:hover:before,.ui.toggle.checkbox input:focus~.box:before,.ui.toggle.checkbox input:focus~label:before,.ui.toggle.checkbox label:hover:before{background-color:rgba(0,0,0,.15);border:none}.ui.toggle.checkbox input:checked~.box,.ui.toggle.checkbox input:checked~label{color:rgba(0,0,0,.95)!important}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before{background-color:#2185d0!important}.ui.toggle.checkbox input:checked~.box:after,.ui.toggle.checkbox input:checked~label:after{box-shadow:0 1px 2px 0 rgba(34,36,38,.15),inset 0 0 0 1px rgba(34,36,38,.15);left:2.15rem}.ui.toggle.checkbox input:focus:checked~.box,.ui.toggle.checkbox input:focus:checked~label{color:rgba(0,0,0,.95)!important}.ui.toggle.checkbox input:focus:checked~.box:before,.ui.toggle.checkbox input:focus:checked~label:before{background-color:#0771c1!important}.ui.fitted.checkbox .box,.ui.fitted.checkbox label{padding-left:0!important}.ui.fitted.slider.checkbox,.ui.fitted.toggle.checkbox{width:3.5rem}/*! - * # Semantic UI - Search - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */body.search .paginated.story.items a:visited{color:#5d4488}.ui.search{position:relative}.ui.search>.prompt{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-appearance:none;background:#fff;border:1px solid rgba(34,36,38,.15);box-shadow:inset 0 0 0 0 transparent;color:#2a2a2a;font-size:1rem;font-style:normal;font-weight:400;line-height:1.0625em;margin:0;outline:none;padding:.7544642857em 1em;text-shadow:none;transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease}.ui.search .prompt{border-radius:.2857142857rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search>.results{background:#fff;border:1px solid #d4d4d5;border-radius:.2857142857rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);display:none;left:0;margin-top:.5em;position:absolute;text-align:left;text-transform:none;top:100%;-webkit-transform-origin:center top;transform-origin:center top;white-space:normal;width:18em;z-index:998}.ui.search>.results>:first-child{border-radius:.2857142857rem .2857142857rem 0 0}.ui.search>.results>:last-child{border-radius:0 0 .2857142857rem .2857142857rem}.ui.search>.results .result{border-bottom:1px solid rgba(34,36,38,.1);color:#2a2a2a;cursor:pointer;display:block;font-family:var(--wp--preset--font-family--sans-serif);font-size:1em;line-height:1.33;overflow:hidden;padding:.8571428571rem 1.1428571429rem}.ui.search>.results .result:last-child{border-bottom:none!important}.ui.search>.results .result .image{background:none;border-radius:.25em;float:right;height:3em;overflow:hidden;width:5em}.ui.search>.results .result .image img{display:block;height:100%;width:auto}.ui.search>.results .result .image+.content{margin:0 6em 0 0}.ui.search>.results .result .title{color:rgba(0,0,0,.85);font-family:var(--wp--preset--font-family--sans-serif);font-size:1rem;font-weight:700;margin:-.1428571429em 0 0}.ui.search>.results .result .description{color:rgba(0,0,0,.4);font-size:.9285714286rem;margin-top:0}.ui.search>.results .result .price{color:#21ba45;float:right}.ui.search>.results>.message{padding:1em}.ui.search>.results>.message .header{color:#2a2a2a;font-family:var(--wp--preset--font-family--sans-serif);font-size:1rem;font-weight:700}.ui.search>.results>.message .description{color:#2a2a2a;font-size:1em;margin-top:.25rem}.ui.search>.results>.action{background:#f3f4f5;border-top:none;color:#2a2a2a;display:block;font-weight:700;padding:.9285714286rem 1rem;text-align:center}.ui.search>.prompt:focus{background:#fff;border-color:rgba(34,36,38,.35);color:rgba(0,0,0,.95)}.ui.loading.search .input>i.icon:before{border:.2em solid rgba(0,0,0,.1);border-radius:500rem}.ui.loading.search .input>i.icon:after,.ui.loading.search .input>i.icon:before{content:"";height:1.2857142857em;left:50%;margin:-.6428571429em 0 0 -.6428571429em;position:absolute;top:50%;width:1.2857142857em}.ui.loading.search .input>i.icon:after{-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid transparent;border-radius:500rem;border-top-color:#767676;box-shadow:0 0 0 1px transparent}.ui.category.search>.results .category .result:hover,.ui.search>.results .result:hover{background:#f9fafb}.ui.search .action:hover{background:#e0e0e0}.ui.category.search>.results .category.active{background:#f3f4f5}.ui.category.search>.results .category.active>.name{color:#2a2a2a}.ui.category.search>.results .category .result.active,.ui.search>.results .result.active{background:#f3f4f5;border-left-color:rgba(34,36,38,.1);box-shadow:none;position:relative}.ui.search>.results .result.active .description,.ui.search>.results .result.active .title{color:rgba(0,0,0,.85)}.ui.disabled.search{cursor:default;opacity:.45;pointer-events:none}.ui.search.selection .prompt{border-radius:.2857142857rem}.ui.search.selection>.icon.input>.remove.icon{color:"";left:auto;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:color .1s ease,opacity .1s ease}.ui.search.selection>.icon.input>.active.remove.icon{cursor:pointer;opacity:.8;pointer-events:auto}.ui.search.selection>.icon.input:not([class*="left icon"])>.icon~.remove.icon{right:1.85714em}.ui.search.selection>.icon.input>.remove.icon:hover{color:#db2828;opacity:1}.ui.category.search .results{width:28em}.ui.category.search .results.animating,.ui.category.search .results.visible{display:table}.ui.category.search>.results .category{background:#f3f4f5;box-shadow:none;display:table-row;transition:background .1s ease,border-color .1s ease}.ui.category.search>.results .category:last-child{border-bottom:none}.ui.category.search>.results .category:first-child .name+.result{border-radius:0 .2857142857rem 0 0}.ui.category.search>.results .category:last-child .result:last-child{border-radius:0 0 .2857142857rem 0}.ui.category.search>.results .category>.name{background:transparent;border-bottom:1px solid rgba(34,36,38,.1);color:rgba(0,0,0,.4);display:table-cell;font-family:var(--wp--preset--font-family--default);font-size:1em;font-weight:700;padding:.4em 1em;text-overflow:ellipsis;white-space:nowrap;width:100px}.ui.category.search>.results .category .results{background:#fff;border-bottom:1px solid rgba(34,36,38,.1);border-left:1px solid rgba(34,36,38,.15);display:table-cell}.ui.category.search>.results .category .result{border-bottom:1px solid rgba(34,36,38,.1);padding:.8571428571rem 1.1428571429rem;transition:background .1s ease,border-color .1s ease}.ui[class*="left aligned"].search>.results{left:0;right:auto}.ui[class*="right aligned"].search>.results{left:auto;right:0}.ui.fluid.search .results,.ui.fluid.search .ui.input{width:100%}.ui.mini.search{font-size:.7857142857rem}.ui.small.search{font-size:.8571428571rem}.ui.search{font-size:.9285714286rem}.ui.large.search{font-size:1rem}.ui.big.search{font-size:1.1428571429rem}.ui.huge.search{font-size:1.2857142857rem}.ui.massive.search{font-size:1.4285714286rem}@media only screen and (max-width:767px){.ui.search .results{max-width:calc(100vw - 2rem)}}/*! - * # Semantic UI - Dropdown - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */@font-face{font-family:Dropdown;font-style:normal;font-weight:400;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format("woff")}:root{--prc--icon--dropdown--family:"Dropdown";--prc--icon--dropdown--content:""}.ui.dropdown{-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer;display:inline-block;font-family:var(--wp--preset--font-family--sans-serif);outline:none;position:relative;text-align:left;transition:box-shadow .1s ease,width .1s ease}.ui.dropdown .menu{background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);cursor:auto;display:none;font-size:1em;margin:0;min-width:-webkit-max-content;min-width:max-content;outline:none;padding:0;position:absolute;text-align:left;text-shadow:none;top:100%;transition:opacity .1s ease;will-change:transform,opacity;z-index:11}.ui.dropdown .menu>*{white-space:nowrap}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none!important}.ui.dropdown>.dropdown.icon{-webkit-backface-visibility:hidden;backface-visibility:hidden;font-family:Dropdown!important;font-size:1em;font-style:normal;font-weight:400;height:1em;line-height:1;margin:0 0 0 1rem;position:relative;text-align:center;width:1.23em;width:auto}.ui.dropdown>.dropdown.icon:before{content:""}.ui.dropdown .menu>.item .dropdown.icon{float:right;margin:0 0 0 1em;width:auto}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown .menu .item .dropdown.icon:before{content:""}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:""}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:""}.ui.dropdown>.clear.icon:before{content:""}.ui.dropdown>.text{display:inline-block;transition:none}.ui.dropdown .menu>.item{-webkit-touch-callout:none;border:none;box-shadow:none;color:#2a2a2a;cursor:pointer;display:block;font-size:1rem;font-weight:400;height:auto;line-height:1em;padding:.7857142857rem 1.1428571429rem!important;position:relative;text-align:left;text-transform:none}.ui.dropdown .menu>.item:first-child{border-top-width:0}.ui.dropdown .menu .item>[class*="right floated"],.ui.dropdown>.text>[class*="right floated"]{float:right!important;margin-left:1em!important;margin-right:0!important}.ui.dropdown .menu .item>[class*="left floated"],.ui.dropdown>.text>[class*="left floated"]{float:left!important;margin-left:0!important;margin-right:1em!important}.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0}.ui.dropdown .menu>.header{color:rgba(0,0,0,.85);font-size:.7857142857em;font-weight:700;margin:1rem 0 .75rem;padding:0 1.1428571429rem;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(34,36,38,.1);height:0;margin:.5em 0}.ui.dropdown.dropdown .menu>.input{display:flex;margin:1.1428571429rem .7857142857rem;min-width:10rem;width:auto}.ui.dropdown .menu>.header+.input{margin-top:0}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-bottom:.5em;padding-top:.5em}.ui.dropdown .menu>.item>.description,.ui.dropdown>.text>.description{color:rgba(0,0,0,.4);float:right;margin:0 0 0 1em}.ui.dropdown .menu>.message{font-weight:400;padding:.7857142857rem 1.1428571429rem}.ui.dropdown .menu>.message:not(.ui){color:rgba(0,0,0,.4)}.ui.dropdown .menu .menu{border-radius:.2857142857rem!important;left:100%;margin:0 0 0 -.5em!important;right:auto;top:0!important;z-index:21!important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-top:0}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{float:none;margin-left:0;margin-right:.7857142857rem}.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.image,.ui.dropdown>.text>img{display:inline-block;margin-bottom:-.5em;margin-top:-.5em;max-height:2em;vertical-align:top;width:auto}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.buttons>.ui.dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.menu .right.menu .dropdown:last-child .menu{left:auto;right:0}.ui.label.dropdown .menu{min-width:100%}.ui.dropdown.icon.button>.dropdown.icon{margin:0}.ui.button.dropdown .menu{min-width:100%}.ui.sticky.fixed.top .ui.block.dropdown{margin-bottom:0;margin-left:-1em;margin-right:-1em;padding-left:1em;padding-right:1em;width:calc(100% + 2em)}.ui.block.dropdown{border-bottom:1px solid #dadbdb;border-top:1px solid #dadbdb;margin:0 0 1rem;padding:1em 0}.ui.block.dropdown .text{color:#282828;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase}.ui.block.dropdown .menu{border-left:0;border-radius:0;border-right:0;min-width:inherit;width:100%}.ui.block.dropdown .menu .item{white-space:inherit}.ui.selection.dropdown{word-wrap:break-word;background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;box-shadow:none;color:#2a2a2a;cursor:pointer;display:inline-block;line-height:1em;min-height:2.5625em;min-width:14em;outline:0;padding:.7857142857em 2.1em .7857142857em 1em;-webkit-transform:rotate(0deg);transform:rotate(0deg);transition:box-shadow .1s ease,width .1s ease;white-space:normal}.ui.selection.dropdown.active,.ui.selection.dropdown.visible{z-index:10}select.ui.dropdown{border:1px solid rgba(34,36,38,.15);height:38px;padding:.5em;visibility:visible}.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon,.ui.selection.dropdown>.search.icon{cursor:pointer;height:auto;line-height:1.0625em;margin:-.7857142857em;opacity:.8;padding:.7857142857em;position:absolute;right:1em;top:.7857142857em;transition:opacity .1s ease;width:auto;z-index:3}.ui.compact.selection.dropdown{min-width:0}.ui.selection.dropdown .menu{-webkit-overflow-scrolling:touch;-webkit-backface-visibility:hidden;backface-visibility:hidden;border-radius:0 0 .2857142857rem .2857142857rem;border-top-width:0!important;box-shadow:0 2px 3px 0 rgba(34,36,38,.15);margin:-1px;min-width:calc(100% + 2px);outline:none;overflow-x:hidden;overflow-y:auto;transition:opacity .1s ease;width:auto;width:calc(100% + 2px)}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}.ui.selection.dropdown .menu>.message{padding:.7857142857rem 1.1428571429rem}@media only screen and (max-width:767px){.ui.selection.dropdown .menu{max-height:8.0142857143rem}}@media only screen and (min-width:768px){.ui.selection.dropdown .menu{max-height:10.6857142857rem}}@media only screen and (min-width:992px){.ui.selection.dropdown .menu{max-height:16.0285714286rem}}@media only screen and (min-width:1920px){.ui.selection.dropdown .menu{max-height:21.3714285714rem}}.ui.selection.dropdown .menu>.item{word-wrap:normal;border-top:1px solid #fafafa;padding:.7857142857rem 1.1428571429rem!important;white-space:normal}.ui.selection.dropdown .menu>.hidden.addition.item{display:none}.ui.selection.dropdown:hover{border-color:rgba(34,36,38,.35);box-shadow:none}.ui.selection.active.dropdown,.ui.selection.active.dropdown .menu{border-color:#000;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.dropdown:focus{border-color:#000;box-shadow:none}.ui.selection.dropdown:focus .menu{border-color:#000;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.visible.dropdown>.text:not(.default){color:rgba(0,0,0,.8);font-weight:400}.ui.selection.active.dropdown:hover,.ui.selection.active.dropdown:hover .menu{border-color:#000;box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:"";z-index:3}.ui.active.selection.dropdown{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.active.empty.selection.dropdown{border-radius:.2857142857rem!important;box-shadow:none!important}.ui.active.empty.selection.dropdown .menu{border:none!important;box-shadow:none!important}.ui.search.dropdown{min-width:""}.ui.search.dropdown>input.search{-webkit-tap-highlight-color:rgba(255,255,255,0);background:none transparent!important;border:none!important;box-shadow:none!important;cursor:text;left:1px;outline:none;padding:inherit;position:absolute;top:0;width:100%;z-index:2}.ui.search.dropdown>.text{cursor:text;left:1px;position:relative;z-index:3}.ui.search.selection.dropdown>input.search,.ui.search.selection.dropdown>span.sizer{line-height:1.0625em;padding:.7544642857em 2.1em .7544642857em 1em}.ui.search.selection.dropdown>span.sizer{display:none;white-space:pre}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown input.search:focus+.text .flag,.ui.active.search.dropdown input.search:focus+.text .icon{opacity:.45}.ui.active.search.dropdown input.search:focus+.text{color:#9d9d9d!important}.ui.search.dropdown .menu{-webkit-overflow-scrolling:touch;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow-x:hidden;overflow-y:auto}@media only screen and (max-width:767px){.ui.search.dropdown .menu{max-height:8.0142857143rem}}@media only screen and (min-width:768px){.ui.search.dropdown .menu{max-height:10.6857142857rem}}@media only screen and (min-width:992px){.ui.search.dropdown .menu{max-height:16.0285714286rem}}@media only screen and (min-width:1920px){.ui.search.dropdown .menu{max-height:21.3714285714rem}}.ui.multiple.dropdown{padding:.2514880952em 2.1em .2514880952em .3571428571em}.ui.multiple.dropdown .menu{cursor:auto}.ui.multiple.search.dropdown,.ui.multiple.search.dropdown>input.search{cursor:text}.ui.multiple.dropdown>.label{box-shadow:inset 0 0 0 1px rgba(34,36,38,.15);display:inline-block;font-size:1em;margin:.1428571429rem .2857142857rem .1428571429rem 0;padding:.3571428571em .7857142857em;-webkit-user-select:none;-ms-user-select:none;user-select:none;vertical-align:top;white-space:normal}.ui.multiple.dropdown .dropdown.icon{margin:"";padding:""}.ui.multiple.dropdown>.text{line-height:1.2142857143em;margin:.5029761905em 0 .5029761905em .6428571429em;max-width:100%;padding:0;position:static}.ui.multiple.dropdown>.label~input.search{margin-left:.1428571429em!important}.ui.multiple.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>.text{display:inline-block;left:0;line-height:1.2142857143em;margin:.5029761905em 0 .5029761905em .6428571429em;padding:inherit;position:absolute;top:0}.ui.multiple.search.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>input.search{line-height:1.2142857143em;margin:.5029761905em 0 .5029761905em .6428571429em;max-width:100%;padding:0;position:static;width:2.2em}.ui.range-max.dropdown,.ui.range-min.dropdown{min-width:inherit!important}.ui.inline.dropdown{color:inherit;cursor:pointer;display:inline-block}.ui.inline.dropdown .dropdown.icon{margin:0 .2142857143em;vertical-align:baseline}.ui.inline.dropdown>.text{font-weight:700}.ui.inline.dropdown .menu{border-radius:.2857142857rem;cursor:auto;margin-top:.2142857143em}.ui.dropdown .menu .active.item{background:transparent;box-shadow:none;color:rgba(0,0,0,.95);font-weight:700;z-index:12}.ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);z-index:13}.ui.loading.dropdown>i.icon{height:1em!important}.ui.loading.selection.dropdown>i.icon{padding:1.5em 1.2857142857em!important}.ui.loading.dropdown>i.icon:before{border:.2em solid rgba(0,0,0,.1);border-radius:500rem}.ui.loading.dropdown>i.icon:after,.ui.loading.dropdown>i.icon:before{content:"";height:1.2857142857em;left:50%;margin:-.6428571429em 0 0 -.6428571429em;position:absolute;top:50%;width:1.2857142857em}.ui.loading.dropdown>i.icon:after{-webkit-animation:dropdown-spin .6s linear;animation:dropdown-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid transparent;border-radius:500rem;border-top-color:#767676;box-shadow:0 0 0 1px transparent}.ui.loading.dropdown.button>i.icon:after,.ui.loading.dropdown.button>i.icon:before{display:none}@-webkit-keyframes dropdown-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes dropdown-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.ui.default.dropdown:not(.button)>.text,.ui.dropdown:not(.button)>.default.text{color:#000}.ui.default.dropdown:not(.button)>input:focus~.text,.ui.dropdown:not(.button)>input:focus~.default.text{color:#9d9d9d}.ui.loading.dropdown>.text{transition:none}.ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown>.loading.menu{left:0!important;right:auto!important}.ui.dropdown>.menu .loading.menu{left:100%!important;right:auto!important}.ui.dropdown .menu .selected.item,.ui.dropdown.selected{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none!important}.ui.dropdown.error,.ui.dropdown.error>.default.text,.ui.dropdown.error>.text{color:#9f3a38}.ui.selection.dropdown.error{background:#fff6f6;border-color:#e0b4b4}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu,.ui.selection.dropdown.error:hover{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item{color:#9f3a38}.ui.multiple.selection.error.dropdown>.label{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item:hover{background-color:#fff2f2}.ui.dropdown.error>.menu .active.item{background-color:#fdcfcf}.ui.dropdown>.clear.dropdown.icon{opacity:.8;transition:opacity .1s ease}.ui.dropdown>.clear.dropdown.icon:hover{opacity:1}.ui.disabled.dropdown,.ui.dropdown .menu>.disabled.item{cursor:default;opacity:.45;pointer-events:none}.ui.dropdown .menu{left:0}.ui.dropdown .menu .right.menu,.ui.dropdown .right.menu>.menu{border-radius:.2857142857rem!important;left:100%!important;right:auto!important}.ui.dropdown>.left.menu{left:auto!important;right:0!important}.ui.dropdown .menu .left.menu,.ui.dropdown>.left.menu .menu{border-radius:.2857142857rem!important;left:auto;margin:0 -.5em 0 0!important;right:100%}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{float:left;margin:0;width:auto}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em;margin-right:0}.ui.upward.dropdown>.menu{border-radius:.2857142857rem .2857142857rem 0 0;bottom:100%;box-shadow:0 0 3px 0 rgba(0,0,0,.08);top:auto}.ui.dropdown .upward.menu{bottom:0!important;top:auto!important}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.2857142857rem .2857142857rem 0 0!important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:.2857142857rem .2857142857rem 0 0}.ui.upward.selection.dropdown .menu{border-bottom-width:0!important;border-top-width:1px!important;box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.upward.selection.dropdown:hover{box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown,.ui.upward.selection.dropdown.visible{border-radius:0 0 .2857142857rem .2857142857rem!important}.ui.upward.selection.dropdown.visible{box-shadow:0 0 3px 0 rgba(0,0,0,.08)}.ui.upward.active.selection.dropdown:hover{box-shadow:0 0 3px 0 rgba(0,0,0,.05)}.ui.upward.active.selection.dropdown:hover .menu{box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto}.ui.scrolling.dropdown .menu{-webkit-overflow-scrolling:touch;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow-x:hidden}.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{min-width:100%!important;overflow-y:auto;width:auto!important}.ui.dropdown .scrolling.menu{border:none;border-radius:0!important;border-top:1px solid rgba(34,36,38,.15);box-shadow:none!important;margin:0!important;position:static}.ui.dropdown .scrolling.menu .item:first-child,.ui.dropdown .scrolling.menu>.item.item.item,.ui.scrolling.dropdown .menu .item.item.item,.ui.scrolling.dropdown .menu .item:first-child{border-top:none}.ui.dropdown>.animating.menu .scrolling.menu,.ui.dropdown>.visible.menu .scrolling.menu{display:block}@media (-ms-high-contrast:none){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{min-width:calc(100% - 17px)}}@media only screen and (max-width:767px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:10.2857142857rem}}@media only screen and (min-width:768px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:15.4285714286rem}}@media only screen and (min-width:992px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:20.5714285714rem}}@media only screen and (min-width:1920px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:20.5714285714rem}}.ui.simple.dropdown .menu:after,.ui.simple.dropdown .menu:before{display:none}.ui.simple.dropdown .menu{display:block;height:0;opacity:0;overflow:hidden;position:absolute;top:-9999px!important;transition:opacity .1s ease;width:0}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{height:auto;opacity:1;overflow:visible;top:100%!important;width:auto}.ui.simple.dropdown:hover>.menu>.item:hover>.menu,.ui.simple.dropdown>.menu>.item:active>.menu{height:auto;left:100%!important;opacity:1;overflow:visible;top:0!important;width:auto}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0;overflow:hidden;width:0}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;min-width:0;width:100%}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{border-radius:.2857142857rem!important;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)!important;left:0;right:auto}.ui.floating.dropdown>.menu{border-radius:.2857142857rem!important;margin-top:.5em!important}.ui.pointing.dropdown>.menu{border-radius:.2857142857rem;margin-top:.7857142857rem;top:100%}.ui.pointing.dropdown>.menu:after{background:#fff;box-shadow:-2px 0 0 rgba(34,36,38,.15);content:"";display:block;height:.5em;left:50%;margin:0 0 0 -.25em;pointer-events:none;position:absolute;top:-.25em;-webkit-transform:rotate(45deg);transform:rotate(45deg);visibility:visible;width:.5em;z-index:2}.ui.top.left.pointing.dropdown>.menu{bottom:auto;left:0;margin:1em 0 0;right:auto;top:100%}.ui.top.left.pointing.dropdown>.menu:after{left:1em;margin:0;right:auto;top:-.25em;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{bottom:auto;left:auto;margin:1em 0 0;right:0;top:100%}.ui.top.pointing.dropdown>.left.menu:after,.ui.top.right.pointing.dropdown>.menu:after{left:auto!important;margin:0;right:1em!important;top:-.25em;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{left:100%;margin:0 0 0 1em;right:auto;top:0}.ui.left.pointing.dropdown>.menu:after{left:-.25em;margin:0;top:1em;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu{left:auto!important;margin:0 1em 0 0;right:100%!important}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu:after{left:auto;margin:0;right:-.25em;top:1em;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.ui.right.pointing.dropdown>.menu{left:auto;margin:0 1em 0 0;right:100%;top:0}.ui.right.pointing.dropdown>.menu:after{left:auto;margin:0;right:-.25em;top:1em;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{bottom:100%;left:0;margin:0 0 1em;right:auto;top:auto}.ui.bottom.pointing.dropdown>.menu:after{bottom:-.25em;margin:0;right:auto;top:auto;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{bottom:0!important;top:auto!important}.ui.bottom.left.pointing.dropdown>.menu{left:0;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{left:auto;right:0}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}.ui.pointing.upward.dropdown .menu,.ui.top.pointing.upward.dropdown .menu{border-radius:.2857142857rem;bottom:100%!important;margin:0 0 .7857142857rem;top:auto!important}.ui.pointing.upward.dropdown .menu:after,.ui.top.pointing.upward.dropdown .menu:after{bottom:auto!important;box-shadow:1px 1px 0 0 rgba(34,36,38,.15);margin:-.25em 0 0;top:100%!important}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu{bottom:0!important;margin:0 1em 0 0;top:auto!important}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{bottom:0!important;box-shadow:-2px 0 0 rgba(34,36,38,.15);margin:0 0 1em;top:auto!important}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu{bottom:0!important;margin:0 0 0 1em;top:auto!important}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{bottom:0!important;box-shadow:-2px 0 0 rgba(34,36,38,.15);margin:0 0 1em;top:auto!important}/*! - * # Semantic UI - Dimmer - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.dimmable:not(body){position:relative}.ui.dimmer{align-items:center;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;background-color:rgba(0,0,0,.85);display:none;flex-direction:column;height:100%;justify-content:center;left:0!important;line-height:1;opacity:0;padding:1em;position:absolute;text-align:center;top:0!important;transition:background-color .5s linear;-webkit-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:100%;will-change:opacity;z-index:1000}.ui.dimmer>.content{color:#fff;-webkit-user-select:text;-ms-user-select:text;user-select:text}.ui.segment>.ui.dimmer{border-radius:inherit!important}.ui.dimmer:not(.inverted)::-webkit-scrollbar-track{background:hsla(0,0%,100%,.1)}.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb{background:hsla(0,0%,100%,.25)}.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive{background:hsla(0,0%,100%,.15)}.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,100%,.35)}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:flex;opacity:1}.ui.disabled.dimmer{height:0!important;width:0!important}.dimmed.dimmable>.ui.animating.legacy.dimmer,.dimmed.dimmable>.ui.visible.legacy.dimmer,.ui.active.legacy.dimmer{display:block}.ui[class*="top aligned"].dimmer{justify-content:flex-start}.ui[class*="bottom aligned"].dimmer{justify-content:flex-end}.ui.page.dimmer{-webkit-perspective:2000px;perspective:2000px;position:fixed;-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform-style:"";transform-style:""}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.blurring.dimmable>:not(.dimmer){-webkit-filter:blur(0) grayscale(0);filter:blur(0) grayscale(0);transition:-webkit-filter .8s ease;transition:filter .8s ease;transition:filter .8s ease,-webkit-filter .8s ease}.blurring.dimmed.dimmable>:not(.dimmer){-webkit-filter:blur(5px) grayscale(.7);filter:blur(5px) grayscale(.7)}.blurring.dimmable>.dimmer{background-color:rgba(0,0,0,.6)}.blurring.dimmable>.inverted.dimmer{background-color:hsla(0,0%,100%,.6)}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background-color:hsla(0,0%,100%,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{background-color:transparent;display:block;height:0%;opacity:1;overflow:hidden;width:0;z-index:-100}.dimmed.dimmable>.ui.simple.dimmer{background-color:rgba(0,0,0,.85);height:100%;opacity:1;overflow:visible;width:100%;z-index:1}.ui.simple.inverted.dimmer{background-color:hsla(0,0%,100%,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:hsla(0,0%,100%,.85)}/*! - * # Semantic UI - Video - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.embed{background:#dcddde;height:0;max-width:100%;overflow:hidden;padding-bottom:56.25%;position:relative}.ui.embed embed,.ui.embed iframe,.ui.embed object{border:none;height:100%;left:0;margin:0;padding:0;position:absolute;top:0;width:100%}.ui.embed>.embed{display:none}.ui.embed>.placeholder{background-color:radial-gradient(transparent 45%,rgba(0,0,0,.3));display:block}.ui.embed>.icon,.ui.embed>.placeholder{cursor:pointer;height:100%;left:0;position:absolute;top:0;width:100%}.ui.embed>.icon{z-index:2}.ui.embed>.icon:after{background:radial-gradient(transparent 45%,rgba(0,0,0,.3));content:"";height:100%;left:0;opacity:.5;position:absolute;top:0;transition:opacity .5s ease;width:100%;z-index:3}.ui.embed>.icon:before{color:#fff;font-size:6rem;left:50%;position:absolute;text-shadow:0 2px 10px rgba(34,36,38,.2);top:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);transition:opacity .5s ease,color .5s ease;z-index:4;z-index:10}.ui.embed .icon:hover:after{background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:1}.ui.embed .icon:hover:before{color:#fff}.ui.active.embed>.icon,.ui.active.embed>.placeholder{display:none}.ui.active.embed>.embed{display:block}.ui.square.embed{padding-bottom:100%}.ui[class*="4:3"].embed{padding-bottom:75%}.ui[class*="16:9"].embed{padding-bottom:56.25%}.ui[class*="21:9"].embed{padding-bottom:42.8571428571%}.video-player{position:relative;z-index:10}.video-player .close{background-color:#fff;line-height:20px}.video-player .close>span{cursor:pointer;font-size:12px;font-weight:700;text-transform:uppercase}.video-player.active-player .close .closed{display:none}.video-player.active-player .close .opened{display:inline-block}.video-player .close .opened{display:none}.responsive-embed{height:0;margin-bottom:30px;overflow:hidden;padding-bottom:56.25%;padding-top:30px;position:relative}.responsive-embed embed,.responsive-embed iframe,.responsive-embed object{height:100%;left:0;position:absolute;top:0;width:100%}/*! - * # Semantic UI - Modal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.modal{background:#fff;border:none;border-radius:.2857142857rem;box-shadow:1px 3px 3px 0 rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);display:none;flex:0 0 auto;position:absolute;text-align:left;-webkit-transform-origin:50% 25%;transform-origin:50% 25%;-webkit-user-select:text;-ms-user-select:text;user-select:text;will-change:top,left,margin,transform,opacity;z-index:1001}.ui.modal>.icon:first-child+*,.ui.modal>:first-child:not(.icon){border-top-left-radius:.2857142857rem;border-top-right-radius:.2857142857rem}.ui.modal>:last-child{border-bottom-left-radius:.2857142857rem;border-bottom-right-radius:.2857142857rem}.ui.modal>.close{color:var(--wp--preset--color--light-gray,#fff);cursor:pointer;font-size:1.25em;height:2.25rem;opacity:.8;padding:.625rem 0 0;position:absolute;right:-2.5rem;top:-2.5rem;width:2.25rem;z-index:1}.ui.modal>.close:hover{opacity:1}.ui.modal>.header{background:#fff;border-bottom:1px solid rgba(34,36,38,.15);box-shadow:none;color:rgba(0,0,0,.85);display:block;font-family:var(--wp--preset--font-family--sans-serif);margin:0;padding:1.25rem 1.5rem}.ui.modal>.header:not(.ui){font-size:1.4285714286rem;font-weight:700;line-height:1.2857142857em}.ui.modal>.content{background:#fff;display:block;font-size:1em;line-height:1.4;padding:1.5rem;width:100%}.ui.modal>.image.content{display:flex;flex-direction:row}.ui.modal>.content>.image{align-self:top;display:block;flex:0 1 auto;width:""}.ui.modal>[class*="top aligned"]{align-self:top}.ui.modal>[class*="middle aligned"]{align-self:middle}.ui.modal>[class*=stretched]{align-self:stretch}.ui.modal>.content>.description{align-self:top;display:block;flex:1 0 auto;min-width:0}.ui.modal>.content>.icon+.description,.ui.modal>.content>.image+.description{flex:0 1 auto;min-width:"";padding-left:2em;width:auto}.ui.modal>.content>.image>i.icon{font-size:8rem;line-height:1;margin:0;opacity:1;width:auto}.ui.modal>.actions{background:#f9fafb;border-top:1px solid rgba(34,36,38,.15);padding:1rem;text-align:right}.ui.modal .actions>.button{margin-left:.75em}@media only screen and (max-width:767px){.ui.modal{margin:0;width:95%}}@media only screen and (min-width:768px){.ui.modal{margin:0;width:88%}}@media only screen and (min-width:992px){.ui.modal{margin:0;width:850px}}@media only screen and (min-width:1200px){.ui.modal{margin:0;width:900px}}@media only screen and (min-width:1920px){.ui.modal{margin:0;width:950px}}@media only screen and (max-width:991px){.ui.modal>.header{padding-right:2.25rem}.ui.modal>.close{right:1rem;top:1.0535rem}}@media only screen and (max-width:767px){.ui.modal>.header{padding:.75rem 2.25rem .75rem 1rem!important}.ui.modal>.content{display:block;padding:1rem!important}.ui.modal>.close{right:.5rem!important;top:.5rem!important}.ui.modal .image.content{flex-direction:column}.ui.modal .content>.image{display:block;margin:0 auto!important;max-width:100%;padding:0 0 1rem!important;text-align:center}.ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}.ui.modal .content>.description{box-shadow:none;display:block;margin:0!important;padding:1rem 0!important;width:100%!important}.ui.modal>.actions{padding:1rem 1rem 0!important}.ui.modal .actions>.button,.ui.modal .actions>.buttons{margin-bottom:1rem}}.ui.inverted.dimmer>.ui.modal{box-shadow:1px 3px 10px 2px rgba(0,0,0,.2)}.ui.basic.modal{border:none;border-radius:0;box-shadow:none!important;color:#fff}.ui.basic.modal,.ui.basic.modal>.actions,.ui.basic.modal>.content,.ui.basic.modal>.header{background-color:transparent}.ui.basic.modal>.header{color:#fff}.ui.basic.modal>.close{color:var(--wp--preset--color--slate,#000)}.ui.inverted.dimmer>.basic.modal{color:#2a2a2a}.ui.inverted.dimmer>.ui.basic.modal>.header{color:rgba(0,0,0,.85)}.ui.legacy.modal,.ui.legacy.page.dimmer>.ui.modal{left:50%;top:50%}.ui.legacy.page.dimmer>.ui.scrolling.modal,.ui.page.dimmer>.ui.scrolling.legacy.modal,.ui.top.aligned.dimmer>.ui.legacy.modal,.ui.top.aligned.legacy.page.dimmer>.ui.modal{top:auto}.ui.loading.modal{display:block;visibility:hidden;z-index:-1}.ui.active.modal{display:block}.modals.dimmer[class*="top aligned"] .modal{margin:5vh auto}@media only screen and (max-width:767px){.modals.dimmer[class*="top aligned"] .modal{margin:1rem auto}}.legacy.modals.dimmer[class*="top aligned"]{padding-top:5vh}@media only screen and (max-width:767px){.legacy.modals.dimmer[class*="top aligned"]{padding-top:1rem}}.scrolling.dimmable.dimmed{overflow:hidden}.scrolling.dimmable>.dimmer{justify-content:flex-start}.scrolling.dimmable.dimmed>.dimmer{-webkit-overflow-scrolling:touch;overflow:auto}.scrolling.dimmable>.dimmer{position:fixed}.modals.dimmer .ui.scrolling.modal{margin:1rem auto}.scrolling.undetached.dimmable.dimmed{-webkit-overflow-scrolling:touch;overflow:auto}.scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}.scrolling.undetached.dimmable .ui.scrolling.modal{left:50%;margin-top:1rem!important;position:absolute}.ui.modal .scrolling.content{max-height:calc(80vh - 10em);overflow:auto}.ui.fullscreen.modal{margin:1em auto;width:95%!important}.ui.fullscreen.modal>.header{padding-right:2.25rem}.ui.fullscreen.modal>.close{right:1rem;top:1.0535rem}.ui.modal{font-size:1rem}.ui.mini.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.mini.modal{margin:0;width:95%}}@media only screen and (min-width:768px){.ui.mini.modal{margin:0;width:35.2%}}@media only screen and (min-width:992px){.ui.mini.modal{margin:0;width:340px}}@media only screen and (min-width:1200px){.ui.mini.modal{margin:0;width:360px}}@media only screen and (min-width:1920px){.ui.mini.modal{margin:0;width:380px}}@media only screen and (max-width:767px){.ui.tiny.modal{margin:0;width:95%}}@media only screen and (min-width:768px){.ui.tiny.modal{margin:0;width:52.8%}}@media only screen and (min-width:992px){.ui.tiny.modal{margin:0;width:510px}}@media only screen and (min-width:1200px){.ui.tiny.modal{margin:0;width:540px}}@media only screen and (min-width:1920px){.ui.tiny.modal{margin:0;width:570px}}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.small.modal{margin:0;width:95%}}@media only screen and (min-width:768px){.ui.small.modal{margin:0;width:70.4%}}@media only screen and (min-width:992px){.ui.small.modal{margin:0;width:680px}}@media only screen and (min-width:1200px){.ui.small.modal{margin:0;width:720px}}@media only screen and (min-width:1920px){.ui.small.modal{margin:0;width:760px}}.ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width:767px){.ui.large.modal{margin:0;width:95%}}@media only screen and (min-width:768px){.ui.large.modal{margin:0;width:88%}}@media only screen and (min-width:992px){.ui.large.modal{margin:0;width:1020px}}@media only screen and (min-width:1200px){.ui.large.modal{margin:0;width:1080px}}@media only screen and (min-width:1920px){.ui.large.modal{margin:0;width:1140px}}/*! - * # Semantic UI - Popup - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.popup{background:#fff;border:1px solid #d4d4d5;border-radius:.2857142857rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);color:#2a2a2a;display:none;font-style:normal;font-weight:400;line-height:1.4285em;max-width:250px;min-width:-webkit-min-content;min-width:min-content;padding:.833em 1em;position:absolute;right:0;top:0;z-index:1900}.ui.popup>.header{font-family:var(--wp--preset--font-family--sans-serif);font-size:1.1428571429em;font-weight:700;line-height:1.2;padding:0}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{background:#fff;box-shadow:1px 1px 0 0 #bababc;content:"";height:.7142857143em;position:absolute;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:.7142857143em;z-index:2}[data-tooltip]{position:relative}[data-tooltip]:before{box-shadow:1px 1px 0 0 #bababc;content:"";height:.7142857143em;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:.7142857143em;z-index:2}[data-tooltip]:after,[data-tooltip]:before{background:#fff;font-size:1rem;pointer-events:none;position:absolute}[data-tooltip]:after{border:1px solid #d4d4d5;border-radius:.2857142857rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);color:#2a2a2a;content:attr(data-tooltip);font-style:normal;font-weight:400;line-height:1.4285em;max-width:none;padding:.833em 1em;text-align:left;text-transform:none;white-space:nowrap;z-index:1}[data-tooltip]:not([data-position]):before{background:#fff;bottom:100%;left:50%;margin-bottom:.1428571429rem;margin-left:-.0714285714rem;right:auto;top:auto}[data-tooltip]:not([data-position]):after{bottom:100%;left:50%;margin-bottom:.5em;-webkit-transform:translateX(-50%);transform:translateX(-50%)}[data-tooltip]:after,[data-tooltip]:before{pointer-events:none;visibility:hidden}[data-tooltip]:before{opacity:0;-webkit-transform:rotate(45deg) scale(0)!important;transform:rotate(45deg) scale(0)!important;-webkit-transform-origin:center top;transform-origin:center top;transition:all .1s ease}[data-tooltip]:after{opacity:1;-webkit-transform-origin:center bottom;transform-origin:center bottom;transition:all .1s ease}[data-tooltip]:hover:after,[data-tooltip]:hover:before{pointer-events:auto;visibility:visible}[data-tooltip]:hover:before{opacity:1;-webkit-transform:rotate(45deg) scale(1)!important;transform:rotate(45deg) scale(1)!important}[data-tooltip]:after,[data-tooltip][data-position="bottom center"]:after,[data-tooltip][data-position="top center"]:after{-webkit-transform:translateX(-50%) scale(0)!important;transform:translateX(-50%) scale(0)!important}[data-tooltip]:hover:after,[data-tooltip][data-position="bottom center"]:hover:after{-webkit-transform:translateX(-50%) scale(1)!important;transform:translateX(-50%) scale(1)!important}[data-tooltip][data-position="left center"]:after,[data-tooltip][data-position="right center"]:after{-webkit-transform:translateY(-50%) scale(0)!important;transform:translateY(-50%) scale(0)!important}[data-tooltip][data-position="left center"]:hover:after,[data-tooltip][data-position="right center"]:hover:after{-webkit-transform:translateY(-50%) scale(1)!important;transform:translateY(-50%) scale(1)!important}[data-tooltip][data-position="bottom left"]:after,[data-tooltip][data-position="bottom right"]:after,[data-tooltip][data-position="top left"]:after,[data-tooltip][data-position="top right"]:after{-webkit-transform:scale(0)!important;transform:scale(0)!important}[data-tooltip][data-position="bottom left"]:hover:after,[data-tooltip][data-position="bottom right"]:hover:after,[data-tooltip][data-position="top left"]:hover:after,[data-tooltip][data-position="top right"]:hover:after{-webkit-transform:scale(1)!important;transform:scale(1)!important}[data-tooltip][data-inverted]:before{background:#1b1c1d;box-shadow:none!important}[data-tooltip][data-inverted]:after{background:#1b1c1d;border:none;box-shadow:none;color:#fff}[data-tooltip][data-inverted]:after .header{background-color:none;color:#fff}[data-position="top center"][data-tooltip]:after{bottom:100%;left:50%;margin-bottom:.5em;right:auto;top:auto;-webkit-transform:translateX(-50%);transform:translateX(-50%)}[data-position="top center"][data-tooltip]:before{background:#fff;bottom:100%;left:50%;margin-bottom:.1428571429rem;margin-left:-.0714285714rem;right:auto;top:auto}[data-position="top left"][data-tooltip]:after{bottom:100%;left:0;margin-bottom:.5em;right:auto;top:auto}[data-position="top left"][data-tooltip]:before{bottom:100%;left:1em;margin-bottom:.1428571429rem;margin-left:-.0714285714rem;right:auto;top:auto}[data-position="top right"][data-tooltip]:after{bottom:100%;left:auto;margin-bottom:.5em;right:0;top:auto}[data-position="top right"][data-tooltip]:before{bottom:100%;left:auto;margin-bottom:.1428571429rem;margin-left:-.0714285714rem;right:1em;top:auto}[data-position="bottom center"][data-tooltip]:after{bottom:auto;left:50%;margin-top:.5em;right:auto;top:100%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}[data-position="bottom center"][data-tooltip]:before{bottom:auto;left:50%;margin-left:-.0714285714rem;margin-top:.1428571429rem;right:auto;top:100%}[data-position="bottom left"][data-tooltip]:after{left:0;margin-top:.5em;top:100%}[data-position="bottom left"][data-tooltip]:before{bottom:auto;left:1em;margin-left:-.0714285714rem;margin-top:.1428571429rem;right:auto;top:100%}[data-position="bottom right"][data-tooltip]:after{margin-top:.5em;right:0;top:100%}[data-position="bottom right"][data-tooltip]:before{bottom:auto;left:auto;margin-left:-.1428571429rem;margin-top:.0714285714rem;right:1em;top:100%}[data-position="left center"][data-tooltip]:after{margin-right:.5em;right:100%;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}[data-position="left center"][data-tooltip]:before{margin-right:-.0714285714rem;margin-top:-.1428571429rem;right:100%;top:50%}[data-position="right center"][data-tooltip]:after{left:100%;margin-left:.5em;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}[data-position="right center"][data-tooltip]:before{left:100%;margin-left:.1428571429rem;margin-top:-.0714285714rem;top:50%}[data-position~=bottom][data-tooltip]:before{background:#fff;box-shadow:-2px 0 0 #bababc}[data-position="left center"][data-tooltip]:before{background:#fff;box-shadow:0 0 0 #bababc}[data-position="right center"][data-tooltip]:before{background:#fff;box-shadow:-1px 1px 0 0 #bababc}[data-position~=top][data-tooltip]:before{background:#fff}[data-inverted][data-position~=bottom][data-tooltip]:before{background:#1b1c1d;box-shadow:-2px 0 0 #bababc}[data-inverted][data-position="left center"][data-tooltip]:before{background:#1b1c1d;box-shadow:0 0 0 #bababc}[data-inverted][data-position="right center"][data-tooltip]:before{background:#1b1c1d;box-shadow:-1px 1px 0 0 #bababc}[data-inverted][data-position~=top][data-tooltip]:before{background:#1b1c1d}[data-position~=bottom][data-tooltip]:before{-webkit-transform-origin:center bottom;transform-origin:center bottom}[data-position~=bottom][data-tooltip]:after{-webkit-transform-origin:center top;transform-origin:center top}[data-position="left center"][data-tooltip]:before{-webkit-transform-origin:top center;transform-origin:top center}[data-position="left center"][data-tooltip]:after,[data-position="right center"][data-tooltip]:before{-webkit-transform-origin:right center;transform-origin:right center}[data-position="right center"][data-tooltip]:after{-webkit-transform-origin:left center;transform-origin:left center}.ui.popup{margin:0}.ui.top.popup{margin:0 0 .7142857143em}.ui.top.left.popup{-webkit-transform-origin:left bottom;transform-origin:left bottom}.ui.top.center.popup{-webkit-transform-origin:center bottom;transform-origin:center bottom}.ui.top.right.popup{-webkit-transform-origin:right bottom;transform-origin:right bottom}.ui.left.center.popup{margin:0 .7142857143em 0 0;-webkit-transform-origin:right 50%;transform-origin:right 50%}.ui.right.center.popup{margin:0 0 0 .7142857143em;-webkit-transform-origin:left 50%;transform-origin:left 50%}.ui.bottom.popup{margin:.7142857143em 0 0}.ui.bottom.left.popup{-webkit-transform-origin:left top;transform-origin:left top}.ui.bottom.center.popup{-webkit-transform-origin:center top;transform-origin:center top}.ui.bottom.right.popup{-webkit-transform-origin:right top;transform-origin:right top}.ui.bottom.center.popup:before{bottom:auto;box-shadow:-2px 0 0 #bababc;left:50%;margin-left:-.3071428571em;right:auto;top:-.3071428571em}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{bottom:auto;box-shadow:-2px 0 0 #bababc;left:1em;margin-left:0;right:auto;top:-.3071428571em}.ui.bottom.right.popup{margin-right:0}.ui.bottom.right.popup:before{bottom:auto;box-shadow:-2px 0 0 #bababc;left:auto;margin-left:0;right:1em;top:-.3071428571em}.ui.top.center.popup:before{bottom:-.3071428571em;left:50%;margin-left:-.3071428571em;right:auto;top:auto}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.3071428571em;left:1em;margin-left:0;right:auto;top:auto}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.3071428571em;left:auto;margin-left:0;right:1em;top:auto}.ui.left.center.popup:before{bottom:auto;box-shadow:0 0 0 #bababc;left:auto;margin-top:-.3071428571em;right:-.3071428571em;top:50%}.ui.right.center.popup:before{bottom:auto;box-shadow:-1px 1px 0 0 #bababc;left:-.3071428571em;margin-top:-.3071428571em;right:auto;top:50%}.ui.bottom.popup:before,.ui.left.center.popup:before,.ui.right.center.popup:before,.ui.top.popup:before{background:#fff}.ui.inverted.bottom.popup:before,.ui.inverted.left.center.popup:before,.ui.inverted.right.center.popup:before,.ui.inverted.top.popup:before{background:#1b1c1d}.ui.popup>.ui.grid:not(.padded){margin:-.7rem -.875rem;width:calc(100% + 1.75rem)}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.visible.popup{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width:767px){.ui.wide.popup,.ui[class*="very wide"].popup{max-width:250px}}.ui.fluid.popup{max-width:none;width:100%}.ui.inverted.popup{background:#1b1c1d;border:none;box-shadow:none;color:#fff}.ui.inverted.popup .header{background-color:none;color:#fff}.ui.inverted.popup:before{background-color:#1b1c1d;box-shadow:none!important}.ui.flowing.popup{max-width:none}.ui.mini.popup{font-size:.7857142857rem}.ui.tiny.popup{font-size:.8571428571rem}.ui.small.popup{font-size:.9285714286rem}.ui.popup{font-size:1rem}.ui.large.popup{font-size:1.1428571429rem}.ui.huge.popup{font-size:1.4285714286rem}/*! - * # Semantic UI - Progress Bar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.progress{background:#f0f0e7;border:none;border-radius:0;box-shadow:none;display:block;margin:1em 0 2.5em;max-width:100%;padding:0;position:relative}.ui.progress:first-child{margin:0 0 2.5em}.ui.progress:last-child{margin:0 0 1.5em}.ui.progress .bar{background:#888;border-radius:0;display:block;line-height:1;min-width:2em;position:relative;transition:width .1s ease,background-color .1s ease;width:0}.ui.progress .bar>.progress{bottom:auto;color:hsla(0,0%,100%,.7);font-size:.9285714286em;font-weight:400;left:auto;margin-top:-.5em;position:absolute;right:.5em;text-align:left;text-shadow:none;top:50%;white-space:nowrap;width:auto}.ui.progress>.percentage{float:right;font-size:.8rem;margin-right:5px;margin-top:-3.5px}.ui.progress>.label{bottom:auto;color:#2a2a2a;font-size:1em;font-weight:700;left:0;margin-top:.2em;position:absolute;right:auto;text-align:center;text-shadow:none;top:100%;transition:color .4s ease;width:100%}.ui.indicating.progress[data-percent^="1"] .bar,.ui.indicating.progress[data-percent^="2"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent^="3"] .bar{background-color:#efbc72}.ui.indicating.progress[data-percent^="4"] .bar,.ui.indicating.progress[data-percent^="5"] .bar{background-color:#e6bb48}.ui.indicating.progress[data-percent^="6"] .bar{background-color:#ddc928}.ui.indicating.progress[data-percent^="7"] .bar,.ui.indicating.progress[data-percent^="8"] .bar{background-color:#b4d95c}.ui.indicating.progress[data-percent^="100"] .bar,.ui.indicating.progress[data-percent^="9"] .bar{background-color:#66da81}.ui.indicating.progress[data-percent^="1"] .label,.ui.indicating.progress[data-percent^="100"] .label,.ui.indicating.progress[data-percent^="2"] .label,.ui.indicating.progress[data-percent^="3"] .label,.ui.indicating.progress[data-percent^="4"] .label,.ui.indicating.progress[data-percent^="5"] .label,.ui.indicating.progress[data-percent^="6"] .label,.ui.indicating.progress[data-percent^="7"] .label,.ui.indicating.progress[data-percent^="8"] .label,.ui.indicating.progress[data-percent^="9"] .label{color:#2a2a2a}.ui.indicating.progress[data-percent="1"] .bar,.ui.indicating.progress[data-percent="2"] .bar,.ui.indicating.progress[data-percent="3"] .bar,.ui.indicating.progress[data-percent="4"] .bar,.ui.indicating.progress[data-percent="5"] .bar,.ui.indicating.progress[data-percent="6"] .bar,.ui.indicating.progress[data-percent="7"] .bar,.ui.indicating.progress[data-percent="8"] .bar,.ui.indicating.progress[data-percent="9"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent="1"] .label,.ui.indicating.progress[data-percent="2"] .label,.ui.indicating.progress[data-percent="3"] .label,.ui.indicating.progress[data-percent="4"] .label,.ui.indicating.progress[data-percent="5"] .label,.ui.indicating.progress[data-percent="6"] .label,.ui.indicating.progress[data-percent="7"] .label,.ui.indicating.progress[data-percent="8"] .label,.ui.indicating.progress[data-percent="9"] .label{color:#2a2a2a}.ui.indicating.progress.success .label{color:#1a531b}.ui.progress.success .bar{background-color:#21ba45!important}.ui.progress.success .bar,.ui.progress.success .bar:after{-webkit-animation:none!important;animation:none!important}.ui.progress.success>.label{color:#1a531b}.ui.progress.warning .bar{background-color:#f2c037!important}.ui.progress.warning .bar,.ui.progress.warning .bar:after{-webkit-animation:none!important;animation:none!important}.ui.progress.warning>.label{color:#794b02}.ui.progress.error .bar{background-color:#db2828!important}.ui.progress.error .bar,.ui.progress.error .bar:after{-webkit-animation:none!important;animation:none!important}.ui.progress.error>.label{color:#912d2b}.ui.active.progress .bar{min-width:2em;position:relative}.ui.active.progress .bar:after{-webkit-animation:progress-active 2s ease infinite;animation:progress-active 2s ease infinite;background:#fff;border-radius:0;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0}@-webkit-keyframes progress-active{0%{opacity:.3;width:0}to{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:.3;width:0}to{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar:after{-webkit-animation:none!important;animation:none!important}.ui.inverted.progress{background:hsla(0,0%,100%,.08);border:none}.ui.inverted.progress .bar{background:#888}.ui.inverted.progress .bar>.progress{color:#f9fafb}.ui.inverted.progress>.label{color:#fff}.ui.inverted.progress.success>.label{color:#21ba45}.ui.inverted.progress.warning>.label{color:#f2c037}.ui.inverted.progress.error>.label{color:#db2828}.ui.progress.attached{background:transparent;border:none;margin:0;position:relative}.ui.progress.attached,.ui.progress.attached .bar{border-radius:0 0 0 0;display:block;height:.2rem;overflow:hidden;padding:0}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{border-radius:0 0 0 0;top:0}.ui.progress.top.attached .bar{border-radius:0}.ui.card>.ui.attached.progress,.ui.segment>.ui.attached.progress{bottom:100%;left:0;position:absolute;top:auto;width:100%}.ui.card>.ui.bottom.attached.progress,.ui.segment>.ui.bottom.attached.progress{bottom:auto;top:100%}.ui.red.progress .bar{background-color:#db2828}.ui.red.inverted.progress .bar{background-color:#ff695e}.ui.orange.progress .bar{background-color:#f2711c}.ui.orange.inverted.progress .bar{background-color:#ff851b}.ui.yellow.progress .bar{background-color:#fbbd08}.ui.yellow.inverted.progress .bar{background-color:#ffe21f}.ui.olive.progress .bar{background-color:#b5cc18}.ui.olive.inverted.progress .bar{background-color:#d9e778}.ui.green.progress .bar{background-color:#21ba45}.ui.green.inverted.progress .bar{background-color:#2ecc40}.ui.teal.progress .bar{background-color:#00b5ad}.ui.teal.inverted.progress .bar{background-color:#6dffff}.ui.blue.progress .bar{background-color:#2185d0}.ui.blue.inverted.progress .bar{background-color:#54c8ff}.ui.violet.progress .bar{background-color:#6435c9}.ui.violet.inverted.progress .bar{background-color:#a291fb}.ui.purple.progress .bar{background-color:#a333c8}.ui.purple.inverted.progress .bar{background-color:#dc73ff}.ui.pink.progress .bar{background-color:#e03997}.ui.pink.inverted.progress .bar{background-color:#ff8edf}.ui.brown.progress .bar{background-color:#a5673f}.ui.brown.inverted.progress .bar{background-color:#d67c1c}.ui.grey.progress .bar{background-color:#767676}.ui.grey.inverted.progress .bar{background-color:#dcddde}.ui.black.progress .bar{background-color:#1b1c1d}.ui.black.inverted.progress .bar{background-color:#545454}.ui.tiny.progress{font-size:.8571428571rem}.ui.tiny.progress .bar{height:.5em}.ui.small.progress{font-size:.9285714286rem}.ui.small.progress .bar{height:1em}.ui.progress{font-size:1rem}.ui.progress .bar{height:1.75em}.ui.large.progress{font-size:1.1428571429rem}.ui.large.progress .bar{height:2.5em}.ui.big.progress{font-size:1.2857142857rem}.ui.big.progress .bar{height:3.5em}/*! - * # Semantic UI - Rating - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.font-face{font-family:Rating;font-style:normal;font-weight:400;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjCBsAAAC8AAAAYGNtYXCj2pm8AAABHAAAAKRnYXNwAAAAEAAAAcAAAAAIZ2x5ZlJbXMYAAAHIAAARnGhlYWQBGAe5AAATZAAAADZoaGVhA+IB/QAAE5wAAAAkaG10eCzgAEMAABPAAAAAcGxvY2EwXCxOAAAUMAAAADptYXhwACIAnAAAFGwAAAAgbmFtZfC1n04AABSMAAABPHBvc3QAAwAAAAAVyAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADxZQHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAJAAAAAgACAABAAAAAEAIOYF8AbwDfAj8C7wbvBw8Irwl/Cc8SPxZf/9//8AAAAAACDmAPAE8AzwI/Au8G7wcPCH8JfwnPEj8WT//f//AAH/4xoEEAYQAQ/sD+IPow+iD4wPgA98DvYOtgADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP/tAgAB0wAKABUAAAEvAQ8BFwc3Fyc3BQc3Jz8BHwEHFycCALFPT7GAHp6eHoD/AHAWW304OH1bFnABGRqgoBp8sFNTsHyyOnxYEnFxElh8OgAAAAACAAD/7QIAAdMACgASAAABLwEPARcHNxcnNwUxER8BBxcnAgCxT0+xgB6enh6A/wA4fVsWcAEZGqCgGnywU1OwfLIBHXESWHw6AAAAAQAA/+0CAAHTAAoAAAEvAQ8BFwc3Fyc3AgCxT0+xgB6enh6AARkaoKAafLBTU7B8AAAAAAEAAAAAAgABwAArAAABFA4CBzEHDgMjIi4CLwEuAzU0PgIzMh4CFz4DMzIeAhUCAAcMEgugBgwMDAYGDAwMBqALEgwHFyg2HhAfGxkKChkbHxAeNigXAS0QHxsZCqAGCwkGBQkLBqAKGRsfEB42KBcHDBILCxIMBxcoNh4AAAAAAgAAAAACAAHAACsAWAAAATQuAiMiDgIHLgMjIg4CFRQeAhcxFx4DMzI+Aj8BPgM1DwEiFCIGMTAmIjQjJy4DNTQ+AjMyHgIfATc+AzMyHgIVFA4CBwIAFyg2HhAfGxkKChkbHxAeNigXBwwSC6AGDAwMBgYMDAwGoAsSDAdbogEBAQEBAaIGCgcEDRceEQkREA4GLy8GDhARCREeFw0EBwoGAS0eNigXBwwSCwsSDAcXKDYeEB8bGQqgBgsJBgUJCwagChkbHxA+ogEBAQGiBg4QEQkRHhcNBAcKBjQ0BgoHBA0XHhEJERAOBgABAAAAAAIAAcAAMQAAARQOAgcxBw4DIyIuAi8BLgM1ND4CMzIeAhcHFwc3Jzc+AzMyHgIVAgAHDBILoAYMDAwGBgwMDAagCxIMBxcoNh4KFRMSCC9wQLBwJwUJCgkFHjYoFwEtEB8bGQqgBgsJBgUJCwagChkbHxAeNigXAwUIBUtAoMBAOwECAQEXKDYeAAABAAAAAAIAAbcAKgAAEzQ3NjMyFxYXFhcWFzY3Njc2NzYzMhcWFRQPAQYjIi8BJicmJyYnJicmNQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGBwExPyMkBgYLCgkKCgoKCQoLBgYkIz8/QawFBawCBgUNDg4OFRQTAAAAAQAAAA0B2wHSACYAABM0PwI2FzYfAhYVFA8BFxQVFAcGByYvAQcGByYnJjU0PwEnJjUAEI9BBQkIBkCPEAdoGQMDBgUGgIEGBQYDAwEYaAcBIwsCFoEMAQEMgRYCCwYIZJABBQUFAwEBAkVFAgEBAwUFAwOQZAkFAAAAAAIAAAANAdsB0gAkAC4AABM0PwI2FzYfAhYVFA8BFxQVFAcmLwEHBgcmJyY1ND8BJyY1HwEHNxcnNy8BBwAQj0EFCQgGQI8QB2gZDAUGgIEGBQYDAwEYaAc/WBVsaxRXeDY2ASMLAhaBDAEBDIEWAgsGCGSQAQUNAQECRUUCAQEDBQUDA5BkCQURVXg4OHhVEW5uAAABACMAKQHdAXwAGgAANzQ/ATYXNh8BNzYXNh8BFhUUDwEGByYvASY1IwgmCAwLCFS8CAsMCCYICPUIDAsIjgjSCwkmCQEBCVS7CQEBCSYJCg0H9gcBAQePBwwAAAEAHwAfAXMBcwAsAAA3ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFRQPAQYjIi8BBwYjIi8BJjUfCFRUCAgnCAwLCFRUCAwLCCcICFRUCAgnCAsMCFRUCAsMCCcIYgsIVFQIDAsIJwgIVFQICCcICwwIVFQICwwIJwgIVFQICCcIDAAAAAACAAAAJQFJAbcAHwArAAA3NTQ3NjsBNTQ3NjMyFxYdATMyFxYdARQHBiMhIicmNTczNTQnJiMiBwYdAQAICAsKJSY1NCYmCQsICAgIC/7tCwgIW5MWFR4fFRZApQsICDc0JiYmJjQ3CAgLpQsICAgIC8A3HhYVFRYeNwAAAQAAAAcBbgG3ACEAADcRNDc2NzYzITIXFhcWFREUBwYHBiMiLwEHBiMiJyYnJjUABgUKBgYBLAYGCgUGBgUKBQcOCn5+Cg4GBgoFBicBcAoICAMDAwMICAr+kAoICAQCCXl5CQIECAgKAAAAAwAAACUCAAFuABgAMQBKAAA3NDc2NzYzMhcWFxYVFAcGBwYjIicmJyY1MxYXFjMyNzY3JicWFRQHBiMiJyY1NDcGBzcUFxYzMjc2NTQ3NjMyNzY1NCcmIyIHBhUABihDREtLREMoBgYoQ0RLS0RDKAYlJjk5Q0M5OSYrQREmJTU1JSYRQSuEBAQGBgQEEREZBgQEBAQGJBkayQoKQSgoKChBCgoKCkEoJycoQQoKOiMjIyM6RCEeIjUmJSUmNSIeIUQlBgQEBAQGGBIRBAQGBgQEGhojAAAABQAAAAkCAAGJACwAOABRAGgAcAAANzQ3Njc2MzIXNzYzMhcWFxYXFhcWFxYVFDEGBwYPAQYjIicmNTQ3JicmJyY1MxYXNyYnJjU0NwYHNxQXFjMyNzY1NDc2MzI3NjU0JyYjIgcGFRc3Njc2NyYnNxYXFhcWFRQHBgcGBwYjPwEWFRQHBgcABitBQU0ZGhADBQEEBAUFBAUEBQEEHjw8Hg4DBQQiBQ0pIyIZBiUvSxYZDg4RQSuEBAQGBgQEEREZBgQEBAQGJBkaVxU9MzQiIDASGxkZEAYGCxQrODk/LlACFxYlyQsJQycnBRwEAgEDAwIDAwIBAwUCNmxsNhkFFAMFBBUTHh8nCQtKISgSHBsfIh4hRCUGBAQEBAYYEhEEBAYGBAQaGiPJJQUiIjYzISASGhkbCgoKChIXMRsbUZANCyghIA8AAAMAAAAAAbcB2wA5AEoAlAAANzU0NzY7ATY3Njc2NzY3Njc2MzIXFhcWFRQHMzIXFhUUBxYVFAcUFRQHFgcGKwEiJyYnJisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzMyFxYXFhcWFxYXFhcWOwEyNTQnNjc2NTQnNjU0JyYnNjc2NTQnJisBNDc2NTQnJiMGBwYHBgcGBwYHBgcGBwYHBgcGBwYrARUACwoQTgodEQ4GBAMFBgwLDxgTEwoKDjMdFhYOAgoRARkZKCUbGxsjIQZSEAoLJQUFCAcGBQUGBwgFBUkJBAUFBAQHBwMDBwcCPCUjNwIJBQUFDwMDBAkGBgsLDmUODgoJGwgDAwYFDAYQAQUGAwQGBgYFBgUGBgQJSbcPCwsGJhUPCBERExMMCgkJFBQhGxwWFR4ZFQoKFhMGBh0WKBcXBgcMDAoLDxIHBQYGBQcIBQYGBQgSAQEBAQICAQEDAgEULwgIBQoLCgsJDhQHCQkEAQ0NCg8LCxAdHREcDQ4IEBETEw0GFAEHBwUECAgFBQUFAgO3AAADAAD/2wG3AbcAPABNAJkAADc1NDc2OwEyNzY3NjsBMhcWBxUWFRQVFhUUBxYVFAcGKwEWFRQHBgcGIyInJicmJyYnJicmJyYnIyInJjU3FBcWMzI3NjU0JyYjIgcGFRczMhcWFxYXFhcWFxYXFhcWFxYXFhcWFzI3NjU0JyY1MzI3NjU0JyYjNjc2NTQnNjU0JyYnNjU0JyYrASIHIgcGBwYHBgcGIwYrARUACwoQUgYhJRsbHiAoGRkBEQoCDhYWHTMOCgoTExgPCwoFBgIBBAMFDhEdCk4QCgslBQUIBwYFBQYHCAUFSQkEBgYFBgUGBgYEAwYFARAGDAUGAwMIGwkKDg5lDgsLBgYJBAMDDwUFBQkCDg4ZJSU8AgcHAwMHBwQEBQUECbe3DwsKDAwHBhcWJwIWHQYGExYKChUZHhYVHRoiExQJCgsJDg4MDAwNBg4WJQcLCw+kBwUGBgUHCAUGBgUIpAMCBQYFBQcIBAUHBwITBwwTExERBw0OHBEdHRALCw8KDQ0FCQkHFA4JCwoLCgUICBgMCxUDAgEBAgMBAQG3AAAAAQAAAA0A7gHSABQAABM0PwI2FxEHBgcmJyY1ND8BJyY1ABCPQQUJgQYFBgMDARhoBwEjCwIWgQwB/oNFAgEBAwUFAwOQZAkFAAAAAAIAAAAAAgABtwAqAFkAABM0NzYzMhcWFxYXFhc2NzY3Njc2MzIXFhUUDwEGIyIvASYnJicmJyYnJjUzFB8BNzY1NCcmJyYnJicmIyIHBgcGBwYHBiMiJyYnJicmJyYjIgcGBwYHBgcGFQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGByU1pqY1BgYJCg4NDg0PDhIRDg8KCgcFCQkFBwoKDw4REg4PDQ4NDgoJBgYBMT8jJAYGCwoJCgoKCgkKCwYGJCM/P0GsBQWsAgYFDQ4ODhUUEzA1oJ82MBcSEgoLBgcCAgcHCwsKCQgHBwgJCgsLBwcCAgcGCwoSEhcAAAACAAAABwFuAbcAIQAoAAA3ETQ3Njc2MyEyFxYXFhURFAcGBwYjIi8BBwYjIicmJyY1PwEfAREhEQAGBQoGBgEsBgYKBQYGBQoFBw4Kfn4KDgYGCgUGJZIZef7cJwFwCggIAwMDAwgICv6QCggIBAIJeXkJAgQICAoIjRl0AWP+nQAAAAABAAAAJQHbAbcAMgAANzU0NzY7ATU0NzYzMhcWHQEUBwYrASInJj0BNCcmIyIHBh0BMzIXFh0BFAcGIyEiJyY1AAgIC8AmJjQ1JiUFBQgSCAUFFhUfHhUWHAsICAgIC/7tCwgIQKULCAg3NSUmJiU1SQgFBgYFCEkeFhUVFh43CAgLpQsICAgICwAAAAIAAQANAdsB0gAiAC0AABM2PwI2MzIfAhYXFg8BFxYHBiMiLwEHBiMiJyY/AScmNx8CLwE/AS8CEwEDDJBABggJBUGODgIDCmcYAgQCCAMIf4IFBgYEAgEZaQgC7hBbEgINSnkILgEBJggCFYILC4IVAggICWWPCgUFA0REAwUFCo9lCQipCTBmEw1HEhFc/u0AAAADAAAAAAHJAbcAFAAlAHkAADc1NDc2OwEyFxYdARQHBisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzU0NzYzNjc2NzY3Njc2NzY3Njc2NzY3NjMyFxYXFhcWFxYXFhUUFRQHBgcGBxQHBgcGBzMyFxYVFAcWFRYHFgcGBxYHBgcjIicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQFBQgGDw8OFAkFBAQBAQMCAQIEBAYFBw4KCgcHBQQCAwEBAgMDAgYCAgIBAU8XEBAQBQEOBQUECwMREiYlExYXDAwWJAoHBQY3twcGBQUGB7cIBQUFBQgkBwYFBQYHCAUGBgUIJLcHBQYBEBATGQkFCQgGBQwLBgcICQUGAwMFBAcHBgYICQQEBwsLCwYGCgIDBAMCBBEQFhkSDAoVEhAREAsgFBUBBAUEBAcMAQUFCAAAAAADAAD/2wHJAZIAFAAlAHkAADcUFxYXNxY3Nj0BNCcmBycGBwYdATc0NzY3FhcWFRQHBicGJyY1FzU0NzY3Fjc2NzY3NjcXNhcWBxYXFgcWBxQHFhUUBwYHJxYXFhcWFRYXFhcWFRQVFAcGBwYHBgcGBwYnBicmJyYnJicmJyYnJicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQGBQcKJBYMDBcWEyUmEhEDCwQFBQ4BBRAQEBdPAQECAgIGAgMDAgEBAwIEBQcHCgoOBwUGBAQCAQIDAQEEBAUJFA4PDwYIBQWlBwYFAQEBBwQJtQkEBwEBAQUGB7eTBwYEAQEEBgcJBAYBAQYECZS4BwYEAgENBwUCBgMBAQEXEyEJEhAREBcIDhAaFhEPAQEFAgQCBQELBQcKDAkIBAUHCgUGBwgDBgIEAQEHBQkIBwUMCwcECgcGCRoREQ8CBgQIAAAAAQAAAAEAAJth57dfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAAAAAAoAFAAeAEoAcACKAMoBQAGIAcwCCgJUAoICxgMEAzoDpgRKBRgF7AYSBpgG2gcgB2oIGAjOAAAAAQAAABwAmgAFAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("truetype"),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AABcUAAoAAAAAFswAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAEuEAABLho6TvIE9TLzIAABPYAAAAYAAAAGAIIwgbY21hcAAAFDgAAACkAAAApKPambxnYXNwAAAU3AAAAAgAAAAIAAAAEGhlYWQAABTkAAAANgAAADYBGAe5aGhlYQAAFRwAAAAkAAAAJAPiAf1obXR4AAAVQAAAAHAAAABwLOAAQ21heHAAABWwAAAABgAAAAYAHFAAbmFtZQAAFbgAAAE8AAABPPC1n05wb3N0AAAW9AAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLZviU+HQFHQAAAP0PHQAAAQIRHQAAAAkdAAAS2BIAHQEBBw0PERQZHiMoLTI3PEFGS1BVWl9kaW5zeH2Ch4xyYXRpbmdyYXRpbmd1MHUxdTIwdUU2MDB1RTYwMXVFNjAydUU2MDN1RTYwNHVFNjA1dUYwMDR1RjAwNXVGMDA2dUYwMEN1RjAwRHVGMDIzdUYwMkV1RjA2RXVGMDcwdUYwODd1RjA4OHVGMDg5dUYwOEF1RjA5N3VGMDlDdUYxMjN1RjE2NHVGMTY1AAACAYkAGgAcAgABAAQABwAKAA0AVgCWAL0BAgGMAeQCbwLwA4cD5QR0BQMFdgZgB8MJkQtxC7oM2Q1jDggOmRAYEZr8lA78lA78lA77lA74lPetFftFpTz3NDz7NPtFcfcU+xBt+0T3Mt73Mjht90T3FPcQBfuU+0YV+wRRofcQMOP3EZ3D9wXD+wX3EXkwM6H7EPsExQUO+JT3rRX7RaU89zQ8+zT7RXH3FPsQbftE9zLe9zI4bfdE9xT3EAX7lPtGFYuLi/exw/sF9xF5MDOh+xD7BMUFDviU960V+0WlPPc0PPs0+0Vx9xT7EG37RPcy3vcyOG33RPcU9xAFDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iu2i7J4pm6mqLKetovci81JizoIDviU98EVi9xJzTqLYItkeHBucKhknmCLOotJSYs6i2CeZKhwCIuL9zT7NAWbe5t7m4ubi5ubm5sI9zT3NAWopp6yi7YIME0V+zb7NgWKioqKiouKi4qMiowI+zb3NgV6m4Ghi6OLubCwuYuji6GBm3oIule6vwWbnKGVo4u5i7Bmi12Lc4F1ensIDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iuni6WDoX4IXED3BEtL+zT3RPdU+wTLssYFl46YjZiL3IvNSYs6CA6L98UVi7WXrKOio6Otl7aLlouXiZiHl4eWhZaEloSUhZKFk4SShZKEkpKSkZOSkpGUkZaSCJaSlpGXj5iPl42Wi7aLrX+jc6N0l2qLYYthdWBgYAj7RvtABYeIh4mGi4aLh42Hjgj7RvdABYmNiY2Hj4iOhpGDlISUhZWFlIWVhpaHmYaYiZiLmAgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuHioiJiImIiIqHi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuCh4aDi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwjKeRXjN3b7DfcAxPZSd/cN4t/7DJ1V9wFV+wEFDq73ZhWLk42RkZEIsbIFkZCRjpOLkouSiJCGCN8291D3UAWQkJKOkouTi5GIkYYIsWQFkYaNhIuEi4OJhYWFCPuJ+4kFhYWFiYOLhIuEjYaRCPsi9yIFhZCJkouSCA77AartFYuSjpKQkAjf3zffBYaQiJKLk4uSjpKQkAiysgWRkJGOk4uSi5KIkIYI3zff3wWQkJKOk4uSi5KIkIYIsmQFkIaOhIuEi4OIhIaGCDc33zcFkIaOhIuEi4OIhYaFCGRkBYaGhIiEi4OLhI6GkAg33zc3BYaGhIiEi4OLhY6FkAhksgWGkYiRi5MIDvtLi8sVi/c5BYuSjpKQkJCQko6SiwiVi4vCBYuul6mkpKSkqpiui66LqX6kcqRymG2LaAiLVJSLBZKLkoiQhpCGjoSLhAiL+zkFi4OIhYaGhoWEiYSLCPuniwWEi4SNhpGGkIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOEkoWShJKSkpGTkpKRlJGWkgiWkpaRl4+Yj5eNlou2i61/o3OjdJdqi2GLYXVgYGAI+0b7QAWHiIeJhouGi4eNh44I+0b3QAWJjYmNh4+IjoaRg5SElIWVhZSFlYaWh5mGmImYi5gIsIsVi2ucaa9oCPc6+zT3OvczBa+vnK2Lq4ubiZiHl4eXhpSFkoSSg5GCj4KQgo2CjYONgYuBi4KLgIl/hoCGgIWChAiBg4OFhISEhYaFhoaIhoaJhYuFi4aNiJCGkIaRhJGEkoORgZOCkoCRgJB/kICNgosIgYuBi4OJgomCiYKGgoeDhYSEhYSGgod/h3+Jfot7CA77JouyFYv4BAWLkY2Rj5GOkJCPko2PjY+Mj4sI98CLBY+Lj4qPiZGJkIePho+FjYWLhQiL/AQFi4SJhYeGh4aGh4WIiIqGioeLgYuEjoSRCPsS9w37EvsNBYSFg4iCi4eLh4uHjYSOho+IkIeQiZGLkgiwkxX3JvchpHL3DfsIi/f3+7iLi/v3BQ5ni8sVi/c5BYuSjpKQkJCQko6Siwj3VIuLwgWLrpippKSkpKmYrouvi6l+pHKkcpdti2gIi0IFi4aKhoeIh4eHiYaLCHmLBYaLh42Hj4eOipCLkAiL1AWLn4OcfZp9mXqSdot3i3qEfX18fIR6i3cIi1SniwWSi5KIkIaQho6Ei4QIi/s5BYuDiIWGhoaFhImEiwj7p4sFhIuEjYaRhpCIkYuTCA5njPe6FYyQkI6UjQj3I6DM9xYFj5KPj5GLkIuQh4+ECMv7FvcjdgWUiZCIjYaNhoiFhYUIIyak+yMFjIWKhomHiYiIiYaLiIuHjIeNCPsUz/sVRwWHiYeKiIuHi4eNiY6Jj4uQjJEIo/cjI/AFhZGJkY2QCPeB+z0VnILlW3rxiJ6ZmNTS+wydgpxe54v7pwUOZ4vCFYv3SwWLkI2Pjo+Pjo+NkIsI3osFkIuPiY6Ij4eNh4uGCIv7SwWLhomHh4eIh4eKhosIOIsFhouHjIePiI+Jj4uQCLCvFYuGjIePh46IkImQi5CLj42Pjo6PjY+LkIuQiZCIjoePh42Gi4aLhomIh4eIioaLhgjvZxWL90sFi5CNj46Oj4+PjZCLj4ySkJWWlZaVl5SXmJuVl5GRjo6OkI6RjZCNkIyPjI6MkY2TCIySjJGMj4yPjZCOkY6RjpCPjo6Pj42Qi5SLk4qSiZKJkYiPiJCIjoiPho6GjYeMhwiNh4yGjIaMhYuHi4iLiIuHi4eLg4uEiYSJhImFiYeJh4mFh4WLioqJiomJiIqJiokIi4qKiIqJCNqLBZqLmIWWgJaAkH+LfIt6hn2Af46DjYSLhIt9h36Cf4+Bi3+HgImAhYKEhI12hnmAfgh/fXiDcosIZosFfot+jHyOfI5/joOOg41/j32Qc5N8j4SMhouHjYiOh4+Jj4uQCA5ni/c5FYuGjYaOiI+Hj4mQiwjeiwWQi4+Njo+Pjo2Qi5AIi/dKBYuQiZCHjoiPh42Giwg4iwWGi4eJh4eIiImGi4YIi/tKBbD3JhWLkIyPj4+OjpCNkIuQi4+Jj4iOh42Hi4aLhomHiIeHh4eKhouGi4aMiI+Hj4qPi5AI7/snFYv3SwWLkI2Qj46Oj4+NkIuSi5qPo5OZkJePk46TjZeOmo6ajpiMmIsIsIsFpIueg5d9ln6Qeol1koSRgo2Aj4CLgIeAlH+Pfot9i4WJhIiCloCQfIt7i3yFfoGACICAfoZ8iwg8iwWMiIyJi4mMiYyJjYmMiIyKi4mPhI2GjYeNh42GjYOMhIyEi4SLhouHi4iLiYuGioYIioWKhomHioeJh4iGh4eIh4aIh4iFiISJhImDioKLhouHjYiPh4+Ij4iRiJGJkIqPCIqPipGKkomTipGKj4qOiZCJkYiQiJCIjoWSgZZ+nIKXgZaBloGWhJGHi4aLh42HjwiIjomQi48IDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPFlAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAkAAAACAAIAAEAAAAAQAg5gXwBvAN8CPwLvBu8HDwivCX8JzxI/Fl//3//wAAAAAAIOYA8ATwDPAj8C7wbvBw8Ifwl/Cc8SPxZP/9//8AAf/jGgQQBhABD+wP4g+jD6IPjA+AD3wO9g62AAMAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAAJrVlLJfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAFAAABwAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff")}.ui.rating{display:inline-flex;vertical-align:baseline;white-space:nowrap}.ui.rating:last-child{margin-right:0}.ui.rating .icon{-webkit-backface-visibility:hidden;backface-visibility:hidden;cursor:pointer;flex:1 0 auto;font-family:Rating;font-style:normal;font-weight:400;height:auto;line-height:1;margin:0;padding:0;text-align:center;transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;width:1.25em}.ui.rating .active.icon:before,.ui.rating .icon:before{content:""}.ui.rating .icon{background:transparent;color:rgba(0,0,0,.15)}.ui.rating .active.icon{background:transparent;color:rgba(0,0,0,.85)}.ui.rating .icon.selected,.ui.rating .icon.selected.active{background:transparent;color:#2a2a2a}.ui.star.rating .icon{background:transparent;color:rgba(0,0,0,.15);height:auto;text-shadow:none;width:1.25em}.ui.star.rating .active.icon{background:transparent!important;color:#ffe623!important;text-shadow:-1px 0 #ddc507,-1px 0 0 #ddc507,0 1px 0 #ddc507,1px 0 0 #ddc507!important}.ui.star.rating .active.icon:before{content:""}.ui.star.rating .icon.selected,.ui.star.rating .icon.selected.active{background:transparent!important;color:#fc0!important;text-shadow:-1px 0 #e6a200,-1px 0 0 #e6a200,0 1px 0 #e6a200,1px 0 0 #e6a200!important}.ui.star.rating .icon:before{content:""}.ui.star.rating .partial.icon:before{content:""}.ui.star.rating .partial.icon{content:""}.ui.heart.rating .icon{background:transparent;color:rgba(0,0,0,.15);height:auto;text-shadow:none!important;width:1.4em}.ui.heart.rating .active.icon{background:transparent!important;color:#ff6d75!important;text-shadow:-1px 0 #cd0707,-1px 0 0 #cd0707,0 1px 0 #cd0707,1px 0 0 #cd0707!important}.ui.heart.rating .active.icon:before{content:""}.ui.heart.rating .icon.selected,.ui.heart.rating .icon.selected.active{background:transparent!important;color:#ff3000!important;text-shadow:-1px 0 #aa0101,-1px 0 0 #aa0101,0 1px 0 #aa0101,1px 0 0 #aa0101!important}.ui.heart.rating .icon:before{content:""}.ui.disabled.rating .icon{cursor:default}.ui.rating .icon.selected,.ui.rating.selected .active.icon,.ui.rating.selected .icon.selected{opacity:1}.ui.mini.rating{font-size:.7857142857rem}.ui.tiny.rating{font-size:.8571428571rem}.ui.small.rating{font-size:.9285714286rem}.ui.rating{font-size:1rem}.ui.large.rating{font-size:1.1428571429rem}.ui.huge.rating{font-size:1.4285714286rem}.ui.massive.rating{font-size:1.7142857143rem}/*! - * # Semantic UI - Shape - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.shape{display:inline-block;-webkit-perspective:2000px;perspective:2000px;position:relative;transition:left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out;vertical-align:top}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;margin:0!important;opacity:1;width:100%}.ui.shape .side *{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ui.cube.shape .side{background-color:#e6e6e6;box-shadow:0 0 2px rgba(0,0,0,.3);color:#2a2a2a;height:15em;min-width:15em;padding:2em}.ui.cube.shape .side>.content{display:table;height:100%;text-align:center;-webkit-user-select:text;-ms-user-select:text;user-select:text;width:100%}.ui.cube.shape .side>.content>div{display:table-cell;font-size:2em;vertical-align:middle}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{left:-9999px;position:absolute;top:-9999px}.ui.shape .animating.side{display:block;left:0;position:absolute;top:0;z-index:100}.ui.shape .hidden.side{opacity:.6}.ui.shape.animating .sides{position:absolute;transition:left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out}.ui.shape.animating .side{transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}.sides>.side>.ui.card{width:100%}/*! - * # Semantic UI - Sidebar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.sidebar{-webkit-overflow-scrolling:touch;border-radius:0!important;height:100%!important;left:0;margin:0!important;max-height:100%;overflow-y:auto!important;position:fixed;top:0;-webkit-transform:translateZ(0);transform:translateZ(0);transition:none;visibility:hidden;will-change:transform;z-index:102}.ui.sidebar,.ui.sidebar>*{-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.left.sidebar{left:0;right:auto;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.sidebar{left:auto!important;right:0!important;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.bottom.sidebar,.ui.top.sidebar{height:auto!important;width:100%!important}.ui.top.sidebar{bottom:auto!important;top:0!important;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.top.sidebar.visible{position:relative!important}.ui.bottom.sidebar{bottom:0!important;top:auto!important;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.pushable{background:#fff!important;padding:0!important}.pushable.active{margin-top:-1px;overflow-x:hidden}body.pushable{background:#545454!important}.pushable:not(body).active{-webkit-transform:translateZ(0);transform:translateZ(0)}.pushable:not(body)>.fixed,.pushable:not(body)>.pusher:after,.pushable:not(body)>.ui.sidebar{position:absolute}.pushable>.fixed{position:fixed;will-change:transform;z-index:101}.pushable>.fixed,.pushable>.pusher{-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.pushable>.pusher{min-height:100%;position:relative;z-index:2}.pushable>.pusher.locked{overflow:hidden}body.pushable>.pusher{background:#fff}.pushable>.pusher{background:inherit}.pushable>.pusher:after{background-color:rgba(0,0,0,.4);content:"";opacity:0;overflow:hidden;position:fixed;right:0;top:0;transition:opacity .5s;will-change:opacity;z-index:1000}.ui.sidebar.menu .item{border-radius:0!important;font-weight:700;text-transform:uppercase}.ui.sidebar.menu .item .item{font-weight:400;text-transform:capitalize}.ui.left.sidebar.menu .accordion{padding-left:.5em}.ui.left.sidebar.menu .accordion .title{font-weight:700;margin-top:0;text-transform:capitalize}.ui.left.sidebar.menu .accordion .ui.list{padding-left:.5em}.pushable>.pusher.dimmed{padding-top:.1em}.pushable>.pusher.dimmed:after{height:100%!important;opacity:1!important;width:100%!important}.ui.animating.sidebar{visibility:visible}.ui.visible.sidebar{-webkit-transform:translateZ(0);transform:translateZ(0);visibility:visible}.ui.bottom.visible.sidebar,.ui.left.visible.sidebar,.ui.right.visible.sidebar,.ui.top.visible.sidebar{box-shadow:0 0 20px rgba(34,36,38,.15)}.ui.visible.left.sidebar~.fixed,.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0)}.ui.visible.right.sidebar~.fixed,.ui.visible.right.sidebar~.pusher{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}.ui.visible.top.sidebar~.fixed,.ui.visible.top.sidebar~.pusher{-webkit-transform:translate3d(0,36px,0);transform:translate3d(0,36px,0)}.ui.visible.bottom.sidebar~.fixed,.ui.visible.bottom.sidebar~.pusher{-webkit-transform:translate3d(0,-36px,0);transform:translate3d(0,-36px,0)}.ui.visible.left.sidebar~.ui.visible.right.sidebar~.fixed,.ui.visible.left.sidebar~.ui.visible.right.sidebar~.pusher,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.fixed,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.pusher{-webkit-transform:translateZ(0);transform:translateZ(0)}.ui.thin.left.sidebar,.ui.thin.right.sidebar{width:150px}.ui[class*="very thin"].left.sidebar,.ui[class*="very thin"].right.sidebar{width:60px}.ui.left.sidebar,.ui.right.sidebar{width:260px}.ui.wide.left.sidebar,.ui.wide.right.sidebar{width:350px}.ui[class*="very wide"].left.sidebar,.ui[class*="very wide"].right.sidebar{width:475px}.ui.visible.thin.left.sidebar~.fixed,.ui.visible.thin.left.sidebar~.pusher{-webkit-transform:translate3d(150px,0,0);transform:translate3d(150px,0,0)}.ui.visible[class*="very thin"].left.sidebar~.fixed,.ui.visible[class*="very thin"].left.sidebar~.pusher{-webkit-transform:translate3d(60px,0,0);transform:translate3d(60px,0,0)}.ui.visible.wide.left.sidebar~.fixed,.ui.visible.wide.left.sidebar~.pusher{-webkit-transform:translate3d(350px,0,0);transform:translate3d(350px,0,0)}.ui.visible[class*="very wide"].left.sidebar~.fixed,.ui.visible[class*="very wide"].left.sidebar~.pusher{-webkit-transform:translate3d(475px,0,0);transform:translate3d(475px,0,0)}.ui.visible.thin.right.sidebar~.fixed,.ui.visible.thin.right.sidebar~.pusher{-webkit-transform:translate3d(-150px,0,0);transform:translate3d(-150px,0,0)}.ui.visible[class*="very thin"].right.sidebar~.fixed,.ui.visible[class*="very thin"].right.sidebar~.pusher{-webkit-transform:translate3d(-60px,0,0);transform:translate3d(-60px,0,0)}.ui.visible.wide.right.sidebar~.fixed,.ui.visible.wide.right.sidebar~.pusher{-webkit-transform:translate3d(-350px,0,0);transform:translate3d(-350px,0,0)}.ui.visible[class*="very wide"].right.sidebar~.fixed,.ui.visible[class*="very wide"].right.sidebar~.pusher{-webkit-transform:translate3d(-475px,0,0);transform:translate3d(-475px,0,0)}.ui.overlay.sidebar{z-index:102}.ui.left.overlay.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.overlay.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.overlay.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.overlay.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.animating.ui.overlay.sidebar,.ui.visible.overlay.sidebar{transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.visible.bottom.overlay.sidebar,.ui.visible.left.overlay.sidebar,.ui.visible.right.overlay.sidebar,.ui.visible.top.overlay.sidebar{-webkit-transform:translateZ(0);transform:translateZ(0)}.ui.visible.overlay.sidebar~.fixed,.ui.visible.overlay.sidebar~.pusher{-webkit-transform:none!important;transform:none!important}.ui.push.sidebar{transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;z-index:102}.ui.left.push.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.push.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.push.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.push.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.uncover.sidebar,.ui.visible.push.sidebar{-webkit-transform:translateZ(0);transform:translateZ(0)}.ui.uncover.sidebar{z-index:1}.ui.visible.uncover.sidebar{-webkit-transform:translateZ(0);transform:translateZ(0);transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.slide.along.sidebar{z-index:1}.ui.left.slide.along.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.right.slide.along.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.top.slide.along.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.bottom.slide.along.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.animating.slide.along.sidebar{transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.visible.slide.along.sidebar{-webkit-transform:translateZ(0);transform:translateZ(0)}.ui.slide.out.sidebar{z-index:1}.ui.left.slide.out.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.right.slide.out.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.top.slide.out.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.bottom.slide.out.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.animating.slide.out.sidebar{transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.visible.slide.out.sidebar{-webkit-transform:translateZ(0);transform:translateZ(0)}.ui.scale.down.sidebar{transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;z-index:102}.ui.left.scale.down.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.scale.down.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.scale.down.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.scale.down.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.scale.down.left.sidebar~.pusher{-webkit-transform-origin:75% 50%;transform-origin:75% 50%}.ui.scale.down.right.sidebar~.pusher{-webkit-transform-origin:25% 50%;transform-origin:25% 50%}.ui.scale.down.top.sidebar~.pusher{-webkit-transform-origin:50% 75%;transform-origin:50% 75%}.ui.scale.down.bottom.sidebar~.pusher{-webkit-transform-origin:50% 25%;transform-origin:50% 25%}.ui.animating.scale.down>.visible.ui.sidebar{transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.animating.scale.down.sidebar~.pusher,.ui.visible.scale.down.sidebar~.pusher{display:block!important;height:100%;overflow:hidden!important;width:100%}.ui.visible.scale.down.sidebar{-webkit-transform:translateZ(0);transform:translateZ(0)}.ui.visible.scale.down.sidebar~.pusher{-webkit-transform:scale(.75);transform:scale(.75)}/*! - * # Semantic UI - Sticky - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.sticky{position:static;transition:none;z-index:800}.ui.sticky.bound{left:auto;position:absolute;right:auto}.ui.sticky.fixed{left:auto;position:fixed;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{bottom:auto;top:0}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{bottom:0;top:auto}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}/*! - * # Semantic UI - Tab - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{display:block;min-height:250px;overflow:hidden;position:relative}.ui.tab.loading *{left:-10000px!important;position:relative!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{border:.2em solid #767676;border-radius:500rem}.ui.tab.loading.segment:after,.ui.tab.loading.segment:before,.ui.tab.loading:after,.ui.tab.loading:before{content:"";height:2.5em;left:50%;margin:-.6428571429em 0 0 -.6428571429em;position:absolute;top:100px;width:2.5em}.ui.tab.loading.segment:after,.ui.tab.loading:after{-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border:.2em solid transparent;border-radius:500rem;border-top-color:#767676;box-shadow:0 0 0 1px transparent}/*! - * # Semantic UI - Transition - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.transition{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-timing-function:ease;animation-timing-function:ease}.animating.transition{-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:visible!important}.loading.transition{left:-99999px;position:absolute;top:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block!important;visibility:visible!important}.disabled.transition{-webkit-animation-play-state:paused;animation-play-state:paused}.looping.transition{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.transition.browse{-webkit-animation-duration:.5s;animation-duration:.5s}.transition.browse.in{-webkit-animation-name:browseIn;animation-name:browseIn}.transition.browse.left.out,.transition.browse.out{-webkit-animation-name:browseOutLeft;animation-name:browseOutLeft}.transition.browse.right.out{-webkit-animation-name:browseOutRight;animation-name:browseOutRight}@-webkit-keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{opacity:.7;-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}80%{opacity:1;-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);z-index:999}to{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{opacity:.7;-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}80%{opacity:1;-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);z-index:999}to{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@-webkit-keyframes browseOutLeft{0%{-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg);transform:translateX(0) rotateY(0deg) rotateX(0deg);z-index:999}50%{-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);z-index:-1}80%{opacity:1}to{opacity:0;-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);z-index:-1}}@keyframes browseOutLeft{0%{-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg);transform:translateX(0) rotateY(0deg) rotateX(0deg);z-index:999}50%{-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);z-index:-1}80%{opacity:1}to{opacity:0;-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);z-index:-1}}@-webkit-keyframes browseOutRight{0%{-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg);transform:translateX(0) rotateY(0deg) rotateX(0deg);z-index:999}50%{-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);z-index:1}80%{opacity:1}to{opacity:0;-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);z-index:1}}@keyframes browseOutRight{0%{-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg);transform:translateX(0) rotateY(0deg) rotateX(0deg);z-index:999}50%{-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);z-index:1}80%{opacity:1}to{opacity:0;-webkit-transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);transform:translateX(0) rotateY(0deg) rotateX(0deg) translateZ(-10px);z-index:1}}.drop.transition{-webkit-animation-duration:.4s;animation-duration:.4s;-webkit-animation-timing-function:cubic-bezier(.34,1.61,.7,1);animation-timing-function:cubic-bezier(.34,1.61,.7,1);-webkit-transform-origin:top center;transform-origin:top center}.drop.transition.in{-webkit-animation-name:dropIn;animation-name:dropIn}.drop.transition.out{-webkit-animation-name:dropOut;animation-name:dropOut}@-webkit-keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.transition.fade.in{-webkit-animation-name:fadeIn;animation-name:fadeIn}.transition[class*="fade up"].in{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.transition[class*="fade down"].in{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.transition[class*="fade left"].in{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.transition[class*="fade right"].in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.transition.fade.out{-webkit-animation-name:fadeOut;animation-name:fadeOut}.transition[class*="fade up"].out{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}.transition[class*="fade down"].out{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}.transition[class*="fade left"].out{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}.transition[class*="fade right"].out{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}.flip.transition.in,.flip.transition.out{-webkit-animation-duration:.6s;animation-duration:.6s}.horizontal.flip.transition.in{-webkit-animation-name:horizontalFlipIn;animation-name:horizontalFlipIn}.horizontal.flip.transition.out{-webkit-animation-name:horizontalFlipOut;animation-name:horizontalFlipOut}.vertical.flip.transition.in{-webkit-animation-name:verticalFlipIn;animation-name:verticalFlipIn}.vertical.flip.transition.out{-webkit-animation-name:verticalFlipOut;animation-name:verticalFlipOut}@-webkit-keyframes horizontalFlipIn{0%{opacity:0;-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg)}to{opacity:1;-webkit-transform:perspective(2000px) rotateY(0deg);transform:perspective(2000px) rotateY(0deg)}}@keyframes horizontalFlipIn{0%{opacity:0;-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg)}to{opacity:1;-webkit-transform:perspective(2000px) rotateY(0deg);transform:perspective(2000px) rotateY(0deg)}}@-webkit-keyframes verticalFlipIn{0%{opacity:0;-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg)}to{opacity:1;-webkit-transform:perspective(2000px) rotateX(0deg);transform:perspective(2000px) rotateX(0deg)}}@keyframes verticalFlipIn{0%{opacity:0;-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg)}to{opacity:1;-webkit-transform:perspective(2000px) rotateX(0deg);transform:perspective(2000px) rotateX(0deg)}}@-webkit-keyframes horizontalFlipOut{0%{opacity:1;-webkit-transform:perspective(2000px) rotateY(0deg);transform:perspective(2000px) rotateY(0deg)}to{opacity:0;-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg)}}@keyframes horizontalFlipOut{0%{opacity:1;-webkit-transform:perspective(2000px) rotateY(0deg);transform:perspective(2000px) rotateY(0deg)}to{opacity:0;-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg)}}@-webkit-keyframes verticalFlipOut{0%{opacity:1;-webkit-transform:perspective(2000px) rotateX(0deg);transform:perspective(2000px) rotateX(0deg)}to{opacity:0;-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg)}}@keyframes verticalFlipOut{0%{opacity:1;-webkit-transform:perspective(2000px) rotateX(0deg);transform:perspective(2000px) rotateX(0deg)}to{opacity:0;-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg)}}.scale.transition.in{-webkit-animation-name:scaleIn;animation-name:scaleIn}.scale.transition.out{-webkit-animation-name:scaleOut;animation-name:scaleOut}@-webkit-keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.transition.fly{-webkit-animation-duration:.6s;animation-duration:.6s;transition-timing-function:cubic-bezier(.215,.61,.355,1)}.transition.fly.in{-webkit-animation-name:flyIn;animation-name:flyIn}.transition[class*="fly up"].in{-webkit-animation-name:flyInUp;animation-name:flyInUp}.transition[class*="fly down"].in{-webkit-animation-name:flyInDown;animation-name:flyInDown}.transition[class*="fly left"].in{-webkit-animation-name:flyInLeft;animation-name:flyInLeft}.transition[class*="fly right"].in{-webkit-animation-name:flyInRight;animation-name:flyInRight}.transition.fly.out{-webkit-animation-name:flyOut;animation-name:flyOut}.transition[class*="fly up"].out{-webkit-animation-name:flyOutUp;animation-name:flyOutUp}.transition[class*="fly down"].out{-webkit-animation-name:flyOutDown;animation-name:flyOutDown}.transition[class*="fly left"].out{-webkit-animation-name:flyOutLeft;animation-name:flyOutLeft}.transition[class*="fly right"].out{-webkit-animation-name:flyOutRight;animation-name:flyOutRight}@-webkit-keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@-webkit-keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@-webkit-keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@-webkit-keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@-webkit-keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@-webkit-keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@-webkit-keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.transition.slide.in,.transition[class*="slide down"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center left;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center left;transform-origin:center left}@-webkit-keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}to{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}to{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}to{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}to{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}.transition.swing{-webkit-animation-duration:.8s;animation-duration:.8s}.transition[class*="swing down"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center left;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center left;transform-origin:center left}@-webkit-keyframes swingInX{0%{opacity:0;-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg)}40%{opacity:1;-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg)}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}to{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg)}}@keyframes swingInX{0%{opacity:0;-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg)}40%{opacity:1;-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg)}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}to{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg)}}@-webkit-keyframes swingInY{0%{opacity:0;-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg)}40%{opacity:1;-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg)}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}to{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg)}}@keyframes swingInY{0%{opacity:0;-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg)}40%{opacity:1;-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg)}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}to{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg)}}@-webkit-keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{opacity:1;-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg)}to{opacity:0;-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg)}}@keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0deg);transform:perspective(1000px) rotateX(0deg)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{opacity:1;-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg)}to{opacity:0;-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg)}}@-webkit-keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{opacity:1;-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg)}to{opacity:0;-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg)}}@keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0deg);transform:perspective(1000px) rotateY(0deg)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{opacity:1;-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg)}to{opacity:0;-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg)}}.transition.zoom.in{-webkit-animation-name:zoomIn;animation-name:zoomIn}.transition.zoom.out{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomIn{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes zoomIn{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:1;-webkit-transform:scale(0);transform:scale(0)}}@keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:1;-webkit-transform:scale(0);transform:scale(0)}}.flash.transition{-webkit-animation-name:flash;animation-name:flash}.flash.transition,.shake.transition{-webkit-animation-duration:.75s;animation-duration:.75s}.shake.transition{-webkit-animation-name:shake;animation-name:shake}.bounce.transition{-webkit-animation-name:bounce;animation-name:bounce}.bounce.transition,.tada.transition{-webkit-animation-duration:.75s;animation-duration:.75s}.tada.transition{-webkit-animation-name:tada;animation-name:tada}.pulse.transition{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-name:pulse;animation-name:pulse}.jiggle.transition{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:jiggle;animation-name:jiggle}.transition.glow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:glow;animation-name:glow;-webkit-animation-timing-function:cubic-bezier(.19,1,.22,1);animation-timing-function:cubic-bezier(.19,1,.22,1)}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes shake{0%,to{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,to{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@-webkit-keyframes bounce{0%,20%,50%,80%,to{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,20%,50%,80%,to{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}to{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}to{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@-webkit-keyframes pulse{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:.7;-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:.7;-webkit-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes jiggle{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes jiggle{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes glow{0%{background-color:#fcfcfd}30%{background-color:#fff6cd}to{background-color:#fcfcfd}}@keyframes glow{0%{background-color:#fcfcfd}30%{background-color:#fff6cd}to{background-color:#fcfcfd}}.item-listing .items .item .ui.image.tiny{width:100px!important}.item-listing .items .item .image img{border:1px solid #d3d3d3}body.term-asian-americans header.slim.post-header .grid>.column:last-of-type,body.term-state-of-the-news-media header.slim.post-header .grid>.column:last-of-type,body.term-trust-facts-and-democracy header.slim.post-header .grid>.column:last-of-type{align-items:center!important;flex-direction:column!important}body.term-asian-americans .page-title,body.term-state-of-the-news-media .page-title,body.term-trust-facts-and-democracy .page-title{font-weight:600}body.term-asian-americans .page-title:after,body.term-asian-americans .page-title:before,body.term-state-of-the-news-media .page-title:after,body.term-state-of-the-news-media .page-title:before,body.term-trust-facts-and-democracy .page-title:after,body.term-trust-facts-and-democracy .page-title:before{content:"";display:inline-block;height:31px;width:35px}body.term-asian-americans .page-title:before,body.term-state-of-the-news-media .page-title:before,body.term-trust-facts-and-democracy .page-title:before{background-repeat:no-repeat;margin-right:.25em}body.term-asian-americans .page-title:after,body.term-state-of-the-news-media .page-title:after,body.term-trust-facts-and-democracy .page-title:after{background-repeat:no-repeat;margin-left:.25em}body.term-trust-facts-and-democracy .page-title:before{background-image:url(assets/tfdCheck-38271ed2.svg)}body.term-state-of-the-news-media .page-title:after,body.term-state-of-the-news-media .page-title:before{background-image:url(assets/stonm-70db750d.png)}body.post-type-archive-fact-tank .ui.divided.items.paginated>article{border-bottom:1px solid rgba(34,36,38,.15);margin:0 0 2rem;padding:0 0 2rem}body.post-type-archive-fact-tank .ui.divided.items.paginated>article:last-of-type{border-bottom:none;margin:0;padding:0}body.post-type-archive-fact-tank .ui.divided.items.paginated>article .post-content{margin:0!important}#js-end-of-fact-tank-post .ui.medium.header{display:block}@media only screen and (max-width:767px){#js-end-of-fact-tank-post .ui.medium.header{font-size:1rem}}#js-end-of-fact-tank-post .ui.medium.header a{color:#346ead}#js-end-of-fact-tank-post .share-tools{border-bottom:1px solid #d3d3d3!important;padding-bottom:1rem;padding-top:1rem}@media only screen and (min-width:767px){#js-end-of-fact-tank-post .share-tools{justify-content:flex-end}}@media only screen and (max-width:767px){#js-end-of-fact-tank-post .share-tools .fb-pew-share,#js-end-of-fact-tank-post .share-tools .item:last-of-type,#js-end-of-fact-tank-post .share-tools .linkedin-pew-share,#js-end-of-fact-tank-post .share-tools .twtr-pew-share{display:none!important}}#js-end-of-fact-tank-post .item>.image{min-width:72px!important}.post-content figure.wp-caption,.post-content img{max-width:100%!important}.post-content .dropcap{float:left;font-size:4.6rem;line-height:1;padding-right:.8rem}.post-content .versal-bold{font-family:var(--wp--preset--font-family--sans-serif);font-size:110%}.post-content:not(.wp-block-pullquote)>blockquote:not(.wp-block-quote){border-bottom:1px solid #ccc;border-top:1px solid #ccc;display:block!important;margin:0 0 1rem;padding:20px 0 20px 20px}@media only screen and (min-width:768px){.post-content:not(.wp-block-pullquote)>blockquote:not(.wp-block-quote){border-bottom:0;border-left:1px solid #ccc;border-top:0;float:right;margin:0 0 1rem 1.1rem;width:50%}}.post-content:not(.wp-block-pullquote)>blockquote:not(.wp-block-quote)>p{font-family:var(--wp--preset--font-family--serif);font-size:1.5rem!important;line-height:2.5rem}.post-content:not(.wp-block-pullquote)>blockquote:not(.wp-block-quote) cite{color:#8c8c8c;display:block;font-family:var(--wp--preset--font-family--sans-serif);font-size:1rem!important;font-style:normal;letter-spacing:.1em;padding-top:.7rem;text-align:right;text-transform:uppercase}.post-content .ui.segment>h2:first-of-type,.post-content .ui.segment>h3:first-of-type,.post-content .ui.segment>h4:first-of-type{margin-top:0}body.page .post-header>.ui.equal.width.stackable.grid,body.post-type-archive-fact-tank .post-header>.ui.equal.width.stackable.grid,body.single .post-header>.ui.equal.width.stackable.grid{align-items:center}body.page .post-header .share-tools,body.post-type-archive-fact-tank .post-header .share-tools,body.single .post-header .share-tools{margin:0}@media only screen and (min-width:768px){body.page .post-header .share-tools,body.post-type-archive-fact-tank .post-header .share-tools,body.single .post-header .share-tools{justify-content:flex-end}}body.page #js-publication-type,body.post-type-archive-fact-tank #js-publication-type,body.single #js-publication-type{margin-bottom:1rem}@media only screen and (max-width:991px){body.page #js-publication-type,body.post-type-archive-fact-tank #js-publication-type,body.single #js-publication-type{margin-top:1rem}}body.page #content .taxonomies,body.post-type-archive-fact-tank #content .taxonomies,body.single #content .taxonomies{clear:both}body.page #content .ui.footnotes,body.post-type-archive-fact-tank #content .ui.footnotes,body.single #content .ui.footnotes{clear:both;margin-left:1.5rem}body.page #content .ui.footnotes li,body.post-type-archive-fact-tank #content .ui.footnotes li,body.single #content .ui.footnotes li{color:#58585b;line-height:160%}body.page #content .ui.footnotes li:before,body.post-type-archive-fact-tank #content .ui.footnotes li:before,body.single #content .ui.footnotes li:before{margin-left:-2rem;width:1.5rem}body.page #content .ui.pagination,body.post-type-archive-fact-tank #content .ui.pagination,body.single #content .ui.pagination{margin:0 0 40px}body.fact-sheets-template-default #js-post-date-share .ui.menu{margin:0!important;min-height:inherit!important}body.fact-sheets-template-default .prc-widget-toc .active{background:none!important}body.fact-sheets-template-default #primary>.ui.grid:nth-of-type(2){margin-top:0!important}body.fact-sheets-template-default .post-content .toc-chapter-icon{text-align:center}body.fact-sheets-template-default .post-content .toc-chapter-icon img{max-width:70px}body.fact-sheets-template-default .post-content .toc-chapter-icon+.toc-chapter{margin-top:0!important;text-align:center}body.fact-sheets-template-default article .post-content,body.fact-sheets-template-default article .post-header{margin-left:auto;margin-right:auto;max-width:640px}body.fact-sheets-template-default #factsheet-collections{font-family:var(--wp--preset--font-family--sans-serif)}body.fact-sheets-template-default #factsheet-collections .ui.list{margin:0}body.fact-sheets-template-default #factsheet-collections .ui.list .item{font-size:1rem}body.fact-sheets-template-default #factsheet-collections .ui.segment{margin:0}body.fact-sheets-template-default #factsheet-collections .ui.divider{margin-top:0}body.fact-sheets-template-default #factsheet-collections a{color:#000}body.fact-sheets-template-default #factsheet-collections .ui.inverted.segment .item{text-transform:uppercase}body.post-template-template-centered.single-post .post-content :where(.alignfull:not(.alignleft):not(.alignright)){--margin:100vw;--margin-calc:calc(var(--margin)*0.5);margin-left:calc(50% - var(--margin-calc))!important;max-width:100vw;width:100vw!important}body.post-template-template-centered.single-post #content header.post-header,body.post-template-template-essay.single-post #content header.post-header{margin-left:auto;margin-right:auto;max-width:676px}body.interactives-template-template-centered .cover-content>.post-header .share-tools,body.interactives-template-template-wide .cover-content>.post-header .share-tools,body[class*=-template-centered] .cover-content,body[class*=-template-centered] .cover-inner,body[class*=-template-wide] .cover-content,body[class*=-template-wide] .cover-inner{display:flex!important}body[class*=-template-centered] .cover-image,body[class*=-template-wide] .cover-image{background-position:50%;background-repeat:no-repeat;background-size:cover;display:none;height:417px;position:relative;z-index:1}@media only screen and (min-width:767px){body[class*=-template-centered] .cover-image,body[class*=-template-wide] .cover-image{display:flex;margin-top:-35px}}body[class*=-template-centered] .cover-inner,body[class*=-template-wide] .cover-inner{flex-grow:1}body[class*=-template-centered] .cover-inner #js-post-date-share,body[class*=-template-wide] .cover-inner #js-post-date-share{max-width:100%}body[class*=-template-centered] .cover-content,body[class*=-template-wide] .cover-content{flex-direction:column;justify-content:center;margin-left:auto;margin-right:auto;max-width:920px;text-align:center}body[class*=-template-centered] .cover-content .post-header .share-tools,body[class*=-template-wide] .cover-content .post-header .share-tools{display:none}body[class*=-template-centered] .cover-content .post-header .post-title,body[class*=-template-wide] .cover-content .post-header .post-title{color:#fff;font-size:4rem}body[class*=-template-centered] .cover-content .post-header .bylines,body[class*=-template-centered] .cover-content .post-header .meta,body[class*=-template-centered] .cover-content .post-header .ui.header,body[class*=-template-wide] .cover-content .post-header .bylines,body[class*=-template-wide] .cover-content .post-header .meta,body[class*=-template-wide] .cover-content .post-header .ui.header{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.8)}body[class*=-template-centered] .cover-content .post-header .bylines a,body[class*=-template-centered] .cover-content .post-header .meta a,body[class*=-template-centered] .cover-content .post-header .ui.header a,body[class*=-template-wide] .cover-content .post-header .bylines a,body[class*=-template-wide] .cover-content .post-header .meta a,body[class*=-template-wide] .cover-content .post-header .ui.header a{color:#fff;text-decoration:underline}body[class*=-template-centered] .cover-content .post-header .meta,body[class*=-template-wide] .cover-content .post-header .meta{margin-bottom:1rem}body[class*=-template-centered] .cover-content .post-header .bylines,body[class*=-template-centered] .cover-content .post-header .meta,body[class*=-template-wide] .cover-content .post-header .bylines,body[class*=-template-wide] .cover-content .post-header .meta{font-size:1rem}body[class*=-template-centered].post .post-content .ui.list,body[class*=-template-centered].post .post-content ol,body[class*=-template-centered].post .post-content p,body[class*=-template-centered].post .post-content ul:not(.dtr-details),body[class*=-template-centered].single-interactives .post-content .ui.list,body[class*=-template-centered].single-interactives .post-content ol,body[class*=-template-centered].single-interactives .post-content p,body[class*=-template-centered].single-interactives .post-content ul:not(.dtr-details),body[class*=-template-wide].post .post-content .ui.list,body[class*=-template-wide].post .post-content ol,body[class*=-template-wide].post .post-content p,body[class*=-template-wide].post .post-content ul:not(.dtr-details),body[class*=-template-wide].single-interactives .post-content .ui.list,body[class*=-template-wide].single-interactives .post-content ol,body[class*=-template-wide].single-interactives .post-content p,body[class*=-template-wide].single-interactives .post-content ul:not(.dtr-details){font-size:1.3rem}body[class*=-template-centered].post .post-content .ui.list,body[class*=-template-centered].post .post-content ol,body[class*=-template-centered].post .post-content ul:not(.dtr-details),body[class*=-template-centered].single-interactives .post-content .ui.list,body[class*=-template-centered].single-interactives .post-content ol,body[class*=-template-centered].single-interactives .post-content ul:not(.dtr-details),body[class*=-template-wide].post .post-content .ui.list,body[class*=-template-wide].post .post-content ol,body[class*=-template-wide].post .post-content ul:not(.dtr-details),body[class*=-template-wide].single-interactives .post-content .ui.list,body[class*=-template-wide].single-interactives .post-content ol,body[class*=-template-wide].single-interactives .post-content ul:not(.dtr-details){line-height:180%}body[class*=-template-centered].has-cover-image #content>.ui.divider:first-of-type,body[class*=-template-wide].has-cover-image #content>.ui.divider:first-of-type{margin-left:auto!important;margin-right:auto!important;max-width:664px}body[class*=-template-centered] header.post-header+#js-sticky-post-toolbar,body[class*=-template-wide] header.post-header+#js-sticky-post-toolbar{border-top:1px solid #d3d3d3;margin-bottom:1rem!important}body[class*=-template-centered] #js-sticky-post-toolbar,body[class*=-template-wide] #js-sticky-post-toolbar{background:#fff;border-bottom:1px solid #d3d3d3;margin-bottom:1rem;margin-left:auto;margin-right:auto;max-width:667px;width:100%}@media only screen and (max-width:500px){body[class*=-template-centered] #js-sticky-post-toolbar #js-toc-widget,body[class*=-template-wide] #js-sticky-post-toolbar #js-toc-widget{width:100%}}body[class*=-template-centered] #js-sticky-post-toolbar.fixed.top,body[class*=-template-wide] #js-sticky-post-toolbar.fixed.top{border-bottom:0;max-width:100%}@media only screen and (max-width:749px){body[class*=-template-centered] #js-sticky-post-toolbar.fixed.top,body[class*=-template-wide] #js-sticky-post-toolbar.fixed.top{box-shadow:0 2px 10px rgba(0,0,0,.5);left:0!important}}@media only screen and (min-width:750px){body[class*=-template-centered] #js-sticky-post-toolbar.fixed.top,body[class*=-template-wide] #js-sticky-post-toolbar.fixed.top{box-shadow:0 1px 2px rgba(0,0,0,.15);margin-left:-1rem!important;max-width:calc(667px + 1rem);padding-left:1rem;padding-right:1rem}}@media only screen and (max-width:500px){body[class*=-template-centered] #js-sticky-post-toolbar:not(.fixed)>.container,body[class*=-template-wide] #js-sticky-post-toolbar:not(.fixed)>.container{margin:0!important}}body[class*=-template-centered] #js-sticky-post-toolbar .container,body[class*=-template-wide] #js-sticky-post-toolbar .container{align-items:center;display:flex}body[class*=-template-centered] #js-sticky-post-toolbar .prc-widget-toc,body[class*=-template-wide] #js-sticky-post-toolbar .prc-widget-toc{margin-bottom:0}@media only screen and (max-width:500px){body[class*=-template-centered] #js-sticky-post-toolbar .prc-widget-toc,body[class*=-template-wide] #js-sticky-post-toolbar .prc-widget-toc{flex-grow:1}}body[class*=-template-centered] #js-sticky-post-toolbar .prc-widget-toc .ui.dropdown,body[class*=-template-wide] #js-sticky-post-toolbar .prc-widget-toc .ui.dropdown{border:0;margin:0}body[class*=-template-centered] #js-sticky-post-toolbar .share-tools,body[class*=-template-wide] #js-sticky-post-toolbar .share-tools{flex-grow:1;justify-content:flex-end;margin:0}@media only screen and (max-width:500px){body[class*=-template-centered] #js-sticky-post-toolbar .share-tools,body[class*=-template-wide] #js-sticky-post-toolbar .share-tools{display:none}}body[class*=-template-centered] .chapter-background-image,body[class*=-template-wide] .chapter-background-image{align-items:center;background-position:50%;background-size:cover;color:#fff;display:flex;font-size:2.5rem;height:400px;justify-content:center;margin-bottom:2rem}body[class*=-template-centered] .chapter-background-image:before,body[class*=-template-wide] .chapter-background-image:before{background-color:rgba(0,0,0,.5);content:"";display:block;height:inherit;position:absolute;width:100vw}body[class*=-template-centered] .chapter-background-image>span,body[class*=-template-wide] .chapter-background-image>span{position:relative}@media only screen and (max-width:767px){body[class*=-template-centered] .chapter-background-image,body[class*=-template-wide] .chapter-background-image{height:40vh!important;margin-left:-14px!important;width:calc(100% + 28px)!important}}.post-content .image-box{margin-top:0}body.page-template-template-staff h2{font-family:var(--wp--preset--font-family--sans-serif)}body.page-template-template-experts .ui.relaxed.divided.list .item,body.tax-areas-of-expertise .ui.relaxed.divided.list .item{padding:1rem 0}body.page-template-template-experts .ui.relaxed.divided.list .item h2.ui.header a,body.tax-areas-of-expertise .ui.relaxed.divided.list .item h2.ui.header a{color:#000}body.page-template-template-experts .ui.relaxed.divided.list .item h2.ui.header a:hover,body.tax-areas-of-expertise .ui.relaxed.divided.list .item h2.ui.header a:hover{text-decoration:none}body.page-template-template-experts .ui.relaxed.divided.list .item .meta,body.tax-areas-of-expertise .ui.relaxed.divided.list .item .meta{font-weight:500;margin:.5em 0}body.page-template-template-experts .ui.relaxed.divided.list .item p,body.tax-areas-of-expertise .ui.relaxed.divided.list .item p{font-size:.9em}body.page-template-template-experts .ui.relaxed.divided.list .item p strong,body.tax-areas-of-expertise .ui.relaxed.divided.list .item p strong{letter-spacing:.1em;text-transform:uppercase}.taxonomies>.list{margin:0!important}.taxonomies>.list *{font-family:var(--wp--preset--font-family--sans-serif)!important}#js-search-topics-tabs{border-bottom:3px solid #fff}#js-az-index div[data-letter]{margin-bottom:2rem}#js-az-index div[data-letter] .ui.link.list .item a{color:#000}#js-az-index div[data-letter] .ui.link.list .item a:hover{text-decoration:none}#js-az-list{box-shadow:inset 0 2px 2px 0 #d2d2c2;padding:0 1rem}#js-az-list>.menu{margin:0}@media only screen and (max-width:991px){#js-az-list>.menu{overflow-x:scroll}}#js-az-list>.menu .item{color:#b7b8b9;flex-grow:1;font-weight:700}#js-az-list>.menu .item a{color:#000}#js-az-quick-search .field h2{color:#444}#tophat{margin-top:0!important;max-width:100%!important;min-height:2.8571428571rem}@media only screen and (max-width:991px){#tophat{display:none!important}}#tophat .item{color:#fff;font-family:var(--wp--preset--font-family--sans-serif);font-size:.8571428571rem;font-weight:400;letter-spacing:.1em;text-transform:uppercase}#tophat .menu>.item:first-of-type,#tophat .menu>.item:nth-of-type(2),#tophat .menu>.item:nth-of-type(3),#tophat .menu>.item:nth-of-type(4){border-right:1px solid var(--wp--preset--color--gray-dark);padding-right:10px}#tophat .menu>.item:nth-of-type(2),#tophat .menu>.item:nth-of-type(3),#tophat .menu>.item:nth-of-type(4){padding-left:10px}#masthead{margin-bottom:1px}#masthead .ui.fluid.container{margin-left:0!important;margin-right:0!important}@media only screen and (max-width:991px){#masthead .ui.fitted.divider{display:none!important}}#masthead .ui.grid{margin-bottom:0}@media only screen and (min-width:991px){#masthead .logo>img{max-width:361px}}@media only screen and (max-width:991px){#masthead .logo>img{max-height:40px}#masthead .desktop-header{display:none!important}}#masthead .desktop-header .ui.grid>.row.breaking-news:first-of-type{padding-bottom:0}#masthead .desktop-header .ui.grid>.row.breaking-news:first-of-type p{font-size:15px}#masthead .desktop-header .ui.grid>.row:last-of-type{padding-bottom:0}#masthead .desktop-header .ui.tabular.menu{border-bottom:0;margin-left:-1.4285714286em;margin-right:-1.4285714286em;width:calc(100% + 2.85714em)}#masthead .desktop-header .ui.tabular.menu .item{justify-content:center;letter-spacing:.02em;text-transform:uppercase}#masthead .desktop-header .ui.tabular.menu a.item{flex-grow:1;padding-left:0;padding-right:0}#masthead .desktop-header .ui.tabular.menu a.item.active{background:inherit;border-color:transparent;border-radius:inherit;border-top-width:inherit;box-shadow:inherit!important;color:inherit;margin-bottom:inherit;position:relative;top:1px}#masthead .desktop-header .ui.tabular.menu div.item{cursor:pointer;padding-left:21px;padding-right:19px}#masthead .desktop-header .ui.tabular.menu div.item.active{background-color:#f7f7f7;font-weight:400}#masthead .mobile-header{background-color:#1b1c1d;margin:0}@media only screen and (min-width:991px){#masthead .mobile-header{display:none!important}}#masthead .mobile-header .logo{display:block}#masthead .mobile-header .column{text-align:center}#masthead .mobile-header .column:nth-of-type(2){padding-left:0;padding-right:0}#masthead .mobile-header .button{border:1px solid #484848}#desktop-mega-menu{background-color:#f7f7f7;margin-top:-1px;position:absolute;width:100%;z-index:3}#desktop-mega-menu .ui.container{padding-bottom:6px;padding-top:6px}#desktop-mega-menu .ui.fitted.header{font-size:16px}#desktop-mega-menu.hidden{display:none}#desktop-mega-menu .close.icon{float:right}#desktop-mega-menu .ui.grid{margin-bottom:0}#desktop-mega-menu .eight.wide.column{display:flex;flex-direction:column}#desktop-mega-menu .ui.equal.width.fitted.grid{flex-grow:1}#desktop-mega-menu .ui.equal.width.fitted.grid>.divided.row{padding-bottom:0}#desktop-mega-menu .item.blue,#mobile-mega-menu .item.blue{font-weight:500}#mobile-mega-menu.hidden,#mobile-search.hidden{display:none}#mobile-search{padding:1rem}#mobile-nav{border:none;box-shadow:none}#site-footer{background-color:#f8f8f8;padding-bottom:2rem;padding-top:1.25rem}#site-footer *{font-family:var(--wp--preset--font-family--sans-serif)}#site-footer img.organization-name{margin-top:-5px;position:relative}#site-footer .contact{font-size:12px}#site-footer .contact img{margin-bottom:1rem;max-width:200px}#site-footer .contact a{color:#000;font-family:var(--wp--preset--font-family--sans-serif)}#site-footer .follow-us .list>.item:first-child{padding-bottom:0}@media only screen and (max-width:767px){#site-footer .projects.column .ui.equal.width.fitted.grid{margin-bottom:1em;margin-left:-1em;margin-right:-1em}#site-footer .projects.column .ui.equal.width.fitted.grid>.fitted.column{padding-left:1em;padding-right:1em}}#site-footer .ui.link.list .item .header{color:#2a2a2a;font-size:13px;text-transform:uppercase}#site-footer .ui.link.list .item .header a{color:#666}#site-footer .ui.link.list .item .divider{margin-bottom:.3rem}#site-footer .about{clear:both;color:#58585b;font-size:12px;line-height:17px;padding-top:44px}#site-footer .about strong a{text-transform:uppercase}.fine-print{font-family:var(--wp--preset--font-family--sans-serif);padding-bottom:1.5rem;padding-top:1rem}.fine-print a.item,.fine-print span.item{font-size:.8em}.fine-print a,.fine-print span{color:#58585a!important}/*! - * # Semantic UI - List - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.list,ol.ui.list,ul.ui.list{font-family:var(--wp--preset--font-family--sans-serif);list-style-type:none;margin:1em 0;padding:0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list li{display:list-item;line-height:1.1428571429em;list-style-position:outside;list-style-type:none;padding:.2142857143em 0;table-layout:fixed}div.ui.flex.list{flex-direction:column}div.ui.flex.list>.item{display:flex;table-layout:inherit;width:100%}.ui.list>.item:after,.ui.list>.list>.item,ol.ui.list>li:first-child:after,ul.ui.list>li:first-child:after{clear:both;content:"";display:block;height:0;visibility:hidden}.ui.list .list>.item:first-child,.ui.list>.item:first-child,ol.ui.list li:first-child,ul.ui.list li:first-child{padding-top:0}.ui.list .list>.item:last-child,.ui.list>.item:last-child,ol.ui.list li:last-child,ul.ui.list li:last-child{padding-bottom:0}.ui.list .list,ol.ui.list ol,ul.ui.list ul{clear:both;margin:0;padding:.75em 0 .25em 1em}.ui.list .list>.item,ol.ui.list ol li,ul.ui.list ul li{line-height:inherit;padding:.1428571429em 0}.ui.list .list>.item:first-child,ol.ui.list ol li:first-child,ul.ui.list ul li:first-child{padding-top:0!important}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{color:#565656;margin:0;padding-left:0;padding-top:0;transition:color .1s ease;vertical-align:top}.ui.list .list>.item>:first-of-type.icon{padding-left:0;padding-right:.2857142857em}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{margin:0}.ui.list .list>.item>.image:not(:only-child):not(img),.ui.list>.item>.image:not(:only-child):not(img){padding-right:.5em}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:top}.ui.list .list>.item>.image:only-child,.ui.list .list>.item>img.image,.ui.list>.item>.image:only-child,.ui.list>.item>img.image{display:inline-block}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.1428571429em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;padding:0 0 0 .5em;vertical-align:top;width:100%}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block;width:auto}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>.item .header,.ui.list>.item .header{color:#2a2a2a;display:block;font-family:var(--wp--preset--font-family--sans-serif);font-weight:700;margin:0}.ui.list .list>.item .description,.ui.list>.item .description{color:rgba(0,0,0,.7);display:block}.ui.list .list>.item a,.ui.list>.item a,.ui.list>a.item{cursor:pointer}.ui.list .list>a.item,.ui.list>a.item{color:#000;cursor:pointer}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#5f94cf}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .list>.item a.header,.ui.list>.item a.header{color:#000!important;cursor:pointer}.ui.list .list>.item a.header:hover,.ui.list>.item a.header:hover{color:#5f94cf!important}.ui[class*="left floated"].list{float:left}.ui[class*="right floated"].list{float:right}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0 1em 0 0}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0 0 0 1em}.ui.menu .ui.list .list>.item,.ui.menu .ui.list>.item{background-color:transparent;display:list-item;line-height:1.1428571429em;list-style-position:outside;list-style-type:none;padding:.2142857143em 0;table-layout:fixed}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{background:none;border:none}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0}.ui.horizontal.list{display:inline-block;font-size:0}.ui.horizontal.list>.item{display:inline-block;font-size:1rem;margin-left:1em}.ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-bottom:0;padding-left:0}.ui.horizontal.list .list>.item>.content,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.content,.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.image{vertical-align:middle}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-bottom:.2142857143em;padding-top:.2142857143em}.ui.horizontal.list>.item>i.icon{margin:0;padding:0 .25em 0 0}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{display:inline-block;float:none}.ui.list.comma-seperated{padding:0}.ui.list.comma-seperated div.item{color:#818181}.ui.list.comma-seperated a.item{color:#346ead}.ui.list.comma-seperated .item{margin-left:0;margin-right:.4em!important}.ui.list.comma-seperated a.item:after{content:",";display:inline-block;height:inherit;visibility:visible}.ui.list.comma-seperated a.item:last-of-type:after{content:""}.ui.columns.list{display:flex;flex-wrap:wrap}.ui.columns.list.relaxed .item:first-child{padding-top:.70028571em}.ui.columns.list .item:first-child{padding-top:.2142857143em}.ui.columns.list.four .item,.ui.columns.list.three .item{width:25%}.ui.list .list>.disabled.item,.ui.list>.disabled.item{color:rgba(0,0,0,.2)!important;pointer-events:none}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:hsla(0,0%,100%,.2)!important}.ui.list .list>.hidden.item,.ui.list>.hidden,.ui.list>.hidden.item,.ui.list>.item>.hidden{display:none}.ui.list .list>.hidden.item.visible,.ui.list>.hidden.item.visible,.ui.list>.hidden.visible,.ui.list>.item>.hidden.visible{display:list-item}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:#2a2a2a}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:hsla(0,0%,100%,.7)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:hsla(0,0%,100%,.9)}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:hsla(0,0%,100%,.7)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{color:hsla(0,0%,100%,.9);cursor:pointer}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#5f94cf}.ui.inverted.list .item a:not(.ui){color:hsla(0,0%,100%,.9)!important}.ui.inverted.list .item a:not(.ui):hover{color:#5f94cf!important}.ui.list [class*="top aligned"],.ui.list[class*="top aligned"] .content,.ui.list[class*="top aligned"] .image{vertical-align:top!important}.ui.list [class*="middle aligned"],.ui.list[class*="middle aligned"] .content,.ui.list[class*="middle aligned"] .image{vertical-align:middle!important}.ui.list [class*="bottom aligned"],.ui.list[class*="bottom aligned"] .content,.ui.list[class*="bottom aligned"] .image{vertical-align:bottom!important}.ui.link.list .item,.ui.link.list .item a:not(.ui),.ui.link.list a.item{color:#000;text-decoration:none;transition:color .1s ease}.ui.link.list .item .meta,.ui.link.list .item a:not(.ui) .meta,.ui.link.list a.item .meta{display:block;padding-bottom:.5rem}.ui.link.list .item>a:hover,.ui.link.list a.item:hover{text-decoration:underline!important}.ui.link.list .blue.item{color:#346ead}.ui.link.list .active.item{font-weight:700}.ui.link.list .active.item .list{font-weight:400}.ui.link.list.list .item a:not(.ui):hover,.ui.link.list.list a.item:hover{color:rgba(0,0,0,.8)}.ui.link.list.list .item a:not(.ui):active,.ui.link.list.list a.item:active{color:rgba(0,0,0,.9)}.ui.link.list.list .active.item,.ui.link.list.list .active.item a:not(.ui){color:rgba(0,0,0,.95)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a:not(.ui),.ui.inverted.link.list a.item{color:hsla(0,0%,100%,.5)}.ui.inverted.link.list.list .active.item a:not(.ui),.ui.inverted.link.list.list .item a:not(.ui):active,.ui.inverted.link.list.list .item a:not(.ui):hover,.ui.inverted.link.list.list a.active.item,.ui.inverted.link.list.list a.item:active,.ui.inverted.link.list.list a.item:hover{color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{background-color:transparent;border-radius:0;color:rgba(0,0,0,.4);cursor:pointer;margin:0;padding:.5em;transition:color .1s ease,padding-left .1s ease,background-color .1s ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background-color:#f0f0e6;color:rgba(0,0,0,.8)}.ui.selection.list .list>.item:active,.ui.selection.list>.item:active{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.9)}.ui.selection.list .list>.item.active,.ui.selection.list>.item.active{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.selection.list>.item{background-color:transparent;color:hsla(0,0%,100%,.5)}.ui.inverted.selection.list>.item:hover{background-color:hsla(0,0%,100%,.02);color:#fff}.ui.inverted.selection.list>.item.active,.ui.inverted.selection.list>.item:active{background-color:hsla(0,0%,100%,.08);color:#fff}.ui.celled.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0}.ui.animated.list>.item{transition:color .25s ease .1s,padding-left .25s ease .1s,background-color .25s ease .1s}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0;padding-right:0}.ui.fitted.list:not(.selection).horizontal{margin:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-.5em;margin-right:-.5em}.ui.attached.list.bottom{margin-bottom:0!important}.ui.attached.list.top{margin-top:0!important}.ui.bulleted.list{margin-left:1.25rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before{color:inherit;content:"•";font-weight:400;left:auto;margin-left:-1.25rem;opacity:1;pointer-events:none;position:absolute;top:auto;-webkit-user-select:none;-ms-user-select:none;user-select:none;vertical-align:top}.ui.bulleted.list .list>a.item:before,.ui.bulleted.list>a.item:before{color:#2a2a2a}.ui.bulleted.list .list{padding-left:1.25rem}.ui.horizontal.bulleted.list{margin-left:0}.ui.horizontal.bulleted.list>.item{margin-left:1.25remstrip-unit(.5em)}.ui.horizontal.bulleted.list>.item:first-child{margin-left:0}.ui.horizontal.bulleted.list>.item:before{color:#2a2a2a}.ui.horizontal.bulleted.list>.item:first-child:before{display:none}.ui.ordered.list,.ui.ordered.list .list,ol.ui.list,ol.ui.list ol{counter-reset:ordered;list-style-type:none;margin-left:1.25rem}.ui.ordered.list .list>.item,.ui.ordered.list>.item,ol.ui.list li{list-style-type:none;position:relative}.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before,ol.ui.list li:before{color:#2a2a2a;content:counters(ordered,".") " ";counter-increment:ordered;left:auto;margin-left:-1.25rem;opacity:.8;pointer-events:none;position:absolute;text-align:right;top:auto;-webkit-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.ui.ordered.inverted.list .list>.item:before,.ui.ordered.inverted.list>.item:before,ol.ui.inverted.list li:before{color:hsla(0,0%,100%,.7)}.ui.ordered.list>.item[data-value],.ui.ordered.list>.list>.item[data-value]{content:attr(data-value)}ol.ui.list li[value]:before{content:attr(value)}.ui.ordered.list .list,ol.ui.list ol{margin-left:1em}.ui.ordered.list .list>.item:before,ol.ui.list ol li:before{margin-left:-2em}.ui.ordered.horizontal.list,ol.ui.horizontal.list{margin-left:0}.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before,ol.ui.horizontal.list li:before{margin:0 .5em 0 0;position:static}.ui.tree.list,.ui.tree.list:last-child{padding-bottom:.3em}.ui.tree.list .list,.ui.tree.list:last-child .list{list-style-type:none}.ui.tree.list .list:not(.hidden-list),.ui.tree.list:last-child .list:not(.hidden-list){padding-top:0}.ui.tree.list .item>.header,.ui.tree.list:last-child .item>.header{font-weight:lighter!important;opacity:.7!important}.ui.tree.list .item>.read-more,.ui.tree.list:last-child .item>.read-more{padding-left:1.2em}.ui.tree.list .hidden-list,.ui.tree.list:last-child .hidden-list{display:none}.ui.divided.list>.item{border-top:1px solid rgba(34,36,38,.15)}.ui.divided.list .item .list>.item,.ui.divided.list .list>.item,.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list .list,.ui.divided.bulleted.list:not(.horizontal){margin-left:0;padding-left:0}.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}.ui.divided.ordered.list{margin-left:0}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.2142857143em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0;margin:0}.ui.divided.horizontal.list{margin-left:0}.ui.divided.horizontal.list>.item:not(:first-child){padding-left:.5em}.ui.divided.horizontal.list>.item:not(:last-child){padding-right:.5em}.ui.divided.horizontal.list>.item{border-left:1px solid rgba(34,36,38,.15);border-top:none;line-height:.6;margin:0}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.horizontal.list>.item,.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list{border-color:hsla(0,0%,100%,.1)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(34,36,38,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(34,36,38,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-bottom:.2142857143em;padding-top:.2142857143em}.ui.celled.list .item .list>.item{border-width:0}.ui.celled.list .list>.item:first-child{border-top-width:0}.ui.celled.bulleted.list{margin-left:0}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1.25rem}.ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:.2142857143em}.ui.celled.ordered.list{margin-left:0}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.2142857143em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-left:1px solid rgba(34,36,38,.15);border-top:none;line-height:.6;margin:0;padding-left:.5em;padding-right:.5em}.ui.horizontal.celled.list .list>.item:first-child,.ui.horizontal.celled.list>.item:first-child{border-bottom:none;border-left:none;padding-left:0}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item,.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid hsla(0,0%,100%,.1)}.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>.item:not(:first-child),.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>li:not(:first-child),.ui.relaxed.list:not(.horizontal)>.item:not(:first-child),.ui.relaxed.list:not(.horizontal)>li:not(:first-child){padding-top:.817em}.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>.item:not(:last-child),.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>li:not(:last-child),.ui.relaxed.list:not(.horizontal)>.item:not(:last-child),.ui.relaxed.list:not(.horizontal)>li:not(:last-child){padding-bottom:.5em}.ui.horizontal.relaxed.list .list>.item:not(:first-child),.ui.horizontal.relaxed.list>.item:not(:first-child){padding-left:1rem}.ui.horizontal.relaxed.list .list>.item:not(:last-child),.ui.horizontal.relaxed.list>.item:not(:last-child){padding-right:1rem}.ui.relaxed.list>.item.view-more{cursor:pointer}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:first-child){padding-top:.9285714286em}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:last-child){padding-bottom:.9285714286em}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:first-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:first-child){padding-left:1.5rem}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:last-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:last-child){padding-right:1.5rem}.ui.mini.list{font-size:.7857142857rem}.ui.tiny.list{font-size:.8571428571rem}.ui.small.list{font-size:.9285714286rem}.ui.medium.list{font-size:1rem}.ui.list{font-size:1.0714285714rem}.ui.list .ui.checkbox>label{font-size:1.0714285714rem!important}.ui.large.list{font-size:1.1428571429rem}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.7857142857rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.8571428571rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.9285714286rem}.ui.medium.horizontal.list .list>.item,.ui.medium.horizontal.list>.item{font-size:1rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1.0714285714rem}.ui.horizontal.list .list>.item .ui.checkbox>label,.ui.horizontal.list>.item .ui.checkbox>label{font-size:1.0714285714rem!important}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.1428571429rem}.meta,.ui.kicker{color:rgba(0,0,0,.6);font-family:var(--wp--preset--font-family--sans-serif);font-size:.8571428571rem;letter-spacing:.1em;line-height:1em;text-transform:uppercase}.meta.large,.ui.kicker.large{font-size:.92rem}.kicker-breaking-news{color:#346ead!important;font-family:var(--wp--preset--font-family--sans-serif)!important;font-size:.8571428571rem;font-style:normal;font-weight:500;letter-spacing:.02em;margin-top:9px;text-decoration:none;text-transform:uppercase}.kicker-breaking-news:hover{text-decoration:underline}.uppercase-label{font-size:.8571428571rem;letter-spacing:.1em;line-height:1em;text-transform:uppercase}.source,.uppercase-label{font-family:var(--wp--preset--font-family--sans-serif)}.source{color:#818181;font-size:1rem;font-style:normal;margin-top:20px}.embedded_chart{border-bottom:1px solid #d3d3d3;border-top:1px solid #d3d3d3;margin:1.5rem 0;padding:1.25rem 0}.edit-chart{font-size:.8rem!important;margin-bottom:0;text-align:right}.branding,.chart_credits,.edit-chart{font-family:var(--wp--preset--font-family--sans-serif)!important}.branding,.chart_credits{font-size:.857rem!important}.chart_credits,.source-notes{color:rgba(0,0,0,.6);line-height:1.5rem}.source-notes,.source-notes>p{font-family:var(--wp--preset--font-family--sans-serif)!important;font-size:.9rem!important}.branding{color:#000;text-transform:uppercase}body.external-user-signed-in .is-logged-out-inline{display:none!important}.bylines.meta a{color:#346ead;font-weight:700;text-decoration:none!important}#content>a.kicker-breaking-news{margin-bottom:15px!important}.screen-reader{display:none}.right-seperator{border-right:1px solid #aaa;margin-right:.7rem!important;padding-right:.7rem!important}.embed-footer{margin-bottom:2rem}.share-tools .item .icon{color:#000;font-size:1.2857142857rem!important;margin:0!important}.share-tools .item .icon:hover{opacity:.8}.embed-footer{margin-top:2rem}.embed-footer textarea{border:0;font-family:monospace;height:200px;width:100%}.embed-footer .ui.top.attached:not(.active)+.ui.attached.menu,.embed-footer .ui.top.attached:not(.active)+.ui.attached.menu .active.item{border-top:1px solid #d3d3d3!important}.embed-footer .ui.attached.menu .active.item .icon{margin-left:.25rem}body .methods.bg,body .pew-research-center.bg,body .pewresearch.bg{background-color:#282828!important}body .methods.bg .item,body .methods.bg .item a,body .pew-research-center.bg .item,body .pew-research-center.bg .item a,body .pewresearch.bg .item,body .pewresearch.bg .item a{color:#fff!important}body .methods.border,body .pew-research-center.border,body .pewresearch.border{border-color:#282828}body.methods .blog-post.bg,body.methods .demographic-profile.bg,body.methods .fact-sheet.bg,body.methods .interactive.bg,body.methods .report.bg,body.pewresearch .blog-post.bg,body.pewresearch .demographic-profile.bg,body.pewresearch .fact-sheet.bg,body.pewresearch .interactive.bg,body.pewresearch .report.bg{background-color:#d1a730}body.methods .blog-post.border,body.methods .demographic-profile.border,body.methods .fact-sheet.border,body.methods .interactive.border,body.methods .report.border,body.pewresearch .blog-post.border,body.pewresearch .demographic-profile.border,body.pewresearch .fact-sheet.border,body.pewresearch .interactive.border,body.pewresearch .report.border{border-color:#d1a730}body.methods .pseudo-link,body.pewresearch .pseudo-link{color:#346ead!important}body .journalism.bg,body .media-news.bg{background-color:#733d47}body .journalism.bg .item,body .journalism.bg .item a,body .media-news.bg .item,body .media-news.bg .item a{color:#fff}body .journalism.border,body .media-news.border{border-color:#733d47}body.journalism .pullquote>div:after,body.journalism .pullquote>div:before{color:#733d47}body.journalism .blog-post.bg,body.journalism .demographic-profile.bg,body.journalism .fact-sheet.bg,body.journalism .interactive.bg,body.journalism .report.bg{background-color:#733d47}body.journalism .blog-post.border,body.journalism .demographic-profile.border,body.journalism .fact-sheet.border,body.journalism .interactive.border,body.journalism .report.border{border-color:#733d47}body.journalism .pseudo-link{color:#346ead!important}body .religion.bg{background-color:#0090bf}body .religion.bg .item,body .religion.bg .item a{color:#fff}body .religion.border{border-color:#0090bf}body.religion .pullquote>div:after,body.religion .pullquote>div:before{color:#0090bf}body.religion .blog-post.bg,body.religion .demographic-profile.bg,body.religion .fact-sheet.bg,body.religion .interactive.bg,body.religion .report.bg{background-color:#0090bf}body.religion .blog-post.border,body.religion .demographic-profile.border,body.religion .fact-sheet.border,body.religion .interactive.border,body.religion .report.border{border-color:#0090bf}body.religion .pseudo-link{color:#346ead!important}body .hispanic.bg{background-color:#a55a26}body .hispanic.bg .item,body .hispanic.bg .item a{color:#fff}body .hispanic.border{border-color:#a55a26}body.hispanic .pullquote>div:after,body.hispanic .pullquote>div:before{color:#a55a26}body.hispanic .blog-post.bg,body.hispanic .demographic-profile.bg,body.hispanic .fact-sheet.bg,body.hispanic .interactive.bg,body.hispanic .report.bg{background-color:#a55a26}body.hispanic .blog-post.border,body.hispanic .demographic-profile.border,body.hispanic .fact-sheet.border,body.hispanic .interactive.border,body.hispanic .report.border{border-color:#a55a26}body.hispanic .pseudo-link{color:#346ead!important}body .politics.bg,body .u-s-politics.bg{background-color:#d1a730}body .politics.bg .item,body .politics.bg .item a,body .u-s-politics.bg .item,body .u-s-politics.bg .item a{color:#fff}body .politics.border,body .u-s-politics.border{border-color:#d1a730}body.politics .pullquote>div:after,body.politics .pullquote>div:before{color:#d1a730}body.politics .blog-post.bg,body.politics .demographic-profile.bg,body.politics .fact-sheet.bg,body.politics .interactive.bg,body.politics .report.bg{background-color:#d1a730}body.politics .blog-post.border,body.politics .demographic-profile.border,body.politics .fact-sheet.border,body.politics .interactive.border,body.politics .report.border{border-color:#d1a730}body.politics .pseudo-link{color:#346ead!important}body .social-trends.bg{background-color:#377668}body .social-trends.bg .item,body .social-trends.bg .item a{color:#fff}body .social-trends.border{border-color:#377668}body.social-trends .pullquote>div:after,body.social-trends .pullquote>div:before{color:#377668}body.social-trends .blog-post.bg,body.social-trends .demographic-profile.bg,body.social-trends .fact-sheet.bg,body.social-trends .interactive.bg,body.social-trends .report.bg{background-color:#377668}body.social-trends .blog-post.border,body.social-trends .demographic-profile.border,body.social-trends .fact-sheet.border,body.social-trends .interactive.border,body.social-trends .report.border{border-color:#377668}body.social-trends .pseudo-link{color:#346ead!important}body .internet-tech.bg,body .internet.bg{background-color:#069}body .internet-tech.bg .item,body .internet-tech.bg .item a,body .internet.bg .item,body .internet.bg .item a{color:#fff}body .internet-tech.border,body .internet.border{border-color:#069}body.internet .pullquote>div:after,body.internet .pullquote>div:before{color:#069}body.internet .blog-post.bg,body.internet .demographic-profile.bg,body.internet .fact-sheet.bg,body.internet .interactive.bg,body.internet .report.bg{background-color:#346ead}body.internet .blog-post.border,body.internet .demographic-profile.border,body.internet .fact-sheet.border,body.internet .interactive.border,body.internet .report.border{border-color:#346ead}body.internet .pseudo-link{color:#346ead!important}body .science.bg{background-color:#ea9e2c}body .science.bg .item,body .science.bg .item a{color:#fff}body .science.border{border-color:#ea9e2c}body.science .pullquote>div:after,body.science .pullquote>div:before{color:#ea9e2c}body.science .blog-post.bg,body.science .demographic-profile.bg,body.science .fact-sheet.bg,body.science .interactive.bg,body.science .report.bg{background-color:#ea9e2c}body.science .blog-post.border,body.science .demographic-profile.border,body.science .fact-sheet.border,body.science .interactive.border,body.science .report.border{border-color:#ea9e2c}body.science .pseudo-link{color:#346ead!important}body .global.bg{background-color:#949d48}body .global.bg .item,body .global.bg .item a{color:#fff}body .global.border{border-color:#949d48}body.global .pullquote>div:after,body.global .pullquote>div:before{color:#949d48}body.global .blog-post.bg,body.global .demographic-profile.bg,body.global .fact-sheet.bg,body.global .interactive.bg,body.global .report.bg{background-color:#949d48}body.global .blog-post.border,body.global .demographic-profile.border,body.global .fact-sheet.border,body.global .interactive.border,body.global .report.border{border-color:#949d48}body.global .pseudo-link{color:#346ead!important}body .methodology-report.text-color,body .research-methodology.text-color{color:#d1a730}body .methodology-report .blog-post.bg,body .methodology-report .demographic-profile.bg,body .methodology-report .fact-sheet.bg,body .methodology-report .interactive.bg,body .methodology-report .report.bg,body .methodology-report.bg,body .methodology-report.bg-color,body .research-methodology .blog-post.bg,body .research-methodology .demographic-profile.bg,body .research-methodology .fact-sheet.bg,body .research-methodology .interactive.bg,body .research-methodology .report.bg,body .research-methodology.bg,body .research-methodology.bg-color{background-color:#d1a730}body .methodology-report .blog-post.border,body .methodology-report .demographic-profile.border,body .methodology-report .fact-sheet.border,body .methodology-report .interactive.border,body .methodology-report .report.border,body .research-methodology .blog-post.border,body .research-methodology .demographic-profile.border,body .research-methodology .fact-sheet.border,body .research-methodology .interactive.border,body .research-methodology .report.border{border-color:#d1a730}body .methodology-report .pseudo-link,body .research-methodology .pseudo-link{color:#346ead!important}.expert-header{color:rgba(0,0,0,.85);font-family:abril-text,Georgia,Times New Roman,Times,serif!important;font-size:1.5rem;line-height:2.1rem;margin:-.21425em 0 0}div[class*=shortcode-],figure[class*=shortcode-]{margin-bottom:1.25em!important}div[class*=shortcode-].alignleft,figure[class*=shortcode-].alignleft{float:left;margin-right:1rem}div[class*=shortcode-].alignright,figure[class*=shortcode-].alignright{float:right;margin-left:1rem}div[class^=shortcode-]+div[class^=shortcode-]{margin-top:1.25em!important}.shortcode-shareable-card .ui.basic.segment{padding:0}.shortcode-shareable-card .ui.basic.segment>img{max-width:100%}div.shortcode-mailchimp{clear:both;display:block;margin-bottom:0!important;padding:1rem;text-align:center}div.shortcode-mailchimp .ui.form{margin-left:auto;margin-right:auto;max-width:400px;padding:1rem}div.shortcode-mailchimp #newsletter_icon{max-width:45px}div.shortcode-mailchimp .mailchimp-headline{font-weight:500;margin-bottom:0;margin-top:.75rem}div.shortcode-mailchimp .mailchimp-subheadline{color:#818181;font-weight:300;margin-top:0}@media only screen and (max-width:400px){div.shortcode-mailchimp .mailchimp-headline,div.shortcode-mailchimp .mailchimp-subheadline{font-size:1.5rem}}div.shortcode-mailchimp p{font-size:1rem}div.shortcode-mailchimp.horizontal{display:flex;padding:0;text-align:left}div.shortcode-mailchimp.horizontal .ui.form{margin:0;max-width:100%;padding:0 0 0 1.5rem}div.shortcode-mailchimp.horizontal .button,div.shortcode-mailchimp.horizontal .mailchimp-headline{text-transform:uppercase}div.shortcode-mailchimp.horizontal .mailchimp-headline{font-weight:700;letter-spacing:.1em;margin-top:0}div.shortcode-mailchimp.horizontal input{max-width:66%}div.shortcode-mailchimp.horizontal .button{margin-top:1rem}div.shortcode-mailchimp.horizontal svg{max-width:50px!important;width:100%}.shortcode-gif ins.play-gif{background:hsla(0,0%,100%,.702);border:0;color:#000}.shortcode-gif .gifplayer-wrapper{height:inherit!important;max-width:100%;width:inherit!important}.shortcode-gif .gifplayer-wrapper>.gp-gif-element{position:relative!important}.shortcode-gif img{height:auto!important;max-width:100%!important}.video-pullquote>.video-player{margin-bottom:1rem}.video-pullquote.alignleft,.video-pullquote.alignright{max-width:60%}.shortcode-pullquote .pullquote-content{padding:1rem}.shortcode-pullquote .pullquote-content p{font-size:1.5rem!important}.shortcode-pullquote .pullquote-content cite{color:#000;float:right;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-style:normal;font-weight:400;letter-spacing:.1em;text-transform:uppercase}@media only screen and (min-width:767px){.shortcode-pullquote.alignleft,.shortcode-pullquote.alignright{max-width:50%}}@media only screen and (max-width:767px){.shortcode-pullquote.alignleft,.shortcode-pullquote.alignright{width:100%!important}}.shortcode-pullquote.alignleft .pullquote-image{text-align:right}.shortcode-pullquote.alignright .pullquote-image{text-align:left}.shortcode-pullquote.alignwide .pullquote-content p{font-size:2rem!important}.shortcode-pullquote:not(.no-marks){display:flex;flex-direction:column}.shortcode-pullquote:not(.no-marks) .pullquote-image{border-bottom:1px solid gray}.shortcode-pullquote:not(.no-marks) .pullquote-image img{margin-bottom:-6px}.shortcode-pullquote:not(.no-marks) .pullquote-content{flex-grow:1}.shortcode-pullquote:not(.no-marks):after,.shortcode-pullquote:not(.no-marks):before{color:#1b699a;display:flex;font-size:5em;font-style:normal}.shortcode-pullquote:not(.no-marks):before{align-items:flex-start;content:"“";padding-top:18px}.shortcode-pullquote:not(.no-marks):after{align-items:flex-end;content:"”";justify-content:flex-end;padding-bottom:20px;position:relative;top:20px}.shortcode-tabs>.ui.segment.tab{margin-top:0}.shortcode-tabs .ui.tabular.menu .item{flex-shrink:1;text-align:center}.shortcode-tabs .ui.segment[class*="bottom attached"]:last-child{margin-bottom:1rem}.shortcode-callout{font-family:var(--wp--preset--font-family--sans-serif)}.shortcode-callout>p,.shortcode-callout>ul{color:#6b6b6b;font-family:var(--wp--preset--font-family--sans-serif)!important;font-size:.95rem!important}.shortcode-callout.alignleft,.shortcode-callout.alignright{margin-top:0;max-width:270px}.shortcode-donation-callout svg{float:left;padding-right:15px;padding-top:5px;width:70px}.shortcode-donation-callout .donation-headline{letter-spacing:.1em;margin-bottom:10px}.shortcode-donation-callout .donation-headline>span{color:gray}@media only screen and (max-width:767px){.shortcode-donation-callout .ui.button{margin-left:5rem}}.shortcode-follow-us{text-align:center}.shortcode-follow-us>p{font-family:var(--wp--preset--font-family--default)!important;font-size:1.45rem!important;font-style:italic}.shortcode-big-number{color:#ec9f2e;float:left;font-family:var(--wp--preset--font-family--sans-serif);font-size:2.85rem;font-weight:700;margin-bottom:0!important;margin-right:1rem;padding-bottom:1rem;padding-top:.6rem}.shortcode--interactive #notes,.shortcode--interactive #sources{font-size:1rem!important}.shortcode--interactive.right .embed{flex-wrap:wrap;font-size:.8rem;margin-bottom:0}.shortcode--interactive.right .embed .copyright{margin-left:0;text-align:left}.widget{margin-bottom:1.5rem}.widget.ui.segment{padding:0}.widget.relaxed{padding:1rem}.widget:last-of-type{margin-bottom:0}.widget.hide-widget-title .widget-title,.widget.no-widget-title .widget-title{display:none!important}.widget.white-widget-title .widget-title{background-color:#fff!important;color:#346ead!important;font-weight:700}.widget .widget-title,.widget .widgettitle{background-color:#333132;color:#fff;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:400;letter-spacing:.1em;margin-bottom:0;padding:9px 1em;text-transform:uppercase}.widget .widget-title a,.widget .widgettitle a{color:#fff}.widget .custom-html-widget,.widget .textwidget,.widget .widget-content{padding:1em}#js-page-cover{background-color:hsla(0,0%,100%,.78);display:none;height:100vh;left:0;position:fixed;top:0;width:100vw}#js-page-cover.enabled{z-index:2}#js-page-cover.enabled.open{display:block}#secondary .prc-group-block--responsive{margin-left:-1.5rem}#secondary .wp-block-group.is-style-card-alt{padding-bottom:2rem}#secondary .wp-block-group.is-style-card-alt div article div div.meta{padding-bottom:8px}#secondary .wp-block-group.is-style-card-alt #h-most-popular,#secondary .wp-block-group.is-style-card-alt #related,#secondary .wp-block-group.is-style-card-alt .is-style-sub-header{padding-left:1rem;padding-right:1rem}.widget-report-materials .ui.list>.item{background-position:10px 8px;background-repeat:no-repeat;background-size:47px auto;display:block;max-height:5.8571428571rem;padding-left:0!important;padding-right:0!important}.widget-report-materials .ui.list>.item .icon{color:#000}@media only screen and (max-width:767px){.widget-report-materials .ui.list>.item{background-position:0 8px;padding:.7857142857rem 0 3.9285714286rem 4.1428571429rem!important}}.widget-report-materials .ui.list>.item:first-child{margin-top:0}.widget-report-materials .ui.list>.item:last-of-type{border-bottom:0}.widget-report-materials .ui.list>.item.complete-report:after,.widget-report-materials .ui.list>.item.dataset:after,.widget-report-materials .ui.list>.item.detailed-tables:after,.widget-report-materials .ui.list>.item.item link-with-icon-detailedTable:after,.widget-report-materials .ui.list>.item.link-with-icon-detailed-tables:after,.widget-report-materials .ui.list>.item.link-with-icon-pressRelease:after,.widget-report-materials .ui.list>.item.link-with-icon-report:after,.widget-report-materials .ui.list>.item.link-with-icon-topline:after,.widget-report-materials .ui.list>.item.presentation:after,.widget-report-materials .ui.list>.item.press-release:after,.widget-report-materials .ui.list>.item.questionnaire:after,.widget-report-materials .ui.list>.item.supplemental .widget-report-materials .ui.list>.item.link-with-icon-q-and-a:after,.widget-report-materials .ui.list>.item.topline-questionnaire:after{margin-bottom:10px}.widget-report-materials .ui.list>.item.complete-report,.widget-report-materials .ui.list>.item.link-with-icon-report{background-image:url(assets/icon-report-1ee28718.svg)}.widget-report-materials .ui.list>.item.link-with-icon-topline,.widget-report-materials .ui.list>.item.topline-questionnaire{background-image:url(assets/icon-topline-ecba36f9.svg)}.widget-report-materials .ui.list>.item.questionnaire{background-image:url(assets/icon-questionnaire-a98d2508.svg)}.widget-report-materials .ui.list>.item.detailed-tables,.widget-report-materials .ui.list>.item.link-with-icon-detailed-tables,.widget-report-materials .ui.list>.item.link-with-icon-detailedTable{background-image:url(assets/icon-detailed-table-a87302ad.svg)}.widget-report-materials .ui.list>.item.dataset{background-image:url(assets/icon-dataset-fae4c012.svg)}.widget-report-materials .ui.list>.item.link-with-icon-pressRelease,.widget-report-materials .ui.list>.item.press-release{background-image:url(assets/icon-press-release-0bd77a34.svg)}.widget-report-materials .ui.list>.item.presentation{background-image:url(assets/icon-presentation-e7f03615.svg)}.widget-report-materials .ui.list>.item.link-with-icon-supplemental,.widget-report-materials .ui.list>.item.supplemental{background-image:url(assets/icon-supplemental-c8dae383.svg)}.widget-report-materials .ui.list>.item.link-with-icon-q-and-a{background-image:url(assets/icon-q-and-a-86c353d8.svg)}.widget-report-materials .ui.list>.item.promo-item{max-height:7.3214285714rem;padding-left:10px!important}.widget-report-materials .ui.list>.item.promo-item img{border:1px solid #ccc;float:left;margin-right:8px;padding-bottom:0}.ui.label.filtered-to:hover{text-decoration:none}@media only screen and (min-width:768px){body.admin-bar .sticky.fixed.top{top:32px}}@media(max-width:767px)and (min-width:586px){body.admin-bar .sticky.fixed.top{top:45px}}#user_switching_switch_on{bottom:0;left:10px;position:fixed}figure.alignFullBleed,figure.alignnone{margin-left:0;margin-right:0}div.Whoops.container{position:relative;z-index:100}/*! - * # Facets / Filters - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.facet.clear-link{margin-bottom:1rem}.filtered-to>.icon{margin:0!important}#js-react-prc-filters .ui.fixed.top.sticky>div:first-of-type{margin-left:-1em;margin-right:-1em;padding-left:1em;padding-right:1em;padding-top:1em;width:calc(100% + 2em)}#js-react-prc-filters .blue-link{color:#346ead;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:500;letter-spacing:.04em;text-transform:uppercase}#js-react-prc-filters .list .item{cursor:pointer}#js-react-prc-filters .ui.sub.header{font-size:13px}#js-react-prc-filters .ui.sub.header icon{color:#565656}#primary #js-react-prc-filters .ui.sub.header{font-size:14px}/*! - * # Browser Hacks, Customizations - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */body ::-webkit-scrollbar{-webkit-appearance:none;height:10px;width:10px}body ::-webkit-scrollbar-track{background:rgba(0,0,0,.1);border-radius:0}body ::-webkit-scrollbar-thumb{background:rgba(0,0,0,.25);border-radius:5px;cursor:pointer;-webkit-transition:color .2s ease;transition:color .2s ease}body ::-webkit-scrollbar-thumb:window-inactive{background:rgba(0,0,0,.15)}body ::-webkit-scrollbar-thumb:hover{background:hsla(202,5%,52%,.8)}body .ui.inverted::-webkit-scrollbar-track{background:hsla(0,0%,100%,.1)}body .ui.inverted::-webkit-scrollbar-thumb{background:hsla(0,0%,100%,.25)}body .ui.inverted::-webkit-scrollbar-thumb:window-inactive{background:hsla(0,0%,100%,.15)}body .ui.inverted::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,100%,.35)}::-webkit-selection{background-color:#000;color:#fff}::selection{background-color:#000;color:#fff}input::-webkit-selection,textarea::-webkit-selection{background-color:hsla(0,0%,39%,.4);color:#2a2a2a}input::selection,textarea::selection{background-color:hsla(0,0%,39%,.4);color:#2a2a2a}.slick-slider{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);box-sizing:border-box;touch-action:pan-y;-webkit-user-select:none;-ms-user-select:none;user-select:none}.slick-list,.slick-slider{display:block;position:relative}.slick-list{margin:0;overflow:hidden;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translateZ(0);transform:translateZ(0)}.slick-track{display:block;left:0;margin-left:auto;margin-right:auto;position:relative;top:0}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{border:1px solid transparent;display:block;height:auto}.slick-arrow.slick-hidden{display:none}.slick-next,.slick-prev{border:none;cursor:pointer;display:block;font-size:0;height:20px;line-height:0px;padding:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:20px}.slick-next,.slick-next:focus,.slick-next:hover,.slick-prev,.slick-prev:focus,.slick-prev:hover{background:transparent;color:transparent;outline:none}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff;font-family:slick;font-size:20px;line-height:1;opacity:.75}.slick-prev{left:-25px}[dir=rtl] .slick-prev{left:auto;right:-25px}.slick-prev:before{content:"←"}[dir=rtl] .slick-prev:before{content:"→"}.slick-next{right:-25px}[dir=rtl] .slick-next{left:-25px;right:auto}.slick-next:before{content:"→"}[dir=rtl] .slick-next:before{content:"←"}.slick-dotted .slick-slider{margin-bottom:30px}.slick-dots{bottom:-25px;display:block;list-style:none;margin:0;padding:0;position:absolute;text-align:center;width:100%}.slick-dots li{display:inline-block;margin:0 5px;padding:0;position:relative}.slick-dots li,.slick-dots li button{cursor:pointer;height:20px;width:20px}.slick-dots li button{background:transparent;border:0;color:transparent;display:block;font-size:0;line-height:0px;outline:none;padding:5px}.slick-dots li button:focus,.slick-dots li button:hover{outline:none}.slick-dots li button:focus:before,.slick-dots li button:hover:before{opacity:1}.slick-dots li button:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#000;content:"•";font-family:slick;font-size:6px;height:20px;left:0;line-height:20px;opacity:.25;position:absolute;text-align:center;top:0;width:20px}.slick-dots li.slick-active button:before{color:#000;opacity:.75}.pancake{border:1px solid #dadbdb;padding:35px!important}div.gform_confirmation_wrapper .gf_progressbar_wrapper .gf_progressbar,div.gform_wrapper .gf_progressbar_wrapper .gf_progressbar{display:none!important}div.gform_confirmation_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,div.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title{color:#cac6b3;font-family:var(--wp--preset--font-family--sans-serif)!important;font-size:1.5rem!important;font-weight:bolder!important;margin:0!important}div.gform_confirmation_wrapper ul.gform_fields li.gfield,div.gform_wrapper ul.gform_fields li.gfield{padding-right:0}div.gform_confirmation_wrapper .gform_page_footer,div.gform_wrapper .gform_page_footer{display:flex;flex-direction:column;width:100%!important}div.gform_confirmation_wrapper .gform_page_footer .gform_ajax_spinner,div.gform_wrapper .gform_page_footer .gform_ajax_spinner{display:none!important}div.gform_confirmation_wrapper input[type=button].gform_next_button,div.gform_wrapper input[type=button].gform_next_button{z-index:1}div.gform_confirmation_wrapper input[type=button].gform_next_button,div.gform_confirmation_wrapper input[type=button].gform_previous_button,div.gform_confirmation_wrapper input[type=submit].gform_button,div.gform_wrapper input[type=button].gform_next_button,div.gform_wrapper input[type=button].gform_previous_button,div.gform_wrapper input[type=submit].gform_button{margin-right:0!important;text-transform:uppercase}div.gform_confirmation_wrapper input[type=button].gform_next_button,div.gform_confirmation_wrapper input[type=submit].gform_button,div.gform_wrapper input[type=button].gform_next_button,div.gform_wrapper input[type=submit].gform_button{font-size:2rem!important;font-weight:400;order:1;width:100%}div.gform_confirmation_wrapper input[type=button].gform_previous_button,div.gform_wrapper input[type=button].gform_previous_button{background:none;border:0;color:#000;cursor:pointer;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:"bold";letter-spacing:.1em;margin-top:1rem!important;order:2;padding-left:0;text-align:left;text-transform:uppercase}div.gform_confirmation_wrapper li.pseudo-question+li.gfield .gfield_label,div.gform_wrapper li.pseudo-question+li.gfield .gfield_label{display:none!important}div.gform_confirmation_wrapper .gform_page_fields>ul>li>label.gfield_label,div.gform_confirmation_wrapper li.pseudo-question,div.gform_wrapper .gform_page_fields>ul>li>label.gfield_label,div.gform_wrapper li.pseudo-question{font-family:var(--wp--preset--font-family--sans-serif);font-size:1.8571428571rem!important;font-weight:400!important;line-height:140%!important}div.gform_confirmation_wrapper .gfield_description img,div.gform_wrapper .gfield_description img{display:block;margin:0 auto}div.gform_confirmation_wrapper ul.gfield_radio,div.gform_wrapper ul.gfield_radio{width:100%!important}div.gform_confirmation_wrapper ul.gfield_radio li,div.gform_wrapper ul.gfield_radio li{margin-bottom:0}div.gform_confirmation_wrapper ul.gfield_radio li label,div.gform_wrapper ul.gfield_radio li label{background:#fff!important;border:1px solid #ccc;cursor:pointer;display:block!important;font-family:var(--wp--preset--font-family--sans-serif);font-size:1.1428571429rem!important;margin-bottom:10px;margin-left:0;margin-right:0;max-width:100%!important;padding:10px!important;text-align:center;width:100%!important}div.gform_confirmation_wrapper ul.gfield_radio li label:hover,div.gform_wrapper ul.gfield_radio li label:hover{background:#ddd!important}div.gform_confirmation_wrapper ul.gfield_radio li label:active,div.gform_wrapper ul.gfield_radio li label:active{background:#c4c4c4!important}div.gform_confirmation_wrapper ul.gfield_radio li input[type=radio],div.gform_wrapper ul.gfield_radio li input[type=radio]{display:none}div.gform_confirmation_wrapper ul.gfield_radio li input[type=radio]:checked+label,div.gform_wrapper ul.gfield_radio li input[type=radio]:checked+label{background:#ddd!important}div.gform_confirmation_wrapper .pseudo-answers,div.gform_wrapper .pseudo-answers{margin-top:8px;padding-top:20px}div.gform_confirmation_wrapper .pseudo-answers div,div.gform_wrapper .pseudo-answers div{border:1px solid #ccc;border-radius:3px;cursor:pointer;display:block;font-family:var(--wp--preset--font-family--sans-serif);font-size:19.2px;margin-bottom:10px;padding:10px;text-align:center}div.gform_confirmation_wrapper .pseudo-answers div.selected,div.gform_wrapper .pseudo-answers div.selected{background:#c4c4c4}div.gform_confirmation_wrapper table.gsurvey-likert,div.gform_wrapper table.gsurvey-likert{border:none}div.gform_confirmation_wrapper table.gsurvey-likert thead tr,div.gform_wrapper table.gsurvey-likert thead tr{display:none}div.gform_confirmation_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice,div.gform_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice{border:0;display:block;height:auto;margin-bottom:10px;padding:0}div.gform_confirmation_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice.gsurvey-likert-selected label,div.gform_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice.gsurvey-likert-selected label{background:#c4c4c4!important}div.gform_confirmation_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice label,div.gform_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice label{background:#fff!important;border:1px solid #ccc;cursor:pointer;display:block!important;font-family:var(--wp--preset--font-family--sans-serif);font-size:1.1428571429rem!important;margin-bottom:10px;margin-left:0;margin-right:0;max-width:100%!important;padding:10px!important;text-align:center;width:100%!important}@media (max-device-width:1024px)and (min-device-width:768px),only screen and (max-width:761px){div.gform_confirmation_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice:after,div.gform_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice:after{display:none!important}}div.gform_confirmation_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice,div.gform_confirmation_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice.gsurvey-likert-hover,div.gform_confirmation_wrapper table.gsurvey-likert tbody td:hover,div.gform_confirmation_wrapper table.gsurvey-likert tbody tr:hover,div.gform_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice,div.gform_wrapper table.gsurvey-likert tbody td.gsurvey-likert-choice.gsurvey-likert-hover,div.gform_wrapper table.gsurvey-likert tbody td:hover,div.gform_wrapper table.gsurvey-likert tbody tr:hover{background:#fff!important}div.gform_confirmation_wrapper .results-title,div.gform_wrapper .results-title{color:#58585a;font-family:var(--wp--preset--font-family--sans-serif);font-size:1.7142857143rem;font-weight:700;text-align:center}div.gform_confirmation_wrapper #js-gf-quiz-results,div.gform_confirmation_wrapper #js-react-quiz-results>table,div.gform_wrapper #js-gf-quiz-results,div.gform_wrapper #js-react-quiz-results>table{margin-bottom:3rem}div.gform_confirmation_wrapper #js-gf-quiz-results thead th,div.gform_confirmation_wrapper #js-react-quiz-results>table thead th,div.gform_wrapper #js-gf-quiz-results thead th,div.gform_wrapper #js-react-quiz-results>table thead th{border-left:none}@media only screen and (max-width:767px){div.gform_confirmation_wrapper #js-gf-quiz-results[demographics] thead,div.gform_confirmation_wrapper #js-react-quiz-results>table[demographics] thead,div.gform_wrapper #js-gf-quiz-results[demographics] thead,div.gform_wrapper #js-react-quiz-results>table[demographics] thead{display:none}div.gform_confirmation_wrapper #js-gf-quiz-results[demographics] tr.center.aligned,div.gform_confirmation_wrapper #js-react-quiz-results>table[demographics] tr.center.aligned,div.gform_wrapper #js-gf-quiz-results[demographics] tr.center.aligned,div.gform_wrapper #js-react-quiz-results>table[demographics] tr.center.aligned{text-align:left!important}div.gform_confirmation_wrapper #js-gf-quiz-results[demographics] tr>td.question,div.gform_confirmation_wrapper #js-react-quiz-results>table[demographics] tr>td.question,div.gform_wrapper #js-gf-quiz-results[demographics] tr>td.question,div.gform_wrapper #js-react-quiz-results>table[demographics] tr>td.question{padding-bottom:1.5rem!important}div.gform_confirmation_wrapper #js-gf-quiz-results[demographics] tr>td.question>i,div.gform_confirmation_wrapper #js-react-quiz-results>table[demographics] tr>td.question>i,div.gform_wrapper #js-gf-quiz-results[demographics] tr>td.question>i,div.gform_wrapper #js-react-quiz-results>table[demographics] tr>td.question>i{clear:right;float:left;margin-bottom:1.5rem;margin-right:1rem}div.gform_confirmation_wrapper #js-gf-quiz-results[demographics] tr>td.demographic-data,div.gform_confirmation_wrapper #js-react-quiz-results>table[demographics] tr>td.demographic-data,div.gform_wrapper #js-gf-quiz-results[demographics] tr>td.demographic-data,div.gform_wrapper #js-react-quiz-results>table[demographics] tr>td.demographic-data{display:flex!important}div.gform_confirmation_wrapper #js-gf-quiz-results[demographics] tr>td.demographic-data span,div.gform_confirmation_wrapper #js-react-quiz-results>table[demographics] tr>td.demographic-data span,div.gform_wrapper #js-gf-quiz-results[demographics] tr>td.demographic-data span,div.gform_wrapper #js-react-quiz-results>table[demographics] tr>td.demographic-data span{display:flex!important;flex-grow:1;font-weight:700}}div.gform_confirmation_wrapper .results-bar-chart,div.gform_wrapper .results-bar-chart{text-align:center}div.gform_confirmation_wrapper .results-bar-chart *,div.gform_wrapper .results-bar-chart *{font-family:var(--wp--preset--font-family--sans-serif)}div.gform_confirmation_wrapper .results-bar-chart .grid,div.gform_wrapper .results-bar-chart .grid{margin-bottom:1rem}div.gform_confirmation_wrapper .results-bar-chart .column,div.gform_wrapper .results-bar-chart .column{display:flex!important;flex-direction:column!important;font-size:.8rem;justify-content:flex-end!important}div.gform_confirmation_wrapper .results-bar-chart .bar,div.gform_wrapper .results-bar-chart .bar{background-color:#dddac8;font-weight:700;margin-bottom:.5rem;padding:.6rem}@media only screen and (max-width:660px){div.gform_confirmation_wrapper .results-bar-chart .bar,div.gform_wrapper .results-bar-chart .bar{text-indent:-99999px}}div.gform_confirmation_wrapper .results-bar-chart .bar.active,div.gform_wrapper .results-bar-chart .bar.active{background-color:#d1a730}div.gform_confirmation_wrapper .results-bar-chart .x-axis,div.gform_wrapper .results-bar-chart .x-axis{color:#b7b8af;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:400;letter-spacing:.1em;margin-bottom:.5rem;text-transform:uppercase}div.gform_confirmation_wrapper .quiz-score,div.gform_wrapper .quiz-score{text-align:center}div.gform_confirmation_wrapper .quiz-score>h1,div.gform_wrapper .quiz-score>h1{font-family:var(--wp--preset--font-family--sans-serif);font-weight:400}div.gform_confirmation_wrapper #js-share-score,div.gform_wrapper #js-share-score{margin-bottom:3rem;text-align:center}div.gform_confirmation_wrapper #js-share-score>p,div.gform_wrapper #js-share-score>p{color:#000;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:400;letter-spacing:.1em;text-transform:uppercase}div.gform_confirmation_wrapper #js-follow-us-promo,div.gform_wrapper #js-follow-us-promo{margin-bottom:3rem}/*! - * # Semantic UI - Card - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */.ui.card,.ui.cards>.card{background:#fff;border:none;box-shadow:0 1px 3px 0 #d4d4d5,0 0 0 1px #d4d4d5;display:flex;flex-direction:column;max-width:100%;min-height:0;padding:0;position:relative;transition:box-shadow .1s ease,-webkit-transform .1s ease;transition:box-shadow .1s ease,transform .1s ease;transition:box-shadow .1s ease,transform .1s ease,-webkit-transform .1s ease;width:290px;z-index:""}.ui.card.basic,.ui.card.is-style-borderless,.ui.cards>.card.basic,.ui.cards>.card.is-style-borderless{border:0;box-shadow:none}.ui.card a,.ui.cards>.card a{cursor:pointer}.ui.card:first-child,.ui.cards>.card:first-child{margin-top:0}.ui.card:last-child,.ui.cards>.card:last-child{margin-bottom:0}.ui.card.fluid,.ui.cards>.card.fluid{max-width:9999px;width:100%}.ui.card>.header,.ui.cards>.card>.header{background-color:#333132;color:#fff;display:block;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:400;letter-spacing:.1em;line-height:1.2857142857em;margin:-.21425em "" 0;padding:.6em 1em;text-transform:uppercase}.ui.card>.header>i.external.icon,.ui.cards>.card>.header>i.external.icon{float:right;font-size:1rem}.ui.card .image,.ui.cards>.card .image{display:block;position:relative}.ui.card .image img,.ui.cards>.card .image img{display:block;height:auto;max-width:100%}.ui.card .video-player>.close,.ui.cards>.card .video-player>.close{margin-left:1rem;margin-top:.5rem;position:absolute}.ui.card .video-player+.content,.ui.cards>.card .video-player+.content{border-top:0;margin-top:1.5rem}.ui.card>.content,.ui.cards>.card>.content{background:none;border:none;border-top:1px solid rgba(34,36,38,.1);box-shadow:none;flex-grow:1;font-family:var(--wp--preset--font-family--sans-serif);font-size:1em;margin:0;padding:1em}.ui.card>.content:after,.ui.cards>.card>.content:after{clear:both;content:" ";display:block;height:0;overflow:hidden;visibility:hidden}.ui.card>.content>.meta+.description,.ui.cards>.card>.content>.meta+.description{margin-top:.5em}.ui.card>.content p,.ui.cards>.card>.content p{margin:0 0 .5em}.ui.card>.content p:last-child,.ui.cards>.card>.content p:last-child{margin-bottom:0}.ui.card>.items>.item:first-of-type,.ui.cards>.card>.items>.item:first-of-type{margin-top:0}.ui.card>.content>.story-item.item,.ui.cards>.card>.content>.story-item.item{margin:1.5em 0}.ui.card>.content>.story-item.item:first-child,.ui.cards>.card>.content>.story-item.item:first-child{margin-top:0}.ui.card>.content>.story-item.item:last-of-type,.ui.cards>.card>.content>.story-item.item:last-of-type{margin-bottom:0}.ui.card>.content>.description,.ui.cards>.card>.content>.description{clear:both;color:rgba(0,0,0,.68)}.ui.card>.content .editor-rich-text>p,.ui.card>.content>p,.ui.cards>.card>.content .editor-rich-text>p,.ui.cards>.card>.content>p{font-family:var(--wp--preset--font-family--sans-serif);font-size:1.142rem;line-height:1.43rem}.ui.card>.content .editor-rich-text>p.relaxed,.ui.card>.content>p.relaxed,.ui.cards>.card>.content .editor-rich-text>p.relaxed,.ui.cards>.card>.content>p.relaxed{letter-spacing:.06rem}.ui.card>.content .editor-rich-text>p:first-of-type,.ui.card>.content>p:first-of-type,.ui.cards>.card>.content .editor-rich-text>p:first-of-type,.ui.cards>.card>.content>p:first-of-type{margin-bottom:.5rem;margin-top:1rem}.ui.card .meta,.ui.cards>.card .meta{color:rgba(0,0,0,.4);font-size:.8571428571}.ui.card .meta *,.ui.cards>.card .meta *{margin-right:.3em}.ui.card .meta :last-child,.ui.cards>.card .meta :last-child{margin-right:0}.ui.card .meta[class*="right floated"],.ui.cards>.card .meta[class*="right floated"]{margin-left:.3em;margin-right:0}.ui.card a.read-more,.ui.cards>.card a.read-more{font-size:1.142rem;line-height:1.43rem}.ui.card a:not(.ui),.ui.cards>.card a:not(.ui){color:"";transition:color .1s ease}.ui.card a:not(.ui):hover,.ui.cards>.card a:not(.ui):hover{color:""}.ui.card .header>a,.ui.card .header>a:hover,.ui.card a.header,.ui.card a.header:hover,.ui.cards>.card .header>a,.ui.cards>.card .header>a:hover,.ui.cards>.card a.header,.ui.cards>.card a.header:hover{color:#fff;text-decoration:none}.ui.card .meta>a:not(.ui),.ui.cards>.card .meta>a:not(.ui){color:rgba(0,0,0,.4)}.ui.card .meta>a:not(.ui):hover,.ui.cards>.card .meta>a:not(.ui):hover{color:#2a2a2a}.ui.card .button,.ui.card .buttons,.ui.cards>.card .button,.ui.cards>.card .buttons{margin:-1px;width:calc(100% + 2px)}.ui.card .dimmer,.ui.cards>.card .dimmer{background-color:"";z-index:10}.ui.card.raised,.ui.cards>.card.raised{box-shadow:0 0 0 1px #d4d4d5,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.card.inverted.oatmeal,.ui.card.is-style-oatmeal,.ui.cards>.card.inverted.oatmeal,.ui.cards>.card.is-style-oatmeal{background:#ecece3!important;border:0!important;box-shadow:none!important}.ui.card.inverted.beige,.ui.card.is-style-beige,.ui.cards>.card.inverted.beige,.ui.cards>.card.is-style-beige{background:#f7f7f1!important;border:0!important;box-shadow:none!important}.ui.card [class*="left floated"],.ui.cards>.card [class*="left floated"]{float:left}.ui.card [class*="right floated"],.ui.cards>.card [class*="right floated"]{float:right}.ui.card.alignleft,.ui.cards>.card.alignleft{margin-right:1rem!important}.ui.card.alignright,.ui.cards>.card.alignright{margin-left:1rem!important}.ui.card [class*="left aligned"],.ui.cards>.card [class*="left aligned"]{text-align:left}.ui.card [class*="center aligned"],.ui.cards>.card [class*="center aligned"]{text-align:center}.ui.card [class*="right aligned"],.ui.cards>.card [class*="right aligned"]{text-align:right}.ui.card>.extra,.ui.cards>.card>.extra{background:none;border-top:1px solid rgba(0,0,0,.05)!important;box-shadow:none;color:rgba(0,0,0,.4);flex-grow:0;left:0;margin:0;max-width:100%;min-height:0!important;padding:.75em 1em;position:static;top:0;transition:color .1s ease;width:auto}.ui.card>.extra a:not(.ui),.ui.cards>.card>.extra a:not(.ui){color:rgba(0,0,0,.4)}.ui.card>.extra a:not(.ui):hover,.ui.cards>.card>.extra a:not(.ui):hover{color:#5f94cf}.ui.card{margin:1em 0}.ui.cards{display:flex;flex-wrap:wrap;margin:-.375em}.ui.cards>.card{display:flex;float:none;font-size:1em;margin:.875em .5em}.ui.card:after,.ui.cards:after{clear:both;content:" ";display:block;height:0;overflow:hidden;visibility:hidden}.ui.cards~.ui.cards{margin-top:.875em}.ui.one.cards{margin-left:0;margin-right:0}.ui.one.cards>.card{width:100%}.ui.two.cards{margin-left:-1em;margin-right:-1em}.ui.two.cards>.card{margin-left:1em;margin-right:1em;width:calc(50% - 2em)}.ui.three.cards{margin-left:-1em;margin-right:-1em}.ui.three.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}.ui.four.cards{margin-left:-.75em;margin-right:-.75em}.ui.four.cards>.card{margin-left:.75em;margin-right:.75em;width:calc(25% - 1.5em)}.ui.five.cards{margin-left:-.75em;margin-right:-.75em}.ui.five.cards>.card{margin-left:.75em;margin-right:.75em;width:calc(20% - 1.5em)}.ui.six.cards{margin-left:-.75em;margin-right:-.75em}.ui.six.cards>.card{margin-left:.75em;margin-right:.75em;width:calc(16.66667% - 1.5em)}.ui.seven.cards{margin-left:-.5em;margin-right:-.5em}.ui.seven.cards>.card{margin-left:.5em;margin-right:.5em;width:calc(14.28571% - 1em)}.ui.eight.cards{margin-left:-.5em;margin-right:-.5em}.ui.eight.cards>.card{font-size:11px;margin-left:.5em;margin-right:.5em;width:calc(12.5% - 1em)}.ui.nine.cards{margin-left:-.5em;margin-right:-.5em}.ui.nine.cards>.card{font-size:10px;margin-left:.5em;margin-right:.5em;width:calc(11.11111% - 1em)}.ui.ten.cards{margin-left:-.5em;margin-right:-.5em}.ui.ten.cards>.card{margin-left:.5em;margin-right:.5em;width:calc(10% - 1em)}@media only screen and (max-width:767px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards>.card{margin-left:0;margin-right:0;width:100%}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(50% - 2em)}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(50% - 2em)}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(50% - 2em)}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(50% - 2em)}.ui.seven.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.seven.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}.ui.nine.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.nine.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}.ui.ten.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.ten.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}}@media only screen and (min-width:768px)and (max-width:991px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards>.card{margin-left:0;margin-right:0;width:100%}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(50% - 2em)}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(50% - 2em)}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards>.card{margin-left:1em;margin-right:1em;width:calc(33.33333% - 2em)}.ui.eight.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.eight.doubling.cards>.card{margin-left:.75em;margin-right:.75em;width:calc(25% - 1.5em)}.ui.nine.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.nine.doubling.cards>.card{margin-left:.75em;margin-right:.75em;width:calc(25% - 1.5em)}.ui.ten.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.ten.doubling.cards>.card{margin-left:.75em;margin-right:.75em;width:calc(20% - 1.5em)}}@media only screen and (max-width:767px){.ui.stackable.cards{display:block!important}.ui.stackable.cards .card:first-child{margin-top:0!important}.ui.stackable.cards>.card{display:block!important;height:auto!important;margin:1em;padding:0!important;width:calc(100% - 2em)!important}}.ui.raised.cards>.card{box-shadow:0 0 0 1px #d4d4d5,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.centered.cards{justify-content:center}.ui.centered.card{margin-left:auto;margin-right:auto}body,html{height:100%}body,html{font-size:14px}body{font-smoothing:antialiased;text-rendering:optimizeLegibility;background:#fff;color:#2a2a2a;font-family:var(--wp--preset--font-family--default);line-height:1.4285em;margin:0;min-width:320px;overflow-x:hidden;padding:0} - -/*# sourceMappingURL=core-42a77c21.css.map*/ diff --git a/includes/interactives/legacy-containment-system/class-legacy-containment-system.php b/includes/interactives/legacy-containment-system/class-legacy-containment-system.php index 53cb337c..14cea52a 100644 --- a/includes/interactives/legacy-containment-system/class-legacy-containment-system.php +++ b/includes/interactives/legacy-containment-system/class-legacy-containment-system.php @@ -4,7 +4,6 @@ use WP_Error; class Legacy_Interactive_Containment_System { - public $query_var = 'interactivesContainment'; public function __construct($loader) { $this->init($loader); @@ -12,28 +11,118 @@ public function __construct($loader) { public function init($loader = null) { if ( null !== $loader ) { - $loader->add_action( 'init', $this, 'register_legacy_scripts_and_styles' ); - $loader->add_filter( 'prc_platform_interactive_loader_content', $this, 'render_content_as_iframe', 10, 3 ); - $loader->add_filter( 'prc_platform_rewrite_query_vars', $this, 'register_query_var' ); + $loader->add_action( 'init', $this, 'register_legacy_libraries' ); $loader->add_action( 'prc_platform_interactive_loader_enqueue', $this, 'enqueue_legacy_scripts_and_styles', 10, 2 ); $loader->add_action( 'rest_api_init', $this, 'register_legacy_firebase_endpoint' ); } } + public function is_legacy_interactive() { + // if the interactive was published before the new system was in place and uses wpackio or assets, then its considered legacy. + } + /** - * @hook init + * Enqueues the legacy styles and scripts when the `interactivesContainment` query var is set. + * @hook prc_platform_interactive_loader_enqueue */ - public function register_legacy_scripts_and_styles() { - wp_register_style( - 'legacy-style', - plugin_dir_url( __FILE__ ) . 'assets/style.css', - array(), - filemtime( __DIR__ . '/assets/style.css' ) + public function enqueue_legacy_scripts_and_styles($enqueued_handles, $is_legacy_wpackio = false) { + wp_enqueue_script('legacy-semantic-ui'); + wp_add_inline_script('legacy-semantic-ui', 'window.siteURL = "' . get_site_url() . '";'); + // @TODO: need to add a prcUrlVars shim as well.... + wp_enqueue_style('legacy-semantic-ui'); + } + + /** + * Register a legacy firebase endpoint for interactives on the v2 prc-api namespace. + * @hook rest_api_init + */ + public function register_legacy_firebase_endpoint() { + // register v2 on the prc-api and add /interactives?slug=xyz + register_rest_route( + 'prc-api/v2', + '/interactive', + array( + 'methods' => 'GET', + 'callback' => array( $this, 'get_legacy_firebase_endpoint' ), + 'args' => array( + 'slug' => array( + 'default' => false, + 'validate_callback' => function( $param, $request, $key ) { + return is_string( $param ); + }, + ), + ), + 'permission_callback' => function () { + return true; + }, + ) + ); + } + + private function cache_data( $db, $slug, $data ) { + if ( empty( $data ) ) { + return false; + } + wp_cache_set( $slug, $data, $db, 1 * MONTH_IN_SECONDS ); + return $data; + } + + public function get_db_data( $slug = null, $auth = false ) { + $args = array( + 'db' => 'prc-app-prod-interactives', + 'slug' => $slug, + 'auth' => $auth, ); - $this->register_legacy_libraries(); + $cache = wp_cache_get( $args['slug'], $args['db'] ); + if ( false !== $cache ) { + return $cache; + } + + $response_url = 'https://' . $args['db'] . '.firebaseio.com/' . $args['slug'] . '.json'; + if ( array_key_exists( 'auth', $args ) ) { + if ( false !== $args['auth'] ) { + $response_url .= '&auth=' . $args['auth']; + } + } + + if ( function_exists( 'vip_safe_wp_remote_get' ) ) { + $response = vip_safe_wp_remote_get( $response_url ); + } else { + $response = wp_remote_get( $response_url ); + } + + $error = false; + $data = false; + if ( ! is_wp_error( $response ) ) { + // Request succeded, get the data. + if ( 200 === wp_remote_retrieve_response_code( $response ) ) { + $body = wp_remote_retrieve_body( $response ); + $data = json_decode( $body, true ); + } else { + // The response code was not what we were expecting, record the message + $error = $response; + } + } else { + $error = $response; + } + + if ( $error ) { + return rest_ensure_response( $error ); + } + + return $this->cache_data( $args['db'], $args['slug'], $data ); + } + + public function get_legacy_firebase_endpoint( WP_REST_Request $request ) { + $slug = $request->get_param( 'slug' ); + $response = false; + if ( ! empty( $slug ) ) { + $response = $this->get_db_data( $slug ); + } + return $response; } - /** + /** * Interactives Libraries (Highcharts, Highmaps, D3, Mapbox, etc) * * @return void @@ -247,7 +336,7 @@ public function register_legacy_libraries() { if ( substr( $args[0], 0, 2 ) === '//' ) { $src = $args[0]; } else { - $src = plugin_dir_url( __FILE__ ) . 'assets/scripts' . $args[0]; + $src = plugin_dir_url( __FILE__ ) . 'scripts-shim' . $args[0]; } if ( substr( $script, 0, 1 ) === '_' ) { @@ -269,6 +358,11 @@ public function register_legacy_libraries() { } } + wp_register_style( + 'legacy-semantic-ui', + plugin_dir_url( __FILE__ ) . 'semantic-ui-css-shim/dist/main.css' + ); + // Mapbox styles. // wp_register_style( // 'mapbox-gl', @@ -280,161 +374,4 @@ public function register_legacy_libraries() { // content_url() . '/client-mu-plugins/prc-core/scripts/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.css' // ); } - - - /** - * When the interactive is a legacy interactive and there is no interactivesContainment query var then we'll load the iframe. Otherwise we'll load the content directly. - * @hook prc_platform_interactive_loader_content - */ - public function render_content_as_iframe($content, $attributes, $is_legacy_wpackio) { - if ( get_query_var($this->query_var) ) { - return $content; - } - if ( true !== $is_legacy_wpackio ) { - return $content; - } - $id = wp_unique_id( 'prc-interactive-containment-iframe-' ); - $url = get_permalink( get_the_ID() ); - $iframe_url = add_query_arg( array( - 'iframe' => true, - 'interactivesContainment' => 'true' - ), $url ); - $iframe = wp_sprintf( - '', - $id, - $iframe_url, - '500px', - ); - return $iframe; - } - - /** - * Adds the `interactivesContainment` query var to the list of query vars. - * @hook prc_platform_rewrite_query_vars - * @param array $query_vars - * @return array - */ - public function register_query_var($query_vars) { - $query_vars[] = $this->query_var; - return $query_vars; - } - - /** - * Enqueues the legacy styles and scripts when the `interactivesContainment` query var is set. - * @hook prc_platform_interactive_loader_enqueue - */ - public function enqueue_legacy_scripts_and_styles($enqueued_handles, $is_legacy_wpackio = false) { - if ( ! get_query_var($this->query_var) && true === $is_legacy_wpackio ) { - wp_enqueue_script('prc-platform-iframe-embeds-resizer-script'); - ob_start(); - ?> - window.iFrameResize( - { - bodyMargin: 0, - bodyPadding: 0, - heightCalculationMethod: 'taggedElement', - }, - document.querySelector('iframe.prc-interactive-containment') - ) - query_var) && true === $is_legacy_wpackio ) { - wp_enqueue_script('legacy-semantic-ui'); - wp_add_inline_script( 'legacy-semantic-ui', 'window.siteURL = "' . get_site_url() . '";' ); - wp_enqueue_style('legacy-style'); - wp_dequeue_style('prc-block-theme-style'); - } - } - - /** - * Register a legacy firebase endpoint for interactives on the v2 prc-api namespace. - * @hook rest_api_init - */ - public function register_legacy_firebase_endpoint() { - // register v2 on the prc-api and add /interactives?slug=xyz - register_rest_route( - 'prc-api/v2', - '/interactive', - array( - 'methods' => 'GET', - 'callback' => array( $this, 'get_legacy_firebase_endpoint' ), - 'args' => array( - 'slug' => array( - 'default' => false, - 'validate_callback' => function( $param, $request, $key ) { - return is_string( $param ); - }, - ), - ), - 'permission_callback' => function () { - return true; - }, - ) - ); - } - - private function cache_data( $db, $slug, $data ) { - if ( empty( $data ) ) { - return false; - } - wp_cache_set( $slug, $data, $db, 1 * MONTH_IN_SECONDS ); - return $data; - } - - public function get_db_data( $slug = null, $auth = false ) { - $args = array( - 'db' => 'prc-app-prod-interactives', - 'slug' => $slug, - 'auth' => $auth, - ); - $cache = wp_cache_get( $args['slug'], $args['db'] ); - if ( false !== $cache ) { - return $cache; - } - - $response_url = 'https://' . $args['db'] . '.firebaseio.com/' . $args['slug'] . '.json'; - if ( array_key_exists( 'auth', $args ) ) { - if ( false !== $args['auth'] ) { - $response_url .= '&auth=' . $args['auth']; - } - } - - if ( function_exists( 'vip_safe_wp_remote_get' ) ) { - $response = vip_safe_wp_remote_get( $response_url ); - } else { - $response = wp_remote_get( $response_url ); - } - - $error = false; - $data = false; - if ( ! is_wp_error( $response ) ) { - // Request succeded, get the data. - if ( 200 === wp_remote_retrieve_response_code( $response ) ) { - $body = wp_remote_retrieve_body( $response ); - $data = json_decode( $body, true ); - } else { - // The response code was not what we were expecting, record the message - $error = $response; - } - } else { - $error = $response; - } - - if ( $error ) { - return rest_ensure_response( $error ); - } - - return $this->cache_data( $args['db'], $args['slug'], $data ); - } - - public function get_legacy_firebase_endpoint( WP_REST_Request $request ) { - $slug = $request->get_param( 'slug' ); - $response = false; - if ( ! empty( $slug ) ) { - $response = $this->get_db_data( $slug ); - } - return $response; - } } diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/d3.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/d3.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/d3.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/d3.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/d3.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/d3.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v3/d3.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v3/d3.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/API.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/API.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/API.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/API.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/CHANGES.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/CHANGES.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/CHANGES.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/CHANGES.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/d3.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/d3.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/d3.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/d3.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/d3.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/d3.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3-v5/d3.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3-v5/d3.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/d3.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/d3.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/d3.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/d3.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/d3.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/d3.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/d3/d3.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/d3/d3.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.min.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.min.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.min.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill-dt/css/autoFill.dataTables.min.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/js/dataTables.autoFill.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/js/dataTables.autoFill.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/js/dataTables.autoFill.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/js/dataTables.autoFill.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/js/dataTables.autoFill.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/js/dataTables.autoFill.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-autofill/js/dataTables.autoFill.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-autofill/js/dataTables.autoFill.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.min.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.min.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.min.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons-dt/css/buttons.dataTables.min.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.colVis.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.colVis.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.colVis.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.colVis.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.colVis.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.colVis.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.colVis.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.colVis.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.flash.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.flash.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.flash.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.flash.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.flash.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.flash.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.flash.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.flash.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.html5.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.html5.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.html5.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.html5.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.html5.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.html5.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.html5.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.html5.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.print.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.print.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.print.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.print.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.print.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.print.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/buttons.print.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/buttons.print.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/dataTables.buttons.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/dataTables.buttons.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/dataTables.buttons.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/dataTables.buttons.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/dataTables.buttons.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/dataTables.buttons.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-buttons/js/dataTables.buttons.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-buttons/js/dataTables.buttons.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/css/jquery.dataTables.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/css/jquery.dataTables.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/css/jquery.dataTables.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/css/jquery.dataTables.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/css/jquery.dataTables.min.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/css/jquery.dataTables.min.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/css/jquery.dataTables.min.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/css/jquery.dataTables.min.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_asc.png b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_asc.png similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_asc.png rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_asc.png diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_asc_disabled.png b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_asc_disabled.png similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_asc_disabled.png rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_asc_disabled.png diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_both.png b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_both.png similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_both.png rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_both.png diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_desc.png b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_desc.png similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_desc.png rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_desc.png diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_desc_disabled.png b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_desc_disabled.png similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-dt/images/sort_desc_disabled.png rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-dt/images/sort_desc_disabled.png diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.min.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.min.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.min.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns-dt/css/fixedColumns.dataTables.min.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedcolumns/js/dataTables.fixedColumns.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.min.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.min.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.min.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.min.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-fixedheader/js/dataTables.fixedHeader.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.min.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.min.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.min.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive-dt/css/responsive.dataTables.min.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/js/dataTables.responsive.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/js/dataTables.responsive.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/js/dataTables.responsive.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/js/dataTables.responsive.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/js/dataTables.responsive.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/js/dataTables.responsive.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-responsive/js/dataTables.responsive.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-responsive/js/dataTables.responsive.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.min.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.min.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.min.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller-dt/css/scroller.dataTables.min.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/js/dataTables.scroller.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/js/dataTables.scroller.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/js/dataTables.scroller.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/js/dataTables.scroller.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/js/dataTables.scroller.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/js/dataTables.scroller.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net-scroller/js/dataTables.scroller.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net-scroller/js/dataTables.scroller.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/License.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/License.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/License.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/License.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/Readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/Readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/Readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/Readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/js/jquery.dataTables.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/js/jquery.dataTables.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/js/jquery.dataTables.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/js/jquery.dataTables.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/js/jquery.dataTables.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/js/jquery.dataTables.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/datatables.net/js/jquery.dataTables.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/datatables.net/js/jquery.dataTables.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/Gruntfile.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/Gruntfile.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/Gruntfile.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/Gruntfile.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/dist/dom-to-image.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/dist/dom-to-image.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/dist/dom-to-image.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/dist/dom-to-image.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/karma.conf.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/karma.conf.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/karma.conf.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/karma.conf.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/package.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/package.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/package.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/package.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/src/dom-to-image.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/src/dom-to-image.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/src/dom-to-image.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/src/dom-to-image.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/test-lib/tesseract-1.0.10.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/test-lib/tesseract-1.0.10.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/dom-to-image/test-lib/tesseract-1.0.10.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/dom-to-image/test-lib/tesseract-1.0.10.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/.gitignore b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/.gitignore similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/.gitignore rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/.gitignore diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/.jshintrc b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/.jshintrc similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/.jshintrc rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/.jshintrc diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/CONTRIBUTING.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/CONTRIBUTING.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/CONTRIBUTING.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/CONTRIBUTING.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/dist/enquire.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/dist/enquire.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/dist/enquire.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/dist/enquire.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/dist/enquire.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/dist/enquire.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/dist/enquire.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/dist/enquire.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/package.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/package.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/package.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/package.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/enquire/readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/enquire/readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-app-externs.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-app-externs.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-app-externs.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-app-externs.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-app.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-app.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-app.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-app.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-app.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-app.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-app.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-app.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-auth-externs.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-auth-externs.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-auth-externs.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-auth-externs.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-auth.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-auth.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-auth.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-auth.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-auth.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-auth.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-auth.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-auth.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-database-externs.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-database-externs.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-database-externs.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-database-externs.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-database.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-database.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-database.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-database.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-database.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-database.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-database.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-database.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-firestore.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-firestore.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-firestore.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-firestore.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-firestore.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-firestore.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-firestore.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-firestore.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-functions.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-functions.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-functions.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-functions.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-functions.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-functions.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-functions.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-functions.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-messaging-externs.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-messaging-externs.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-messaging-externs.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-messaging-externs.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-messaging.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-messaging.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-messaging.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-messaging.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-messaging.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-messaging.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-messaging.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-messaging.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-storage-externs.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-storage-externs.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-storage-externs.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-storage-externs.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-storage.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-storage.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-storage.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-storage.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-storage.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-storage.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase-storage.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase-storage.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase.d.ts b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase.d.ts similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase.d.ts rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase.d.ts diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/firebase.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/firebase.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/update.sh b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/update.sh similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/firebase/update.sh rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/firebase/update.sh diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/.gitignore b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/.gitignore similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/.gitignore rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/.gitignore diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/component.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/component.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/component.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/component.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/composer.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/composer.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/composer.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/composer.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars-source.gemspec b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars-source.gemspec similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars-source.gemspec rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars-source.gemspec diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.amd.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.amd.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.amd.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.amd.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.amd.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.amd.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.amd.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.amd.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.js.nuspec b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.js.nuspec similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.js.nuspec rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.js.nuspec diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.amd.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.amd.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.amd.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.amd.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.amd.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.amd.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.amd.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.amd.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/handlebars.runtime.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/handlebars.runtime.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/lib/handlebars/source.rb b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/lib/handlebars/source.rb similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/lib/handlebars/source.rb rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/lib/handlebars/source.rb diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/package.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/package.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/handlebars/package.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/handlebars/package.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/gulpfile.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/gulpfile.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/gulpfile.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/gulpfile.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.es6.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.es6.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.es6.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.es6.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.es6.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.es6.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.es6.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.es6.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.min.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.min.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/lib/isInViewport.min.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/lib/isInViewport.min.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/license.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/license.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/license.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/license.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/src/index.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/src/index.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/isInViewport/src/index.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/isInViewport/src/index.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/.gitattributes b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/.gitattributes similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/.gitattributes rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/.gitattributes diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/.gitignore b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/.gitignore similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/.gitignore rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/.gitignore diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/dist/gifplayer.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/dist/gifplayer.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/dist/gifplayer.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/dist/gifplayer.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/dist/jquery.gifplayer.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/dist/jquery.gifplayer.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/dist/jquery.gifplayer.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/dist/jquery.gifplayer.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/gifplayer.jquery.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/gifplayer.jquery.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/gifplayer.jquery.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/gifplayer.jquery.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/package.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/package.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/package.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/package.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/src/gifplayer.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/src/gifplayer.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/src/gifplayer.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/src/gifplayer.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/src/gifplayer.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/src/gifplayer.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery.gifplayer/src/gifplayer.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery.gifplayer/src/gifplayer.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/AUTHORS.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/AUTHORS.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/AUTHORS.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/AUTHORS.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/LICENSE.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/LICENSE.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/LICENSE.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/LICENSE.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/core.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/core.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/core.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/core.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.min.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.min.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.min.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.min.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.slim.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.slim.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.slim.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.slim.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.slim.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.slim.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.slim.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.slim.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.slim.min.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.slim.min.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/dist/jquery.slim.min.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/dist/jquery.slim.min.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/LICENSE.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/LICENSE.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/LICENSE.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/LICENSE.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/dist/sizzle.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/dist/sizzle.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/dist/sizzle.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/dist/sizzle.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/dist/sizzle.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/dist/sizzle.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/dist/sizzle.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/dist/sizzle.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/dist/sizzle.min.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/dist/sizzle.min.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/external/sizzle/dist/sizzle.min.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/external/sizzle/dist/sizzle.min.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/.eslintrc.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/.eslintrc.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/.eslintrc.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/.eslintrc.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/jsonp.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/jsonp.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/jsonp.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/jsonp.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/load.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/load.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/load.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/load.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/parseXML.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/parseXML.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/parseXML.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/parseXML.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/script.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/script.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/script.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/script.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/var/location.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/var/location.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/var/location.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/var/location.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/var/nonce.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/var/nonce.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/var/nonce.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/var/nonce.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/var/rquery.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/var/rquery.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/var/rquery.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/var/rquery.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/xhr.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/xhr.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/ajax/xhr.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/ajax/xhr.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/attr.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/attr.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/attr.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/attr.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/classes.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/classes.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/classes.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/classes.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/prop.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/prop.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/prop.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/prop.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/support.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/support.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/support.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/support.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/val.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/val.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/attributes/val.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/attributes/val.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/callbacks.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/callbacks.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/callbacks.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/callbacks.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/DOMEval.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/DOMEval.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/DOMEval.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/DOMEval.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/access.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/access.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/access.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/access.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/init.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/init.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/init.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/init.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/nodeName.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/nodeName.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/nodeName.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/nodeName.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/parseHTML.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/parseHTML.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/parseHTML.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/parseHTML.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/ready-no-deferred.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/ready-no-deferred.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/ready-no-deferred.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/ready-no-deferred.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/ready.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/ready.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/ready.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/ready.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/readyException.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/readyException.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/readyException.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/readyException.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/stripAndCollapse.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/stripAndCollapse.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/stripAndCollapse.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/stripAndCollapse.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/support.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/support.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/support.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/support.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/var/rsingleTag.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/var/rsingleTag.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/core/var/rsingleTag.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/core/var/rsingleTag.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/addGetHookIf.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/addGetHookIf.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/addGetHookIf.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/addGetHookIf.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/adjustCSS.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/adjustCSS.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/adjustCSS.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/adjustCSS.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/curCSS.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/curCSS.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/curCSS.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/curCSS.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/hiddenVisibleSelectors.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/hiddenVisibleSelectors.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/hiddenVisibleSelectors.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/hiddenVisibleSelectors.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/showHide.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/showHide.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/showHide.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/showHide.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/support.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/support.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/support.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/support.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/cssExpand.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/cssExpand.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/cssExpand.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/cssExpand.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/getStyles.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/getStyles.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/getStyles.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/getStyles.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/isHiddenWithinTree.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/isHiddenWithinTree.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/isHiddenWithinTree.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/isHiddenWithinTree.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/rmargin.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/rmargin.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/rmargin.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/rmargin.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/rnumnonpx.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/rnumnonpx.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/rnumnonpx.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/rnumnonpx.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/swap.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/swap.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/css/var/swap.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/css/var/swap.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/Data.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/Data.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/Data.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/Data.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/var/acceptData.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/var/acceptData.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/var/acceptData.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/var/acceptData.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/var/dataPriv.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/var/dataPriv.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/var/dataPriv.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/var/dataPriv.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/var/dataUser.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/var/dataUser.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/data/var/dataUser.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/data/var/dataUser.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/deferred.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/deferred.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/deferred.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/deferred.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/deferred/exceptionHook.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/deferred/exceptionHook.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/deferred/exceptionHook.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/deferred/exceptionHook.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/deprecated.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/deprecated.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/deprecated.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/deprecated.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/dimensions.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/dimensions.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/dimensions.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/dimensions.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/effects.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/effects.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/effects.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/effects.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/effects/Tween.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/effects/Tween.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/effects/Tween.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/effects/Tween.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/effects/animatedSelector.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/effects/animatedSelector.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/effects/animatedSelector.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/effects/animatedSelector.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/ajax.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/ajax.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/ajax.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/ajax.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/alias.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/alias.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/alias.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/alias.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/focusin.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/focusin.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/focusin.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/focusin.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/support.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/support.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/support.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/support.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/trigger.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/trigger.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/event/trigger.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/event/trigger.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/exports/amd.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/exports/amd.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/exports/amd.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/exports/amd.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/exports/global.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/exports/global.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/exports/global.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/exports/global.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/jquery.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/jquery.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/jquery.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/jquery.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/_evalUrl.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/_evalUrl.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/_evalUrl.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/_evalUrl.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/buildFragment.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/buildFragment.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/buildFragment.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/buildFragment.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/getAll.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/getAll.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/getAll.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/getAll.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/setGlobalEval.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/setGlobalEval.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/setGlobalEval.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/setGlobalEval.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/support.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/support.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/support.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/support.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/var/rcheckableType.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/var/rcheckableType.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/var/rcheckableType.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/var/rcheckableType.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/var/rscriptType.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/var/rscriptType.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/var/rscriptType.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/var/rscriptType.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/var/rtagName.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/var/rtagName.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/var/rtagName.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/var/rtagName.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/wrapMap.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/wrapMap.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/manipulation/wrapMap.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/manipulation/wrapMap.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/offset.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/offset.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/offset.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/offset.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/queue.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/queue.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/queue.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/queue.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/queue/delay.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/queue/delay.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/queue/delay.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/queue/delay.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/selector-native.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/selector-native.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/selector-native.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/selector-native.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/selector-sizzle.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/selector-sizzle.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/selector-sizzle.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/selector-sizzle.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/selector.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/selector.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/selector.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/selector.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/serialize.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/serialize.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/serialize.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/serialize.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/findFilter.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/findFilter.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/findFilter.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/findFilter.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/var/dir.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/var/dir.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/var/dir.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/var/dir.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/var/rneedsContext.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/var/rneedsContext.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/var/rneedsContext.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/var/rneedsContext.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/var/siblings.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/var/siblings.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/traversing/var/siblings.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/traversing/var/siblings.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/ObjectFunctionString.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/ObjectFunctionString.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/ObjectFunctionString.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/ObjectFunctionString.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/arr.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/arr.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/arr.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/arr.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/class2type.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/class2type.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/class2type.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/class2type.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/concat.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/concat.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/concat.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/concat.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/document.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/document.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/document.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/document.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/documentElement.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/documentElement.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/documentElement.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/documentElement.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/fnToString.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/fnToString.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/fnToString.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/fnToString.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/getProto.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/getProto.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/getProto.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/getProto.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/hasOwn.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/hasOwn.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/hasOwn.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/hasOwn.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/indexOf.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/indexOf.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/indexOf.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/indexOf.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/pnum.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/pnum.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/pnum.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/pnum.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/push.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/push.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/push.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/push.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/rcssNum.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/rcssNum.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/rcssNum.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/rcssNum.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/rnothtmlwhite.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/rnothtmlwhite.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/rnothtmlwhite.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/rnothtmlwhite.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/slice.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/slice.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/slice.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/slice.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/support.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/support.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/support.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/support.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/toString.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/toString.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/var/toString.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/var/toString.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/wrap.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/wrap.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jquery/src/wrap.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jquery/src/wrap.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/CHANGES.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/CHANGES.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/CHANGES.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/CHANGES.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/Gruntfile.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/Gruntfile.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/Gruntfile.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/Gruntfile.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/LICENSE.markdown b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/LICENSE.markdown similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/LICENSE.markdown rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/LICENSE.markdown diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/README.markdown b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/README.markdown similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/README.markdown rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/README.markdown diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/_config.yml b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/_config.yml similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/_config.yml rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/_config.yml diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/component.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/component.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/component.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/component.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/dist/jszip.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/dist/jszip.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/dist/jszip.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/dist/jszip.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/dist/jszip.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/dist/jszip.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/dist/jszip.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/dist/jszip.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/docs/APPNOTE.TXT b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/docs/APPNOTE.TXT similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/docs/APPNOTE.TXT rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/docs/APPNOTE.TXT diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/docs/ZIP spec.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/docs/ZIP spec.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/docs/ZIP spec.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/docs/ZIP spec.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/docs/references.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/docs/references.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/docs/references.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/docs/references.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/_layouts/default.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/_layouts/default.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/_layouts/default.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/_layouts/default.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/constructor.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/constructor.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/constructor.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/constructor.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/external.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/external.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/external.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/external.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/file_data.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/file_data.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/file_data.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/file_data.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/file_name.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/file_name.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/file_name.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/file_name.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/file_regex.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/file_regex.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/file_regex.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/file_regex.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/filter.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/filter.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/filter.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/filter.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/folder_name.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/folder_name.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/folder_name.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/folder_name.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/folder_regex.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/folder_regex.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/folder_regex.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/folder_regex.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/for_each.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/for_each.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/for_each.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/for_each.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/generate_async.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/generate_async.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/generate_async.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/generate_async.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/generate_internal_stream.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/generate_internal_stream.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/generate_internal_stream.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/generate_internal_stream.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/generate_node_stream.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/generate_node_stream.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/generate_node_stream.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/generate_node_stream.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/load_async.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/load_async.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/load_async.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/load_async.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/load_async_object.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/load_async_object.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/load_async_object.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/load_async_object.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/remove.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/remove.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/remove.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/remove.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/support.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/support.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/support.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/support.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/version.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/version.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_jszip/version.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_jszip/version.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/accumulate.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/accumulate.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/accumulate.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/accumulate.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/on.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/on.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/on.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/on.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/pause.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/pause.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/pause.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/pause.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/resume.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/resume.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_streamhelper/resume.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_streamhelper/resume.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject/async.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject/async.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject/async.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject/async.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject/internal_stream.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject/internal_stream.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject/internal_stream.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject/internal_stream.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject/node_stream.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject/node_stream.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/api_zipobject/node_stream.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/api_zipobject/node_stream.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/contributing.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/contributing.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/contributing.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/contributing.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/css/main.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/css/main.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/css/main.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/css/main.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/css/pygments.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/css/pygments.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/css/pygments.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/css/pygments.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/blob.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/download-zip-file.inc/data_uri.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.inc/downloader.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.inc/downloader.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.inc/downloader.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.inc/downloader.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.inc/downloader.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.inc/downloader.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.inc/downloader.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.inc/downloader.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.inc/helpers.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.inc/helpers.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/downloader.inc/helpers.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/downloader.inc/helpers.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/read-local-file-api.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/read-local-file-api.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/read-local-file-api.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/read-local-file-api.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/examples/read-local-file-api.inc/read.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/faq.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/faq.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/faq.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/faq.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/howto/read_zip.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/howto/read_zip.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/howto/read_zip.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/howto/read_zip.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/howto/write_zip.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/howto/write_zip.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/howto/write_zip.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/howto/write_zip.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/limitations.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/limitations.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/limitations.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/limitations.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/upgrade_guide.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/upgrade_guide.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/documentation/upgrade_guide.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/documentation/upgrade_guide.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/index.html b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/index.html similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/index.html rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/index.html diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/base64.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/base64.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/base64.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/base64.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/compressedObject.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/compressedObject.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/compressedObject.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/compressedObject.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/compressions.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/compressions.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/compressions.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/compressions.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/crc32.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/crc32.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/crc32.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/crc32.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/defaults.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/defaults.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/defaults.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/defaults.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/external.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/external.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/external.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/external.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/flate.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/flate.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/flate.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/flate.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/generate/ZipFileWorker.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/generate/ZipFileWorker.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/generate/ZipFileWorker.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/generate/ZipFileWorker.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/generate/index.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/generate/index.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/generate/index.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/generate/index.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/index.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/index.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/index.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/index.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/license_header.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/license_header.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/license_header.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/license_header.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/load.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/load.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/load.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/load.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/nodejs/NodejsStreamInputAdapter.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/nodejs/NodejsStreamInputAdapter.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/nodejs/NodejsStreamInputAdapter.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/nodejs/NodejsStreamInputAdapter.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/nodejs/NodejsStreamOutputAdapter.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/nodejs/NodejsStreamOutputAdapter.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/nodejs/NodejsStreamOutputAdapter.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/nodejs/NodejsStreamOutputAdapter.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/nodejsUtils.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/nodejsUtils.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/nodejsUtils.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/nodejsUtils.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/object.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/object.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/object.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/object.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/readable-stream-browser.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/readable-stream-browser.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/readable-stream-browser.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/readable-stream-browser.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/ArrayReader.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/ArrayReader.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/ArrayReader.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/ArrayReader.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/DataReader.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/DataReader.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/DataReader.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/DataReader.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/NodeBufferReader.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/NodeBufferReader.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/NodeBufferReader.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/NodeBufferReader.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/StringReader.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/StringReader.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/StringReader.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/StringReader.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/Uint8ArrayReader.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/Uint8ArrayReader.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/Uint8ArrayReader.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/Uint8ArrayReader.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/readerFor.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/readerFor.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/reader/readerFor.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/reader/readerFor.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/signature.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/signature.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/signature.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/signature.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/ConvertWorker.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/ConvertWorker.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/ConvertWorker.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/ConvertWorker.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/Crc32Probe.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/Crc32Probe.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/Crc32Probe.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/Crc32Probe.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/DataLengthProbe.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/DataLengthProbe.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/DataLengthProbe.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/DataLengthProbe.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/DataWorker.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/DataWorker.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/DataWorker.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/DataWorker.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/GenericWorker.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/GenericWorker.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/GenericWorker.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/GenericWorker.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/StreamHelper.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/StreamHelper.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/stream/StreamHelper.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/stream/StreamHelper.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/support.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/support.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/support.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/support.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/utf8.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/utf8.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/utf8.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/utf8.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/utils.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/utils.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/utils.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/utils.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/zipEntries.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/zipEntries.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/zipEntries.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/zipEntries.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/zipEntry.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/zipEntry.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/zipEntry.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/zipEntry.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/zipObject.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/zipObject.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/lib/zipObject.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/lib/zipObject.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/package-lock.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/package-lock.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/package-lock.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/package-lock.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/package.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/package.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/package.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/package.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/vendor/FileSaver.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/vendor/FileSaver.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/jszip/vendor/FileSaver.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/jszip/vendor/FileSaver.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/.flowconfig b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/.flowconfig similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/.flowconfig rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/.flowconfig diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/CHANGELOG.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/CHANGELOG.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/CHANGELOG.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/CHANGELOG.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/LICENSE.txt b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/LICENSE.txt similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/LICENSE.txt rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/LICENSE.txt diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/README.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/README.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/README.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/README.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl-dev.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl-dev.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl-dev.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl-dev.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl-dev.js.flow b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl-dev.js.flow similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl-dev.js.flow rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl-dev.js.flow diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.js.flow b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.js.flow similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.js.flow rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.js.flow diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/mapbox-gl.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/mapbox-gl.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/style-spec/index.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/style-spec/index.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/style-spec/index.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/style-spec/index.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/style-spec/index.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/style-spec/index.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/style-spec/index.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/style-spec/index.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/test.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/test.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/dist/test.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/dist/test.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/package.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/package.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/package.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/package.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/mapbox-gl/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/CONTRIBUTING.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/CONTRIBUTING.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/CONTRIBUTING.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/CONTRIBUTING.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/pdfmake.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/pdfmake.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/pdfmake.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/pdfmake.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/pdfmake.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/pdfmake.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/pdfmake.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/pdfmake.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/pdfmake.min.js.map b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/pdfmake.min.js.map similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/pdfmake.min.js.map rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/pdfmake.min.js.map diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/vfs_fonts.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/vfs_fonts.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/pdfmake/build/vfs_fonts.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/pdfmake/build/vfs_fonts.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/PATENTS b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/PATENTS similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/PATENTS rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/PATENTS diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom-server.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom-server.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom-server.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom-server.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom-server.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom-server.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom-server.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom-server.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-dom.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-dom.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-with-addons.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-with-addons.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-with-addons.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-with-addons.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-with-addons.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-with-addons.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react-with-addons.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react-with-addons.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/react/react.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/react/react.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/CONTRIBUTING.markdown b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/CONTRIBUTING.markdown similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/CONTRIBUTING.markdown rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/CONTRIBUTING.markdown diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/ISSUE_TEMPLATE.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/ISSUE_TEMPLATE.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/ISSUE_TEMPLATE.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/ISSUE_TEMPLATE.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/Makefile b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/Makefile similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/Makefile rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/Makefile diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/README.markdown b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/README.markdown similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/README.markdown rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/README.markdown diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/component.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/component.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/component.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/component.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick.jquery.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick.jquery.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick.jquery.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick.jquery.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/ajax-loader.gif b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/ajax-loader.gif similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/ajax-loader.gif rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/ajax-loader.gif diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/config.rb b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/config.rb similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/config.rb rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/config.rb diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.eot b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.eot similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.eot rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.eot diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.svg b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.svg similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.svg rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.svg diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.ttf b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.ttf similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.ttf rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.ttf diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.woff b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.woff similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/fonts/slick.woff rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/fonts/slick.woff diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick-theme.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick-theme.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick-theme.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick-theme.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick-theme.less b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick-theme.less similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick-theme.less rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick-theme.less diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick-theme.scss b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick-theme.scss similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick-theme.scss rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick-theme.scss diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.css b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.css similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.css rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.css diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.less b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.less similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.less rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.less diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.scss b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.scss similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/slick-carousel/slick/slick.scss rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/slick-carousel/slick/slick.scss diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/readme.md b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/readme.md similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/readme.md rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/readme.md diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/svgeezy.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/svgeezy.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/svgeezy.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/svgeezy.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/svgeezy.min.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/svgeezy.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/svgeezy/svgeezy.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/svgeezy/svgeezy.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/.bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/.bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/.bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/.bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/MIT-LICENSE b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/MIT-LICENSE similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/MIT-LICENSE rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/MIT-LICENSE diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/bower.json b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/bower.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/bower.json rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/bower.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/package.js b/includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/package.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/bower_components/vide/package.js rename to includes/interactives/legacy-containment-system/scripts-shim/bower_components/vide/package.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/src/firebase.js b/includes/interactives/legacy-containment-system/scripts-shim/src/firebase.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/src/firebase.js rename to includes/interactives/legacy-containment-system/scripts-shim/src/firebase.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/src/interactives.js b/includes/interactives/legacy-containment-system/scripts-shim/src/interactives.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/src/interactives.js rename to includes/interactives/legacy-containment-system/scripts-shim/src/interactives.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/ai2html-resizer.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/ai2html-resizer.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/ai2html-resizer.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/ai2html-resizer.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3-africa.topo.json b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3-africa.topo.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3-africa.topo.json rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3-africa.topo.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3-latin-america.geo.json b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3-latin-america.geo.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3-latin-america.geo.json rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3-latin-america.geo.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3-latin-america.topo.json b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3-latin-america.topo.json similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3-latin-america.topo.json rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3-latin-america.topo.json diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.geo.projection.v0.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.geo.projection.v0.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.geo.projection.v0.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.geo.projection.v0.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.queue.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.queue.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.queue.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.queue.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.sankey.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.sankey.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.sankey.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.sankey.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.v3.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.v3.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.v3.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.v3.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.v3.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.v3.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/d3.v3.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/d3.v3.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/datamaps.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/datamaps.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/datamaps.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/datamaps.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/datamaps.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/datamaps.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/datamaps.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/datamaps.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts-exports.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts-exports.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts-exports.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts-exports.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts-more.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts-more.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts-more.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts-more.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts-more.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts-more.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts-more.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts-more.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highcharts.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highcharts.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/europe.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/europe.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/europe.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/europe.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-latin-america.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-latin-america.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-latin-america.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-latin-america.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-latin-america.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-latin-america.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-latin-america.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-latin-america.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-module.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-module.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-module.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-module.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-module.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-module.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-module.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-module.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-us-all.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-us-all.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-us-all.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-us-all.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-us-counties.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-us-counties.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps-us-counties.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps-us-counties.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/highmaps.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/highmaps.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/proj4.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/proj4.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/proj4.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/proj4.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ak-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ak-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ak-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ak-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-al-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-al-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-al-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-al-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ar-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ar-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ar-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ar-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-as-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-as-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-as-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-as-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-az-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-az-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-az-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-az-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ca-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ca-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ca-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ca-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-co-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-co-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-co-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-co-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ct-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ct-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ct-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ct-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-dc-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-dc-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-dc-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-dc-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-de-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-de-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-de-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-de-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-fl-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-fl-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-fl-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-fl-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ga-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ga-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ga-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ga-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-gu-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-gu-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-gu-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-gu-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-hi-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-hi-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-hi-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-hi-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ia-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ia-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ia-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ia-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-id-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-id-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-id-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-id-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-il-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-il-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-il-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-il-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-in-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-in-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-in-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-in-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ks-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ks-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ks-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ks-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ky-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ky-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ky-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ky-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-la-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-la-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-la-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-la-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ma-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ma-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ma-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ma-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-md-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-md-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-md-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-md-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-me-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-me-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-me-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-me-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mi-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mi-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mi-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mi-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mn-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mn-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mn-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mn-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mo-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mo-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mo-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mo-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mp-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mp-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mp-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mp-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ms-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ms-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ms-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ms-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mt-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mt-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-mt-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-mt-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nc-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nc-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nc-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nc-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nd-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nd-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nd-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nd-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ne-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ne-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ne-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ne-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nh-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nh-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nh-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nh-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nj-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nj-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nj-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nj-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nm-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nm-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nm-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nm-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nv-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nv-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-nv-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-nv-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ny-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ny-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ny-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ny-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-oh-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-oh-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-oh-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-oh-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ok-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ok-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ok-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ok-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-or-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-or-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-or-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-or-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-pa-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-pa-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-pa-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-pa-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-pr-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-pr-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-pr-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-pr-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ri-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ri-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ri-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ri-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-sc-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-sc-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-sc-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-sc-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-sd-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-sd-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-sd-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-sd-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-small.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-small.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-small.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-small.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-tn-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-tn-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-tn-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-tn-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-tx-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-tx-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-tx-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-tx-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ut-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ut-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-ut-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-ut-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-va-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-va-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-va-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-va-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-vt-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-vt-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-vt-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-vt-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wa-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wa-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wa-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wa-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wi-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wi-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wi-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wi-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wv-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wv-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wv-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wv-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wy-congress-113.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wy-congress-113.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/highmaps/us-wy-congress-113.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/highmaps/us-wy-congress-113.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/semantic.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/semantic.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/semantic.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/semantic.min.js diff --git a/includes/interactives/legacy-containment-system/assets/scripts/vendor/topojson.v1.min.js b/includes/interactives/legacy-containment-system/scripts-shim/vendor/topojson.v1.min.js similarity index 100% rename from includes/interactives/legacy-containment-system/assets/scripts/vendor/topojson.v1.min.js rename to includes/interactives/legacy-containment-system/scripts-shim/vendor/topojson.v1.min.js diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/10a97e6247ecaa960cce.eot b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/10a97e6247ecaa960cce.eot new file mode 100644 index 00000000..6b252d2a Binary files /dev/null and b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/10a97e6247ecaa960cce.eot differ diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/163e81ceb5e057c35eb3.woff b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/163e81ceb5e057c35eb3.woff new file mode 100644 index 00000000..976426c0 Binary files /dev/null and b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/163e81ceb5e057c35eb3.woff differ diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/230d2e87b1d12d2af2df.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/230d2e87b1d12d2af2df.svg new file mode 100644 index 00000000..5e5287c5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/230d2e87b1d12d2af2df.svg @@ -0,0 +1,2535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/32d8e1d0d54ede923dcc.woff2 b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/32d8e1d0d54ede923dcc.woff2 new file mode 100644 index 00000000..25c967f5 Binary files /dev/null and b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/32d8e1d0d54ede923dcc.woff2 differ diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/99f63ae7a743f21ab308.png b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/99f63ae7a743f21ab308.png new file mode 100644 index 00000000..cdd33c3b Binary files /dev/null and b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/99f63ae7a743f21ab308.png differ diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/d54befad87c7b700c633.ttf b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/d54befad87c7b700c633.ttf new file mode 100644 index 00000000..33086799 Binary files /dev/null and b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/d54befad87c7b700c633.ttf differ diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/main.css b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/main.css new file mode 100644 index 00000000..6ebbf50e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/main.css @@ -0,0 +1,201 @@ +/*! + * # Semantic UI - Button + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.button{cursor:pointer;display:inline-block;min-height:1em;outline:none;border:none;vertical-align:baseline;background:#e0e1e2 none;color:rgba(0,0,0,.6);font-family:var(--wp--preset--font-family--sans-serif);margin:0em .25em 0em 0em;padding:.7857142857em 1.5em .7857142857em;text-transform:none;text-shadow:none;font-weight:bold;line-height:1.067em;font-style:normal;text-align:center;text-decoration:none;border-radius:3px;box-shadow:0px 0px 0px 1px rgba(0,0,0,0) inset,0px 0em 0px 0px rgba(34,36,38,.15) inset;user-select:none;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;will-change:"";-webkit-tap-highlight-color:rgba(0,0,0,0)}.ui.button:hover{background-color:#cacbcd;background-image:none;box-shadow:0px 0px 0px 1px rgba(0,0,0,0) inset,0px 0em 0px 0px rgba(34,36,38,.15) inset;color:rgba(0,0,0,.8)}.ui.button:hover .icon{opacity:.85}.ui.button:focus{background-color:#cacbcd;color:rgba(0,0,0,.8);background-image:"" !important;box-shadow:"" !important}.ui.button:focus .icon{opacity:.85}.ui.button:active,.ui.active.button:active{background-color:#babbbc;background-image:"";color:rgba(0,0,0,.9);box-shadow:0px 0px 0px 1px rgba(0,0,0,0) inset,none}.ui.active.button{background-color:#c0c1c2;background-image:none;box-shadow:0px 0px 0px 1px rgba(0,0,0,0) inset;color:rgba(0,0,0,.95)}.ui.active.button:hover{background-color:#c0c1c2;background-image:none;color:rgba(0,0,0,.95)}.ui.active.button:active{background-color:#c0c1c2;background-image:none}.ui.loading.loading.loading.loading.loading.loading.button{position:relative;cursor:default;text-shadow:none !important;color:rgba(0,0,0,0) !important;opacity:1;pointer-events:auto;transition:all 0s linear,opacity .1s ease}.ui.loading.button:before{position:absolute;content:"";top:50%;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:1.2857142857em;height:1.2857142857em;border-radius:500rem;border:.2em solid rgba(0,0,0,.15)}.ui.loading.button:after{position:absolute;content:"";top:50%;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:1.2857142857em;height:1.2857142857em;animation:button-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:.2em;box-shadow:0px 0px 0px 1px rgba(0,0,0,0)}.ui.labeled.icon.loading.button .icon{background-color:rgba(0,0,0,0);box-shadow:none}@keyframes button-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.ui.basic.loading.button:not(.inverted):before{border-color:rgba(0,0,0,.1)}.ui.basic.loading.button:not(.inverted):after{border-top-color:#767676}.ui.buttons .disabled.button,.ui.disabled.button,.ui.button:disabled,.ui.disabled.button:hover,.ui.disabled.active.button{cursor:default;opacity:.45 !important;background-image:none !important;box-shadow:none !important;pointer-events:none !important}.ui.basic.buttons .ui.disabled.button{border-color:rgba(34,36,38,.5)}.ui.animated.button{position:relative;overflow:hidden;padding-right:0em !important;vertical-align:middle;z-index:1}.ui.animated.button .content{will-change:transform,opacity}.ui.animated.button .visible.content{position:relative;margin-right:1.5em}.ui.animated.button .hidden.content{position:absolute;width:100%}.ui.animated.button .visible.content,.ui.animated.button .hidden.content{transition:right .3s ease 0s}.ui.animated.button .visible.content{left:auto;right:0%}.ui.animated.button .hidden.content{top:50%;left:auto;right:-100%;margin-top:-0.5335em}.ui.animated.button:focus .visible.content,.ui.animated.button:hover .visible.content{left:auto;right:200%}.ui.animated.button:focus .hidden.content,.ui.animated.button:hover .hidden.content{left:auto;right:0%}.ui.vertical.animated.button .visible.content,.ui.vertical.animated.button .hidden.content{transition:top .3s ease,transform .3s ease}.ui.vertical.animated.button .visible.content{transform:translateY(0%);right:auto}.ui.vertical.animated.button .hidden.content{top:-50%;left:0%;right:auto}.ui.vertical.animated.button:focus .visible.content,.ui.vertical.animated.button:hover .visible.content{transform:translateY(200%);right:auto}.ui.vertical.animated.button:focus .hidden.content,.ui.vertical.animated.button:hover .hidden.content{top:50%;right:auto}.ui.fade.animated.button .visible.content,.ui.fade.animated.button .hidden.content{transition:opacity .3s ease,transform .3s ease}.ui.fade.animated.button .visible.content{left:auto;right:auto;opacity:1;transform:scale(1)}.ui.fade.animated.button .hidden.content{opacity:0;left:0%;right:auto;transform:scale(1.5)}.ui.fade.animated.button:focus .visible.content,.ui.fade.animated.button:hover .visible.content{left:auto;right:auto;opacity:0;transform:scale(0.75)}.ui.fade.animated.button:focus .hidden.content,.ui.fade.animated.button:hover .hidden.content{left:0%;right:auto;opacity:1;transform:scale(1)}.ui.inverted.button{box-shadow:0px 0px 0px 2px #fff inset !important;background:rgba(0,0,0,0) none;color:#fff;text-shadow:none !important}.ui.inverted.buttons .button{margin:0px 0px -2px}.ui.inverted.buttons .button:first-child{margin-left:0em}.ui.inverted.vertical.buttons .button{margin:0px -2px 0px}.ui.inverted.vertical.buttons .button:first-child{margin-top:0em}.ui.inverted.button:hover{background:#fff;box-shadow:0px 0px 0px 2px #fff inset !important;color:rgba(0,0,0,.8)}.ui.inverted.button:focus,.ui.inverted.button.active{background:#fff;box-shadow:0px 0px 0px 2px #fff inset !important;color:rgba(0,0,0,.8)}.ui.inverted.button.active:focus{background:#dcddde;box-shadow:0px 0px 0px 2px #dcddde inset !important;color:rgba(0,0,0,.8)}.ui.labeled.button:not(.icon){display:inline-flex;flex-direction:row;background:none !important;padding:0px !important;border:none !important;box-shadow:none !important}.ui.labeled.button>.button{margin:0px}.ui.labeled.button>.label{display:flex;align-items:center;margin:0px 0px 0px -1px !important;font-size:1em;padding:"";font-size:1em;border-color:rgba(34,36,38,.15)}.ui.labeled.button>.tag.label:before{width:1.85em;height:1.85em}.ui.labeled.button:not([class*="left labeled"])>.button{border-top-right-radius:0px;border-bottom-right-radius:0px}.ui.labeled.button:not([class*="left labeled"])>.label{border-top-left-radius:0px;border-bottom-left-radius:0px}.ui[class*="left labeled"].button>.button{border-top-left-radius:0px;border-bottom-left-radius:0px}.ui[class*="left labeled"].button>.label{border-top-right-radius:0px;border-bottom-right-radius:0px}.ui.facebook.button{background-color:#3b5998;color:#fff;text-shadow:none;background-image:none;box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.facebook.button:hover{background-color:#2b4b8f;color:#fff;text-shadow:none}.ui.facebook.button:active{background-color:#2d4373;color:#fff;text-shadow:none}.ui.twitter.button{background-color:#55acee;color:#fff;text-shadow:none;background-image:none;box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.twitter.button:hover{background-color:#33a2f6;color:#fff;text-shadow:none}.ui.twitter.button:active{background-color:#2795e9;color:#fff;text-shadow:none}.ui.linkedin.button{background-color:#1f88be;color:#fff;text-shadow:none}.ui.linkedin.button:hover{background-color:#127bb2;color:#fff;text-shadow:none}.ui.linkedin.button:active{background-color:#186992;color:#fff;text-shadow:none}.ui.youtube.button{background-color:red;color:#fff;text-shadow:none;background-image:none;box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.youtube.button:hover{background-color:#e60000;color:#fff;text-shadow:none}.ui.youtube.button:active{background-color:#c00;color:#fff;text-shadow:none}.ui.instagram.button{background-color:#49769c;color:#fff;text-shadow:none;background-image:none;box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.instagram.button:hover{background-color:#376a95;color:#fff;text-shadow:none}.ui.instagram.button:active{background-color:#395c79;color:#fff;text-shadow:none}.ui.button>.icon:not(.button){height:.8571428571em;opacity:.8;margin:0em .4285714286em -.2142857143em;transition:opacity .1s ease;vertical-align:"";color:""}.ui.button:not(.icon)>.icon:not(.button):not(.dropdown){margin:0em .4285714286em -.2142857143em}.ui.button:not(.icon)>.right.icon:not(.button):not(.dropdown){margin:-.2142857143em 0em .4285714286em}.ui[class*="left floated"].buttons,.ui[class*="left floated"].button{float:left;margin-left:0em;margin-right:.25em}.ui[class*="right floated"].buttons,.ui[class*="right floated"].button{float:right;margin-right:0em;margin-left:.25em}.ui.compact.buttons .button,.ui.compact.button{padding:.5892857143em 1.125em .5892857143em}.ui.compact.icon.buttons .button,.ui.compact.icon.button{padding:.5892857143em .5892857143em .5892857143em}.ui.compact.labeled.icon.buttons .button,.ui.compact.labeled.icon.button{padding:.5892857143em 3.6964285714em .5892857143em}.ui.relaxed.buttons .button,.ui.relaxed.button{padding:.9821428571em 1.875em .9821428571em}.ui.relaxed.icon.buttons .button,.ui.relaxed.icon.button{padding:.9821428571em .9821428571em .9821428571em}.ui.relaxed.labeled.icon.buttons .button,.ui.relaxed.labeled.icon.button{padding:.9821428571em 4.4464285714em .9821428571em}.ui.mini.buttons .button,.ui.mini.buttons .or,.ui.mini.button{font-size:.7857142857rem}.ui.tiny.buttons .button,.ui.tiny.buttons .or,.ui.tiny.button{font-size:.8571428571rem}.ui.small.buttons .button,.ui.small.buttons .or,.ui.small.button{font-size:.9285714286rem}.ui.buttons .button,.ui.buttons .or,.ui.button{font-size:1rem}.ui.large.buttons .button,.ui.large.buttons .or,.ui.large.button{font-size:1.1428571429rem}.ui.big.buttons .button,.ui.big.buttons .or,.ui.big.button{font-size:1.2857142857rem}.ui.huge.buttons .button,.ui.huge.buttons .or,.ui.huge.button{font-size:1.4285714286rem}.ui.massive.buttons .button,.ui.massive.buttons .or,.ui.massive.button{font-size:1.7142857143rem}.ui.icon.buttons .button,.ui.icon.button{padding:.7857142857em .7857142857em .7857142857em}.ui.icon.buttons .button>.icon,.ui.icon.button>.icon{opacity:.9;margin:0em !important;vertical-align:top}.ui.flat.button{border-radius:0;font-weight:normal;text-decoration:none;text-align:center;-webkit-box-shadow:#cacbcd 0px 3px 4px -2px inset;-moz-box-shadow:#cacbcd 0px 3px 4px -2px inset;box-shadow:#cacbcd 0px 3px 4px -2px inset}.ui.flat.button.oatmeal{color:#333;background:#f0f0e6;-webkit-box-shadow:#adadad 0px 3px 4px -2px inset;-moz-box-shadow:#adadad 0px 3px 4px -2px inset;box-shadow:#adadad 0px 3px 4px -2px inset}.ui.flat.button.oatmeal:hover{color:#91918e;background:#d7d8d4}.ui.basic.buttons .button,.ui.basic.button{background:rgba(0,0,0,0) none !important;color:rgba(0,0,0,.6) !important;font-weight:normal;border-radius:3px;text-transform:none;text-shadow:none !important;box-shadow:0px 0px 0px 1px rgba(34,36,38,.15) inset}.ui.basic.buttons{box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:3px}.ui.basic.buttons .button{border-radius:0em}.ui.basic.buttons .button:hover,.ui.basic.button:hover{background:#dadbdb !important;box-shadow:none}.ui.basic.buttons .button:focus,.ui.basic.button:focus{background:#dadbdb !important;color:rgba(0,0,0,.8) !important;box-shadow:none}.ui.basic.buttons .button:active,.ui.basic.button:active{background:#ccc !important;color:rgba(0,0,0,.9) !important;box-shadow:none}.ui.basic.buttons .active.button,.ui.basic.active.button{background:rgba(0,0,0,.05) !important;box-shadow:none !important;color:rgba(0,0,0,.95) !important}.ui.basic.buttons .active.button:hover,.ui.basic.active.button:hover{background-color:rgba(0,0,0,.05)}.ui.basic.buttons .button:hover{box-shadow:none}.ui.basic.buttons .button:active{box-shadow:none}.ui.basic.buttons .active.button{box-shadow:none !important}.ui.basic.inverted.buttons .button,.ui.basic.inverted.button{background-color:rgba(0,0,0,0) !important;color:#f9fafb !important;box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important}.ui.basic.inverted.buttons .button:hover,.ui.basic.inverted.button:hover{color:#fff !important;box-shadow:0px 0px 0px 2px #fff inset !important}.ui.basic.inverted.buttons .button:focus,.ui.basic.inverted.button:focus{color:#fff !important;box-shadow:0px 0px 0px 2px #fff inset !important}.ui.basic.inverted.buttons .button:active,.ui.basic.inverted.button:active{background-color:rgba(255,255,255,.08) !important;color:#fff !important;box-shadow:0px 0px 0px 2px rgba(255,255,255,.9) inset !important}.ui.basic.inverted.buttons .active.button,.ui.basic.inverted.active.button{background-color:rgba(255,255,255,.08);color:#fff;text-shadow:none;box-shadow:0px 0px 0px 2px rgba(255,255,255,.7) inset}.ui.basic.inverted.buttons .active.button:hover,.ui.basic.inverted.active.button:hover{background-color:rgba(255,255,255,.15);box-shadow:0px 0px 0px 2px #fff inset !important}.ui.basic.buttons .button{border-left:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.vertical.buttons .button{border-left:none}.ui.basic.vertical.buttons .button{border-left-width:0px;border-top:1px solid rgba(34,36,38,.15)}.ui.basic.vertical.buttons .button:first-child{border-top-width:0px}.ui.labeled.icon.buttons .button,.ui.labeled.icon.button{position:relative;padding-left:4.0714285714em !important;padding-right:1.5em !important}.ui.labeled.icon.buttons>.button>.icon,.ui.labeled.icon.button>.icon{position:absolute;height:100%;line-height:1;border-radius:0px;border-top-left-radius:inherit;border-bottom-left-radius:inherit;text-align:center;margin:0em;width:2.5714285714em;background-color:rgba(0,0,0,.05);color:"";box-shadow:-1px 0px 0px 0px rgba(0,0,0,0) inset}.ui.labeled.icon.buttons>.button>.icon,.ui.labeled.icon.button>.icon{top:0em;left:0em}.ui[class*="right labeled"].icon.button{padding-right:4.0714285714em !important;padding-left:1.5em !important}.ui[class*="right labeled"].icon.button>.icon{left:auto;right:0em;border-radius:0px;border-top-right-radius:inherit;border-bottom-right-radius:inherit;box-shadow:1px 0px 0px 0px rgba(0,0,0,0) inset}.ui.labeled.icon.buttons>.button>.icon:before,.ui.labeled.icon.button>.icon:before,.ui.labeled.icon.buttons>.button>.icon:after,.ui.labeled.icon.button>.icon:after{display:block;position:absolute;width:100%;top:50%;text-align:center;transform:translateY(-50%)}.ui.labeled.icon.buttons .button>.icon{border-radius:0em}.ui.labeled.icon.buttons .button:first-child>.icon{border-top-left-radius:3px;border-bottom-left-radius:3px}.ui.labeled.icon.buttons .button:last-child>.icon{border-top-right-radius:3px;border-bottom-right-radius:3px}.ui.vertical.labeled.icon.buttons .button:first-child>.icon{border-radius:0em;border-top-left-radius:3px}.ui.vertical.labeled.icon.buttons .button:last-child>.icon{border-radius:0em;border-bottom-left-radius:3px}.ui.fluid[class*="left labeled"].icon.button,.ui.fluid[class*="right labeled"].icon.button{padding-left:1.5em !important;padding-right:1.5em !important}.ui.toggle.buttons .active.button,.ui.buttons .button.toggle.active,.ui.button.toggle.active{background-color:#21ba45 !important;box-shadow:none !important;text-shadow:none;color:#fff !important}.ui.button.toggle.active:hover{background-color:#13ae38 !important;text-shadow:none;color:#fff !important}.ui.circular.button{border-radius:10em}.ui.circular.button>.icon{width:1em;vertical-align:baseline}.ui.buttons .or{position:relative;width:.3em;height:2.5714285714em;z-index:3}.ui.buttons .or:before{position:absolute;text-align:center;border-radius:500rem;content:"or";top:50%;left:50%;background-color:#fff;text-shadow:none;margin-top:-.8928571429em;margin-left:-.8928571429em;width:1.7857142857em;height:1.7857142857em;line-height:1.7857142857em;color:rgba(0,0,0,.4);font-style:normal;font-weight:bold;box-shadow:0px 0px 0px 1px rgba(0,0,0,0) inset}.ui.buttons .or[data-text]:before{content:attr(data-text)}.ui.fluid.buttons .or{width:0em !important}.ui.fluid.buttons .or:after{display:none}.ui.attached.button{position:relative;display:block;margin:0em;border-radius:0em;box-shadow:0px 0px 0px 1px rgba(34,36,38,.15) !important}.ui.attached.top.button{border-radius:3px 3px 0em 0em}.ui.attached.bottom.button{border-radius:0em 0em 3px 3px}.ui.left.attached.button{display:inline-block;border-left:none;text-align:right;padding-right:.75em;border-radius:3px 0em 0em 3px}.ui.right.attached.button{display:inline-block;text-align:left;padding-left:.75em;border-radius:0em 3px 3px 0em}.ui.attached.buttons{position:relative;display:flex;border-radius:0em;width:auto !important;z-index:2;margin-left:-1px;margin-right:-1px}.ui.attached.buttons .button{margin:0em}.ui.attached.buttons .button:first-child{border-radius:0em}.ui.attached.buttons .button:last-child{border-radius:0em}.ui[class*="top attached"].buttons{margin-bottom:-1px;border-radius:3px 3px 0em 0em}.ui[class*="top attached"].buttons .button:first-child{border-radius:3px 0em 0em 0em}.ui[class*="top attached"].buttons .button:last-child{border-radius:0em 3px 0em 0em}.ui[class*="bottom attached"].buttons{margin-top:-1px;border-radius:0em 0em 3px 3px}.ui[class*="bottom attached"].buttons .button:first-child{border-radius:0em 0em 0em 3px}.ui[class*="bottom attached"].buttons .button:last-child{border-radius:0em 0em 3px 0em}.ui[class*="left attached"].buttons{display:inline-flex;margin-right:0em;margin-left:-1px;border-radius:0em 3px 3px 0em}.ui[class*="left attached"].buttons .button:first-child{margin-left:-1px;border-radius:0em 3px 0em 0em}.ui[class*="left attached"].buttons .button:last-child{margin-left:-1px;border-radius:0em 0em 3px 0em}.ui[class*="right attached"].buttons{display:inline-flex;margin-left:0em;margin-right:-1px;border-radius:3px 0em 0em 3px}.ui[class*="right attached"].buttons .button:first-child{margin-left:-1px;border-radius:3px 0em 0em 0em}.ui[class*="right attached"].buttons .button:last-child{margin-left:-1px;border-radius:0em 0em 0em 3px}.ui.fluid.buttons,.ui.fluid.button{width:100%}.ui.fluid.button,.ui.is-style-fluid.button{display:block}.ui.two.buttons{width:100%}.ui.two.buttons>.button{width:50%}.ui.three.buttons{width:100%}.ui.three.buttons>.button{width:33.333%}.ui.four.buttons{width:100%}.ui.four.buttons>.button{width:25%}.ui.five.buttons{width:100%}.ui.five.buttons>.button{width:20%}.ui.six.buttons{width:100%}.ui.six.buttons>.button{width:16.666%}.ui.seven.buttons{width:100%}.ui.seven.buttons>.button{width:14.285%}.ui.eight.buttons{width:100%}.ui.eight.buttons>.button{width:12.5%}.ui.nine.buttons{width:100%}.ui.nine.buttons>.button{width:11.11%}.ui.ten.buttons{width:100%}.ui.ten.buttons>.button{width:10%}.ui.eleven.buttons{width:100%}.ui.eleven.buttons>.button{width:9.09%}.ui.twelve.buttons{width:100%}.ui.twelve.buttons>.button{width:8.3333%}.ui.fluid.vertical.buttons,.ui.fluid.vertical.buttons>.button{display:flex;width:auto}.ui.two.vertical.buttons>.button{height:50%}.ui.three.vertical.buttons>.button{height:33.333%}.ui.four.vertical.buttons>.button{height:25%}.ui.five.vertical.buttons>.button{height:20%}.ui.six.vertical.buttons>.button{height:16.666%}.ui.seven.vertical.buttons>.button{height:14.285%}.ui.eight.vertical.buttons>.button{height:12.5%}.ui.nine.vertical.buttons>.button{height:11.11%}.ui.ten.vertical.buttons>.button{height:10%}.ui.eleven.vertical.buttons>.button{height:9.09%}.ui.twelve.vertical.buttons>.button{height:8.3333%}.ui.black.buttons .button,.ui.black.button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.black.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.black.buttons .button:hover,.ui.black.button:hover{background-color:#27292a;color:#fff;text-shadow:none}.ui.black.buttons .button:focus,.ui.black.button:focus{background-color:#2f3032;color:#fff;text-shadow:none}.ui.black.buttons .button:active,.ui.black.button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.black.buttons .active.button,.ui.black.buttons .active.button:active,.ui.black.active.button,.ui.black.button .active.button:active{background-color:#0f0f10;color:#fff;text-shadow:none}.ui.basic.black.buttons .button,.ui.basic.black.button{box-shadow:0px 0px 0px 1px #1b1c1d inset !important;color:#1b1c1d !important}.ui.basic.black.buttons .button:hover,.ui.basic.black.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #27292a inset !important;color:#27292a !important}.ui.basic.black.buttons .button:focus,.ui.basic.black.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #2f3032 inset !important;color:#27292a !important}.ui.basic.black.buttons .active.button,.ui.basic.black.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #0f0f10 inset !important;color:#343637 !important}.ui.basic.black.buttons .button:active,.ui.basic.black.button:active{box-shadow:0px 0px 0px 1px #343637 inset !important;color:#343637 !important}.ui.buttons:not(.vertical)>.basic.black.button:not(:first-child){margin-left:-1px}.ui.inverted.black.buttons .button,.ui.inverted.black.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #d4d4d5 inset !important;color:#fff}.ui.inverted.black.buttons .button:hover,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.button:focus,.ui.inverted.black.buttons .button.active,.ui.inverted.black.button.active,.ui.inverted.black.buttons .button:active,.ui.inverted.black.button:active{box-shadow:none !important;color:#fff}.ui.inverted.black.buttons .button:hover,.ui.inverted.black.button:hover{background-color:#000}.ui.inverted.black.buttons .button:focus,.ui.inverted.black.button:focus{background-color:#000}.ui.inverted.black.buttons .active.button,.ui.inverted.black.active.button{background-color:#000}.ui.inverted.black.buttons .button:active,.ui.inverted.black.button:active{background-color:#000}.ui.inverted.black.basic.buttons .button,.ui.inverted.black.buttons .basic.button,.ui.inverted.black.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.black.basic.buttons .button:hover,.ui.inverted.black.buttons .basic.button:hover,.ui.inverted.black.basic.button:hover{box-shadow:0px 0px 0px 2px #000 inset !important;color:#fff !important}.ui.inverted.black.basic.buttons .button:focus,.ui.inverted.black.basic.buttons .button:focus,.ui.inverted.black.basic.button:focus{box-shadow:0px 0px 0px 2px #000 inset !important;color:#545454 !important}.ui.inverted.black.basic.buttons .active.button,.ui.inverted.black.buttons .basic.active.button,.ui.inverted.black.basic.active.button{box-shadow:0px 0px 0px 2px #000 inset !important;color:#fff !important}.ui.inverted.black.basic.buttons .button:active,.ui.inverted.black.buttons .basic.button:active,.ui.inverted.black.basic.button:active{box-shadow:0px 0px 0px 2px #000 inset !important;color:#fff !important}.ui.grey.buttons .button,.ui.grey.button{background-color:#767676;color:#fff;text-shadow:none;background-image:none}.ui.grey.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.grey.buttons .button:hover,.ui.grey.button:hover{background-color:#838383;color:#fff;text-shadow:none}.ui.grey.buttons .button:focus,.ui.grey.button:focus{background-color:#8a8a8a;color:#fff;text-shadow:none}.ui.grey.buttons .button:active,.ui.grey.button:active{background-color:#909090;color:#fff;text-shadow:none}.ui.grey.buttons .active.button,.ui.grey.buttons .active.button:active,.ui.grey.active.button,.ui.grey.button .active.button:active{background-color:dimgray;color:#fff;text-shadow:none}.ui.basic.grey.buttons .button,.ui.basic.grey.button{box-shadow:0px 0px 0px 1px #767676 inset !important;color:#767676 !important}.ui.basic.grey.buttons .button:hover,.ui.basic.grey.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #838383 inset !important;color:#838383 !important}.ui.basic.grey.buttons .button:focus,.ui.basic.grey.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #8a8a8a inset !important;color:#838383 !important}.ui.basic.grey.buttons .active.button,.ui.basic.grey.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px dimgray inset !important;color:#909090 !important}.ui.basic.grey.buttons .button:active,.ui.basic.grey.button:active{box-shadow:0px 0px 0px 1px #909090 inset !important;color:#909090 !important}.ui.buttons:not(.vertical)>.basic.grey.button:not(:first-child){margin-left:-1px}.ui.inverted.grey.buttons .button,.ui.inverted.grey.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #d4d4d5 inset !important;color:#fff}.ui.inverted.grey.buttons .button:hover,.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button:focus,.ui.inverted.grey.button:focus,.ui.inverted.grey.buttons .button.active,.ui.inverted.grey.button.active,.ui.inverted.grey.buttons .button:active,.ui.inverted.grey.button:active{box-shadow:none !important;color:rgba(0,0,0,.6)}.ui.inverted.grey.buttons .button:hover,.ui.inverted.grey.button:hover{background-color:#cad0d6}.ui.inverted.grey.buttons .button:focus,.ui.inverted.grey.button:focus{background-color:#bcc9d5}.ui.inverted.grey.buttons .active.button,.ui.inverted.grey.active.button{background-color:#c8d0d9}.ui.inverted.grey.buttons .button:active,.ui.inverted.grey.button:active{background-color:#c2c4c5}.ui.inverted.grey.basic.buttons .button,.ui.inverted.grey.buttons .basic.button,.ui.inverted.grey.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.grey.basic.buttons .button:hover,.ui.inverted.grey.buttons .basic.button:hover,.ui.inverted.grey.basic.button:hover{box-shadow:0px 0px 0px 2px #cad0d6 inset !important;color:#fff !important}.ui.inverted.grey.basic.buttons .button:focus,.ui.inverted.grey.basic.buttons .button:focus,.ui.inverted.grey.basic.button:focus{box-shadow:0px 0px 0px 2px #bcc9d5 inset !important;color:#dcddde !important}.ui.inverted.grey.basic.buttons .active.button,.ui.inverted.grey.buttons .basic.active.button,.ui.inverted.grey.basic.active.button{box-shadow:0px 0px 0px 2px #c8d0d9 inset !important;color:#fff !important}.ui.inverted.grey.basic.buttons .button:active,.ui.inverted.grey.buttons .basic.button:active,.ui.inverted.grey.basic.button:active{box-shadow:0px 0px 0px 2px #c2c4c5 inset !important;color:#fff !important}.ui.brown.buttons .button,.ui.brown.button{background-color:#a5673f;color:#fff;text-shadow:none;background-image:none}.ui.brown.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.brown.buttons .button:hover,.ui.brown.button:hover{background-color:#9d592e;color:#fff;text-shadow:none}.ui.brown.buttons .button:focus,.ui.brown.button:focus{background-color:#9a5121;color:#fff;text-shadow:none}.ui.brown.buttons .button:active,.ui.brown.button:active{background-color:#805031;color:#fff;text-shadow:none}.ui.brown.buttons .active.button,.ui.brown.buttons .active.button:active,.ui.brown.active.button,.ui.brown.button .active.button:active{background-color:#a25829;color:#fff;text-shadow:none}.ui.basic.brown.buttons .button,.ui.basic.brown.button{box-shadow:0px 0px 0px 1px #a5673f inset !important;color:#a5673f !important}.ui.basic.brown.buttons .button:hover,.ui.basic.brown.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #9d592e inset !important;color:#9d592e !important}.ui.basic.brown.buttons .button:focus,.ui.basic.brown.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #9a5121 inset !important;color:#9d592e !important}.ui.basic.brown.buttons .active.button,.ui.basic.brown.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #a25829 inset !important;color:#805031 !important}.ui.basic.brown.buttons .button:active,.ui.basic.brown.button:active{box-shadow:0px 0px 0px 1px #805031 inset !important;color:#805031 !important}.ui.buttons:not(.vertical)>.basic.brown.button:not(:first-child){margin-left:-1px}.ui.inverted.brown.buttons .button,.ui.inverted.brown.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #d67c1c inset !important;color:#d67c1c}.ui.inverted.brown.buttons .button:hover,.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button:focus,.ui.inverted.brown.button:focus,.ui.inverted.brown.buttons .button.active,.ui.inverted.brown.button.active,.ui.inverted.brown.buttons .button:active,.ui.inverted.brown.button:active{box-shadow:none !important;color:#fff}.ui.inverted.brown.buttons .button:hover,.ui.inverted.brown.button:hover{background-color:#ca6f0e}.ui.inverted.brown.buttons .button:focus,.ui.inverted.brown.button:focus{background-color:#c66803}.ui.inverted.brown.buttons .active.button,.ui.inverted.brown.active.button{background-color:#d06f09}.ui.inverted.brown.buttons .button:active,.ui.inverted.brown.button:active{background-color:#a96216}.ui.inverted.brown.basic.buttons .button,.ui.inverted.brown.buttons .basic.button,.ui.inverted.brown.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.brown.basic.buttons .button:hover,.ui.inverted.brown.buttons .basic.button:hover,.ui.inverted.brown.basic.button:hover{box-shadow:0px 0px 0px 2px #ca6f0e inset !important;color:#d67c1c !important}.ui.inverted.brown.basic.buttons .button:focus,.ui.inverted.brown.basic.buttons .button:focus,.ui.inverted.brown.basic.button:focus{box-shadow:0px 0px 0px 2px #c66803 inset !important;color:#d67c1c !important}.ui.inverted.brown.basic.buttons .active.button,.ui.inverted.brown.buttons .basic.active.button,.ui.inverted.brown.basic.active.button{box-shadow:0px 0px 0px 2px #d06f09 inset !important;color:#d67c1c !important}.ui.inverted.brown.basic.buttons .button:active,.ui.inverted.brown.buttons .basic.button:active,.ui.inverted.brown.basic.button:active{box-shadow:0px 0px 0px 2px #a96216 inset !important;color:#d67c1c !important}.ui.blue.buttons .button,.ui.blue.button{background-color:#2185d0;color:#fff;text-shadow:none;background-image:none}.ui.blue.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.blue.buttons .button:hover,.ui.blue.button:hover{background-color:#1378c5;color:#fff;text-shadow:none}.ui.blue.buttons .button:focus,.ui.blue.button:focus{background-color:#0771c1;color:#fff;text-shadow:none}.ui.blue.buttons .button:active,.ui.blue.button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.blue.buttons .active.button,.ui.blue.buttons .active.button:active,.ui.blue.active.button,.ui.blue.button .active.button:active{background-color:#0d79ca;color:#fff;text-shadow:none}.ui.basic.blue.buttons .button,.ui.basic.blue.button{box-shadow:0px 0px 0px 1px #2185d0 inset !important;color:#2185d0 !important}.ui.basic.blue.buttons .button:hover,.ui.basic.blue.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #1378c5 inset !important;color:#1378c5 !important}.ui.basic.blue.buttons .button:focus,.ui.basic.blue.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #0771c1 inset !important;color:#1378c5 !important}.ui.basic.blue.buttons .active.button,.ui.basic.blue.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #0d79ca inset !important;color:#1a69a4 !important}.ui.basic.blue.buttons .button:active,.ui.basic.blue.button:active{box-shadow:0px 0px 0px 1px #1a69a4 inset !important;color:#1a69a4 !important}.ui.buttons:not(.vertical)>.basic.blue.button:not(:first-child){margin-left:-1px}.ui.inverted.blue.buttons .button,.ui.inverted.blue.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #54c8ff inset !important;color:#54c8ff}.ui.inverted.blue.buttons .button:hover,.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button:focus,.ui.inverted.blue.button:focus,.ui.inverted.blue.buttons .button.active,.ui.inverted.blue.button.active,.ui.inverted.blue.buttons .button:active,.ui.inverted.blue.button:active{box-shadow:none !important;color:#fff}.ui.inverted.blue.buttons .button:hover,.ui.inverted.blue.button:hover{background-color:#3bc0ff}.ui.inverted.blue.buttons .button:focus,.ui.inverted.blue.button:focus{background-color:#2bbbff}.ui.inverted.blue.buttons .active.button,.ui.inverted.blue.active.button{background-color:#3bc0ff}.ui.inverted.blue.buttons .button:active,.ui.inverted.blue.button:active{background-color:#21b8ff}.ui.inverted.blue.basic.buttons .button,.ui.inverted.blue.buttons .basic.button,.ui.inverted.blue.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.blue.basic.buttons .button:hover,.ui.inverted.blue.buttons .basic.button:hover,.ui.inverted.blue.basic.button:hover{box-shadow:0px 0px 0px 2px #3bc0ff inset !important;color:#54c8ff !important}.ui.inverted.blue.basic.buttons .button:focus,.ui.inverted.blue.basic.buttons .button:focus,.ui.inverted.blue.basic.button:focus{box-shadow:0px 0px 0px 2px #2bbbff inset !important;color:#54c8ff !important}.ui.inverted.blue.basic.buttons .active.button,.ui.inverted.blue.buttons .basic.active.button,.ui.inverted.blue.basic.active.button{box-shadow:0px 0px 0px 2px #3bc0ff inset !important;color:#54c8ff !important}.ui.inverted.blue.basic.buttons .button:active,.ui.inverted.blue.buttons .basic.button:active,.ui.inverted.blue.basic.button:active{box-shadow:0px 0px 0px 2px #21b8ff inset !important;color:#54c8ff !important}.ui.green.buttons .button,.ui.green.button{background-color:#21ba45;color:#fff;text-shadow:none;background-image:none}.ui.green.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.green.buttons .button:hover,.ui.green.button:hover{background-color:#13ae38;color:#fff;text-shadow:none}.ui.green.buttons .button:focus,.ui.green.button:focus{background-color:#09a92f;color:#fff;text-shadow:none}.ui.green.buttons .button:active,.ui.green.button:active{background-color:#198f35;color:#fff;text-shadow:none}.ui.green.buttons .active.button,.ui.green.buttons .active.button:active,.ui.green.active.button,.ui.green.button .active.button:active{background-color:#0fb335;color:#fff;text-shadow:none}.ui.basic.green.buttons .button,.ui.basic.green.button{box-shadow:0px 0px 0px 1px #21ba45 inset !important;color:#21ba45 !important}.ui.basic.green.buttons .button:hover,.ui.basic.green.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #13ae38 inset !important;color:#13ae38 !important}.ui.basic.green.buttons .button:focus,.ui.basic.green.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #09a92f inset !important;color:#13ae38 !important}.ui.basic.green.buttons .active.button,.ui.basic.green.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #0fb335 inset !important;color:#198f35 !important}.ui.basic.green.buttons .button:active,.ui.basic.green.button:active{box-shadow:0px 0px 0px 1px #198f35 inset !important;color:#198f35 !important}.ui.buttons:not(.vertical)>.basic.green.button:not(:first-child){margin-left:-1px}.ui.inverted.green.buttons .button,.ui.inverted.green.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #2ecc40 inset !important;color:#2ecc40}.ui.inverted.green.buttons .button:hover,.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button:focus,.ui.inverted.green.button:focus,.ui.inverted.green.buttons .button.active,.ui.inverted.green.button.active,.ui.inverted.green.buttons .button:active,.ui.inverted.green.button:active{box-shadow:none !important;color:#fff}.ui.inverted.green.buttons .button:hover,.ui.inverted.green.button:hover{background-color:#1ec231}.ui.inverted.green.buttons .button:focus,.ui.inverted.green.button:focus{background-color:#12c025}.ui.inverted.green.buttons .active.button,.ui.inverted.green.active.button{background-color:#18c82c}.ui.inverted.green.buttons .button:active,.ui.inverted.green.button:active{background-color:#25a233}.ui.inverted.green.basic.buttons .button,.ui.inverted.green.buttons .basic.button,.ui.inverted.green.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.green.basic.buttons .button:hover,.ui.inverted.green.buttons .basic.button:hover,.ui.inverted.green.basic.button:hover{box-shadow:0px 0px 0px 2px #1ec231 inset !important;color:#2ecc40 !important}.ui.inverted.green.basic.buttons .button:focus,.ui.inverted.green.basic.buttons .button:focus,.ui.inverted.green.basic.button:focus{box-shadow:0px 0px 0px 2px #12c025 inset !important;color:#2ecc40 !important}.ui.inverted.green.basic.buttons .active.button,.ui.inverted.green.buttons .basic.active.button,.ui.inverted.green.basic.active.button{box-shadow:0px 0px 0px 2px #18c82c inset !important;color:#2ecc40 !important}.ui.inverted.green.basic.buttons .button:active,.ui.inverted.green.buttons .basic.button:active,.ui.inverted.green.basic.button:active{box-shadow:0px 0px 0px 2px #25a233 inset !important;color:#2ecc40 !important}.ui.orange.buttons .button,.ui.orange.button{background-color:#f2711c;color:#fff;text-shadow:none;background-image:none}.ui.orange.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.orange.buttons .button:hover,.ui.orange.button:hover{background-color:#f36101;color:#fff;text-shadow:none}.ui.orange.buttons .button:focus,.ui.orange.button:focus{background-color:#e55b00;color:#fff;text-shadow:none}.ui.orange.buttons .button:active,.ui.orange.button:active{background-color:#cf590c;color:#fff;text-shadow:none}.ui.orange.buttons .active.button,.ui.orange.buttons .active.button:active,.ui.orange.active.button,.ui.orange.button .active.button:active{background-color:#f56100;color:#fff;text-shadow:none}.ui.basic.orange.buttons .button,.ui.basic.orange.button{box-shadow:0px 0px 0px 1px #f2711c inset !important;color:#f2711c !important}.ui.basic.orange.buttons .button:hover,.ui.basic.orange.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #f36101 inset !important;color:#f36101 !important}.ui.basic.orange.buttons .button:focus,.ui.basic.orange.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #e55b00 inset !important;color:#f36101 !important}.ui.basic.orange.buttons .active.button,.ui.basic.orange.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #f56100 inset !important;color:#cf590c !important}.ui.basic.orange.buttons .button:active,.ui.basic.orange.button:active{box-shadow:0px 0px 0px 1px #cf590c inset !important;color:#cf590c !important}.ui.buttons:not(.vertical)>.basic.orange.button:not(:first-child){margin-left:-1px}.ui.inverted.orange.buttons .button,.ui.inverted.orange.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #ff851b inset !important;color:#ff851b}.ui.inverted.orange.buttons .button:hover,.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button:focus,.ui.inverted.orange.button:focus,.ui.inverted.orange.buttons .button.active,.ui.inverted.orange.button.active,.ui.inverted.orange.buttons .button:active,.ui.inverted.orange.button:active{box-shadow:none !important;color:#fff}.ui.inverted.orange.buttons .button:hover,.ui.inverted.orange.button:hover{background-color:#ff7702}.ui.inverted.orange.buttons .button:focus,.ui.inverted.orange.button:focus{background-color:#f17000}.ui.inverted.orange.buttons .active.button,.ui.inverted.orange.active.button{background-color:#ff7702}.ui.inverted.orange.buttons .button:active,.ui.inverted.orange.button:active{background-color:#e76b00}.ui.inverted.orange.basic.buttons .button,.ui.inverted.orange.buttons .basic.button,.ui.inverted.orange.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.orange.basic.buttons .button:hover,.ui.inverted.orange.buttons .basic.button:hover,.ui.inverted.orange.basic.button:hover{box-shadow:0px 0px 0px 2px #ff7702 inset !important;color:#ff851b !important}.ui.inverted.orange.basic.buttons .button:focus,.ui.inverted.orange.basic.buttons .button:focus,.ui.inverted.orange.basic.button:focus{box-shadow:0px 0px 0px 2px #f17000 inset !important;color:#ff851b !important}.ui.inverted.orange.basic.buttons .active.button,.ui.inverted.orange.buttons .basic.active.button,.ui.inverted.orange.basic.active.button{box-shadow:0px 0px 0px 2px #ff7702 inset !important;color:#ff851b !important}.ui.inverted.orange.basic.buttons .button:active,.ui.inverted.orange.buttons .basic.button:active,.ui.inverted.orange.basic.button:active{box-shadow:0px 0px 0px 2px #e76b00 inset !important;color:#ff851b !important}.ui.pink.buttons .button,.ui.pink.button{background-color:#e03997;color:#fff;text-shadow:none;background-image:none}.ui.pink.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.pink.buttons .button:hover,.ui.pink.button:hover{background-color:#e9168d;color:#fff;text-shadow:none}.ui.pink.buttons .button:focus,.ui.pink.button:focus{background-color:#e80886;color:#fff;text-shadow:none}.ui.pink.buttons .button:active,.ui.pink.button:active{background-color:#c71f7e;color:#fff;text-shadow:none}.ui.pink.buttons .active.button,.ui.pink.buttons .active.button:active,.ui.pink.active.button,.ui.pink.button .active.button:active{background-color:#f0108e;color:#fff;text-shadow:none}.ui.basic.pink.buttons .button,.ui.basic.pink.button{box-shadow:0px 0px 0px 1px #e03997 inset !important;color:#e03997 !important}.ui.basic.pink.buttons .button:hover,.ui.basic.pink.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #e9168d inset !important;color:#e9168d !important}.ui.basic.pink.buttons .button:focus,.ui.basic.pink.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #e80886 inset !important;color:#e9168d !important}.ui.basic.pink.buttons .active.button,.ui.basic.pink.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #f0108e inset !important;color:#c71f7e !important}.ui.basic.pink.buttons .button:active,.ui.basic.pink.button:active{box-shadow:0px 0px 0px 1px #c71f7e inset !important;color:#c71f7e !important}.ui.buttons:not(.vertical)>.basic.pink.button:not(:first-child){margin-left:-1px}.ui.inverted.pink.buttons .button,.ui.inverted.pink.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #ff8edf inset !important;color:#ff8edf}.ui.inverted.pink.buttons .button:hover,.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button:focus,.ui.inverted.pink.button:focus,.ui.inverted.pink.buttons .button.active,.ui.inverted.pink.button.active,.ui.inverted.pink.buttons .button:active,.ui.inverted.pink.button:active{box-shadow:none !important;color:#fff}.ui.inverted.pink.buttons .button:hover,.ui.inverted.pink.button:hover{background-color:#ff75d8}.ui.inverted.pink.buttons .button:focus,.ui.inverted.pink.button:focus{background-color:#ff65d3}.ui.inverted.pink.buttons .active.button,.ui.inverted.pink.active.button{background-color:#ff75d8}.ui.inverted.pink.buttons .button:active,.ui.inverted.pink.button:active{background-color:#ff5bd1}.ui.inverted.pink.basic.buttons .button,.ui.inverted.pink.buttons .basic.button,.ui.inverted.pink.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.pink.basic.buttons .button:hover,.ui.inverted.pink.buttons .basic.button:hover,.ui.inverted.pink.basic.button:hover{box-shadow:0px 0px 0px 2px #ff75d8 inset !important;color:#ff8edf !important}.ui.inverted.pink.basic.buttons .button:focus,.ui.inverted.pink.basic.buttons .button:focus,.ui.inverted.pink.basic.button:focus{box-shadow:0px 0px 0px 2px #ff65d3 inset !important;color:#ff8edf !important}.ui.inverted.pink.basic.buttons .active.button,.ui.inverted.pink.buttons .basic.active.button,.ui.inverted.pink.basic.active.button{box-shadow:0px 0px 0px 2px #ff75d8 inset !important;color:#ff8edf !important}.ui.inverted.pink.basic.buttons .button:active,.ui.inverted.pink.buttons .basic.button:active,.ui.inverted.pink.basic.button:active{box-shadow:0px 0px 0px 2px #ff5bd1 inset !important;color:#ff8edf !important}.ui.violet.buttons .button,.ui.violet.button{background-color:#6435c9;color:#fff;text-shadow:none;background-image:none}.ui.violet.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.violet.buttons .button:hover,.ui.violet.button:hover{background-color:#5624c0;color:#fff;text-shadow:none}.ui.violet.buttons .button:focus,.ui.violet.button:focus{background-color:#4c17be;color:#fff;text-shadow:none}.ui.violet.buttons .button:active,.ui.violet.button:active{background-color:#502aa1;color:#fff;text-shadow:none}.ui.violet.buttons .active.button,.ui.violet.buttons .active.button:active,.ui.violet.active.button,.ui.violet.button .active.button:active{background-color:#541fc6;color:#fff;text-shadow:none}.ui.basic.violet.buttons .button,.ui.basic.violet.button{box-shadow:0px 0px 0px 1px #6435c9 inset !important;color:#6435c9 !important}.ui.basic.violet.buttons .button:hover,.ui.basic.violet.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #5624c0 inset !important;color:#5624c0 !important}.ui.basic.violet.buttons .button:focus,.ui.basic.violet.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #4c17be inset !important;color:#5624c0 !important}.ui.basic.violet.buttons .active.button,.ui.basic.violet.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #541fc6 inset !important;color:#502aa1 !important}.ui.basic.violet.buttons .button:active,.ui.basic.violet.button:active{box-shadow:0px 0px 0px 1px #502aa1 inset !important;color:#502aa1 !important}.ui.buttons:not(.vertical)>.basic.violet.button:not(:first-child){margin-left:-1px}.ui.inverted.violet.buttons .button,.ui.inverted.violet.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #a291fb inset !important;color:#a291fb}.ui.inverted.violet.buttons .button:hover,.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button:focus,.ui.inverted.violet.button:focus,.ui.inverted.violet.buttons .button.active,.ui.inverted.violet.button.active,.ui.inverted.violet.buttons .button:active,.ui.inverted.violet.button:active{box-shadow:none !important;color:#fff}.ui.inverted.violet.buttons .button:hover,.ui.inverted.violet.button:hover{background-color:#8a74ff}.ui.inverted.violet.buttons .button:focus,.ui.inverted.violet.button:focus{background-color:#7d64ff}.ui.inverted.violet.buttons .active.button,.ui.inverted.violet.active.button{background-color:#8a74ff}.ui.inverted.violet.buttons .button:active,.ui.inverted.violet.button:active{background-color:#7860f9}.ui.inverted.violet.basic.buttons .button,.ui.inverted.violet.buttons .basic.button,.ui.inverted.violet.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.violet.basic.buttons .button:hover,.ui.inverted.violet.buttons .basic.button:hover,.ui.inverted.violet.basic.button:hover{box-shadow:0px 0px 0px 2px #8a74ff inset !important;color:#a291fb !important}.ui.inverted.violet.basic.buttons .button:focus,.ui.inverted.violet.basic.buttons .button:focus,.ui.inverted.violet.basic.button:focus{box-shadow:0px 0px 0px 2px #7d64ff inset !important;color:#a291fb !important}.ui.inverted.violet.basic.buttons .active.button,.ui.inverted.violet.buttons .basic.active.button,.ui.inverted.violet.basic.active.button{box-shadow:0px 0px 0px 2px #8a74ff inset !important;color:#a291fb !important}.ui.inverted.violet.basic.buttons .button:active,.ui.inverted.violet.buttons .basic.button:active,.ui.inverted.violet.basic.button:active{box-shadow:0px 0px 0px 2px #7860f9 inset !important;color:#a291fb !important}.ui.purple.buttons .button,.ui.purple.button{background-color:#a333c8;color:#fff;text-shadow:none;background-image:none}.ui.purple.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.purple.buttons .button:hover,.ui.purple.button:hover{background-color:#9823bf;color:#fff;text-shadow:none}.ui.purple.buttons .button:focus,.ui.purple.button:focus{background-color:#9316bd;color:#fff;text-shadow:none}.ui.purple.buttons .button:active,.ui.purple.button:active{background-color:#82299f;color:#fff;text-shadow:none}.ui.purple.buttons .active.button,.ui.purple.buttons .active.button:active,.ui.purple.active.button,.ui.purple.button .active.button:active{background-color:#9b1dc5;color:#fff;text-shadow:none}.ui.basic.purple.buttons .button,.ui.basic.purple.button{box-shadow:0px 0px 0px 1px #a333c8 inset !important;color:#a333c8 !important}.ui.basic.purple.buttons .button:hover,.ui.basic.purple.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #9823bf inset !important;color:#9823bf !important}.ui.basic.purple.buttons .button:focus,.ui.basic.purple.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #9316bd inset !important;color:#9823bf !important}.ui.basic.purple.buttons .active.button,.ui.basic.purple.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #9b1dc5 inset !important;color:#82299f !important}.ui.basic.purple.buttons .button:active,.ui.basic.purple.button:active{box-shadow:0px 0px 0px 1px #82299f inset !important;color:#82299f !important}.ui.buttons:not(.vertical)>.basic.purple.button:not(:first-child){margin-left:-1px}.ui.inverted.purple.buttons .button,.ui.inverted.purple.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #dc73ff inset !important;color:#dc73ff}.ui.inverted.purple.buttons .button:hover,.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button:focus,.ui.inverted.purple.button:focus,.ui.inverted.purple.buttons .button.active,.ui.inverted.purple.button.active,.ui.inverted.purple.buttons .button:active,.ui.inverted.purple.button:active{box-shadow:none !important;color:#fff}.ui.inverted.purple.buttons .button:hover,.ui.inverted.purple.button:hover{background-color:#d65aff}.ui.inverted.purple.buttons .button:focus,.ui.inverted.purple.button:focus{background-color:#d24aff}.ui.inverted.purple.buttons .active.button,.ui.inverted.purple.active.button{background-color:#d65aff}.ui.inverted.purple.buttons .button:active,.ui.inverted.purple.button:active{background-color:#cf40ff}.ui.inverted.purple.basic.buttons .button,.ui.inverted.purple.buttons .basic.button,.ui.inverted.purple.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.purple.basic.buttons .button:hover,.ui.inverted.purple.buttons .basic.button:hover,.ui.inverted.purple.basic.button:hover{box-shadow:0px 0px 0px 2px #d65aff inset !important;color:#dc73ff !important}.ui.inverted.purple.basic.buttons .button:focus,.ui.inverted.purple.basic.buttons .button:focus,.ui.inverted.purple.basic.button:focus{box-shadow:0px 0px 0px 2px #d24aff inset !important;color:#dc73ff !important}.ui.inverted.purple.basic.buttons .active.button,.ui.inverted.purple.buttons .basic.active.button,.ui.inverted.purple.basic.active.button{box-shadow:0px 0px 0px 2px #d65aff inset !important;color:#dc73ff !important}.ui.inverted.purple.basic.buttons .button:active,.ui.inverted.purple.buttons .basic.button:active,.ui.inverted.purple.basic.button:active{box-shadow:0px 0px 0px 2px #cf40ff inset !important;color:#dc73ff !important}.ui.red.buttons .button,.ui.red.button{background-color:#db2828;color:#fff;text-shadow:none;background-image:none}.ui.red.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.red.buttons .button:hover,.ui.red.button:hover{background-color:#d41616;color:#fff;text-shadow:none}.ui.red.buttons .button:focus,.ui.red.button:focus{background-color:#d10909;color:#fff;text-shadow:none}.ui.red.buttons .button:active,.ui.red.button:active{background-color:#b21e1e;color:#fff;text-shadow:none}.ui.red.buttons .active.button,.ui.red.buttons .active.button:active,.ui.red.active.button,.ui.red.button .active.button:active{background-color:#da1010;color:#fff;text-shadow:none}.ui.basic.red.buttons .button,.ui.basic.red.button{box-shadow:0px 0px 0px 1px #db2828 inset !important;color:#db2828 !important}.ui.basic.red.buttons .button:hover,.ui.basic.red.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #d41616 inset !important;color:#d41616 !important}.ui.basic.red.buttons .button:focus,.ui.basic.red.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #d10909 inset !important;color:#d41616 !important}.ui.basic.red.buttons .active.button,.ui.basic.red.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #da1010 inset !important;color:#b21e1e !important}.ui.basic.red.buttons .button:active,.ui.basic.red.button:active{box-shadow:0px 0px 0px 1px #b21e1e inset !important;color:#b21e1e !important}.ui.buttons:not(.vertical)>.basic.red.button:not(:first-child){margin-left:-1px}.ui.inverted.red.buttons .button,.ui.inverted.red.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #ff695e inset !important;color:#ff695e}.ui.inverted.red.buttons .button:hover,.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button:focus,.ui.inverted.red.button:focus,.ui.inverted.red.buttons .button.active,.ui.inverted.red.button.active,.ui.inverted.red.buttons .button:active,.ui.inverted.red.button:active{box-shadow:none !important;color:#fff}.ui.inverted.red.buttons .button:hover,.ui.inverted.red.button:hover{background-color:#ff5145}.ui.inverted.red.buttons .button:focus,.ui.inverted.red.button:focus{background-color:#ff4335}.ui.inverted.red.buttons .active.button,.ui.inverted.red.active.button{background-color:#ff5145}.ui.inverted.red.buttons .button:active,.ui.inverted.red.button:active{background-color:#ff392b}.ui.inverted.red.basic.buttons .button,.ui.inverted.red.buttons .basic.button,.ui.inverted.red.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.red.basic.buttons .button:hover,.ui.inverted.red.buttons .basic.button:hover,.ui.inverted.red.basic.button:hover{box-shadow:0px 0px 0px 2px #ff5145 inset !important;color:#ff695e !important}.ui.inverted.red.basic.buttons .button:focus,.ui.inverted.red.basic.buttons .button:focus,.ui.inverted.red.basic.button:focus{box-shadow:0px 0px 0px 2px #ff4335 inset !important;color:#ff695e !important}.ui.inverted.red.basic.buttons .active.button,.ui.inverted.red.buttons .basic.active.button,.ui.inverted.red.basic.active.button{box-shadow:0px 0px 0px 2px #ff5145 inset !important;color:#ff695e !important}.ui.inverted.red.basic.buttons .button:active,.ui.inverted.red.buttons .basic.button:active,.ui.inverted.red.basic.button:active{box-shadow:0px 0px 0px 2px #ff392b inset !important;color:#ff695e !important}.ui.teal.buttons .button,.ui.teal.button{background-color:#00b5ad;color:#fff;text-shadow:none;background-image:none}.ui.teal.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.teal.buttons .button:hover,.ui.teal.button:hover{background-color:#009c95;color:#fff;text-shadow:none}.ui.teal.buttons .button:focus,.ui.teal.button:focus{background-color:#008c86;color:#fff;text-shadow:none}.ui.teal.buttons .button:active,.ui.teal.button:active{background-color:#00827c;color:#fff;text-shadow:none}.ui.teal.buttons .active.button,.ui.teal.buttons .active.button:active,.ui.teal.active.button,.ui.teal.button .active.button:active{background-color:#009c95;color:#fff;text-shadow:none}.ui.basic.teal.buttons .button,.ui.basic.teal.button{box-shadow:0px 0px 0px 1px #00b5ad inset !important;color:#00b5ad !important}.ui.basic.teal.buttons .button:hover,.ui.basic.teal.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #009c95 inset !important;color:#009c95 !important}.ui.basic.teal.buttons .button:focus,.ui.basic.teal.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #008c86 inset !important;color:#009c95 !important}.ui.basic.teal.buttons .active.button,.ui.basic.teal.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #009c95 inset !important;color:#00827c !important}.ui.basic.teal.buttons .button:active,.ui.basic.teal.button:active{box-shadow:0px 0px 0px 1px #00827c inset !important;color:#00827c !important}.ui.buttons:not(.vertical)>.basic.teal.button:not(:first-child){margin-left:-1px}.ui.inverted.teal.buttons .button,.ui.inverted.teal.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #6dffff inset !important;color:#6dffff}.ui.inverted.teal.buttons .button:hover,.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button:focus,.ui.inverted.teal.button:focus,.ui.inverted.teal.buttons .button.active,.ui.inverted.teal.button.active,.ui.inverted.teal.buttons .button:active,.ui.inverted.teal.button:active{box-shadow:none !important;color:rgba(0,0,0,.6)}.ui.inverted.teal.buttons .button:hover,.ui.inverted.teal.button:hover{background-color:#54ffff}.ui.inverted.teal.buttons .button:focus,.ui.inverted.teal.button:focus{background-color:#4ff}.ui.inverted.teal.buttons .active.button,.ui.inverted.teal.active.button{background-color:#54ffff}.ui.inverted.teal.buttons .button:active,.ui.inverted.teal.button:active{background-color:#3affff}.ui.inverted.teal.basic.buttons .button,.ui.inverted.teal.buttons .basic.button,.ui.inverted.teal.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.teal.basic.buttons .button:hover,.ui.inverted.teal.buttons .basic.button:hover,.ui.inverted.teal.basic.button:hover{box-shadow:0px 0px 0px 2px #54ffff inset !important;color:#6dffff !important}.ui.inverted.teal.basic.buttons .button:focus,.ui.inverted.teal.basic.buttons .button:focus,.ui.inverted.teal.basic.button:focus{box-shadow:0px 0px 0px 2px #4ff inset !important;color:#6dffff !important}.ui.inverted.teal.basic.buttons .active.button,.ui.inverted.teal.buttons .basic.active.button,.ui.inverted.teal.basic.active.button{box-shadow:0px 0px 0px 2px #54ffff inset !important;color:#6dffff !important}.ui.inverted.teal.basic.buttons .button:active,.ui.inverted.teal.buttons .basic.button:active,.ui.inverted.teal.basic.button:active{box-shadow:0px 0px 0px 2px #3affff inset !important;color:#6dffff !important}.ui.olive.buttons .button,.ui.olive.button{background-color:#b5cc18;color:#fff;text-shadow:none;background-image:none}.ui.olive.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.olive.buttons .button:hover,.ui.olive.button:hover{background-color:#a8bf0b;color:#fff;text-shadow:none}.ui.olive.buttons .button:focus,.ui.olive.button:focus{background-color:#a3ba01;color:#fff;text-shadow:none}.ui.olive.buttons .button:active,.ui.olive.button:active{background-color:#8d9e13;color:#fff;text-shadow:none}.ui.olive.buttons .active.button,.ui.olive.buttons .active.button:active,.ui.olive.active.button,.ui.olive.button .active.button:active{background-color:#acc406;color:#fff;text-shadow:none}.ui.basic.olive.buttons .button,.ui.basic.olive.button{box-shadow:0px 0px 0px 1px #b5cc18 inset !important;color:#b5cc18 !important}.ui.basic.olive.buttons .button:hover,.ui.basic.olive.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #a8bf0b inset !important;color:#a8bf0b !important}.ui.basic.olive.buttons .button:focus,.ui.basic.olive.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #a3ba01 inset !important;color:#a8bf0b !important}.ui.basic.olive.buttons .active.button,.ui.basic.olive.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #acc406 inset !important;color:#8d9e13 !important}.ui.basic.olive.buttons .button:active,.ui.basic.olive.button:active{box-shadow:0px 0px 0px 1px #8d9e13 inset !important;color:#8d9e13 !important}.ui.buttons:not(.vertical)>.basic.olive.button:not(:first-child){margin-left:-1px}.ui.inverted.olive.buttons .button,.ui.inverted.olive.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #d9e778 inset !important;color:#d9e778}.ui.inverted.olive.buttons .button:hover,.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button:focus,.ui.inverted.olive.button:focus,.ui.inverted.olive.buttons .button.active,.ui.inverted.olive.button.active,.ui.inverted.olive.buttons .button:active,.ui.inverted.olive.button:active{box-shadow:none !important;color:rgba(0,0,0,.6)}.ui.inverted.olive.buttons .button:hover,.ui.inverted.olive.button:hover{background-color:#daec59}.ui.inverted.olive.buttons .button:focus,.ui.inverted.olive.button:focus{background-color:#def541}.ui.inverted.olive.buttons .active.button,.ui.inverted.olive.active.button{background-color:#ddf155}.ui.inverted.olive.buttons .button:active,.ui.inverted.olive.button:active{background-color:#cddf4d}.ui.inverted.olive.basic.buttons .button,.ui.inverted.olive.buttons .basic.button,.ui.inverted.olive.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.olive.basic.buttons .button:hover,.ui.inverted.olive.buttons .basic.button:hover,.ui.inverted.olive.basic.button:hover{box-shadow:0px 0px 0px 2px #daec59 inset !important;color:#d9e778 !important}.ui.inverted.olive.basic.buttons .button:focus,.ui.inverted.olive.basic.buttons .button:focus,.ui.inverted.olive.basic.button:focus{box-shadow:0px 0px 0px 2px #def541 inset !important;color:#d9e778 !important}.ui.inverted.olive.basic.buttons .active.button,.ui.inverted.olive.buttons .basic.active.button,.ui.inverted.olive.basic.active.button{box-shadow:0px 0px 0px 2px #ddf155 inset !important;color:#d9e778 !important}.ui.inverted.olive.basic.buttons .button:active,.ui.inverted.olive.buttons .basic.button:active,.ui.inverted.olive.basic.button:active{box-shadow:0px 0px 0px 2px #cddf4d inset !important;color:#d9e778 !important}.ui.mustard.buttons .button,.ui.mustard.button{background-color:#d7b236;color:#fff;text-shadow:none;background-image:none}.ui.mustard.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.mustard.buttons .button:hover,.ui.mustard.button:hover{background-color:#d7ac1c;color:#fff;text-shadow:none}.ui.mustard.buttons .button:focus,.ui.mustard.button:focus{background-color:#d5a80f;color:#fff;text-shadow:none}.ui.mustard.buttons .button:active,.ui.mustard.button:active{background-color:#b69424;color:#fff;text-shadow:none}.ui.mustard.buttons .active.button,.ui.mustard.buttons .active.button:active,.ui.mustard.active.button,.ui.mustard.button .active.button:active{background-color:#ddb016;color:#fff;text-shadow:none}.ui.basic.mustard.buttons .button,.ui.basic.mustard.button{box-shadow:0px 0px 0px 1px #d7b236 inset !important;color:#d7b236 !important}.ui.basic.mustard.buttons .button:hover,.ui.basic.mustard.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #d7ac1c inset !important;color:#d7ac1c !important}.ui.basic.mustard.buttons .button:focus,.ui.basic.mustard.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #d5a80f inset !important;color:#d7ac1c !important}.ui.basic.mustard.buttons .active.button,.ui.basic.mustard.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #d5a80f inset !important;color:#b69424 !important}.ui.basic.mustard.buttons .button:active,.ui.basic.mustard.button:active{box-shadow:0px 0px 0px 1px #b69424 inset !important;color:#b69424 !important}.ui.buttons:not(.vertical)>.basic.mustard.button:not(:first-child){margin-left:-1px}.ui.inverted.mustard.buttons .button,.ui.inverted.mustard.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #d7b236 inset !important;color:#d7b236}.ui.inverted.mustard.buttons .button:hover,.ui.inverted.mustard.button:hover,.ui.inverted.mustard.buttons .button:focus,.ui.inverted.mustard.button:focus,.ui.inverted.mustard.buttons .button.active,.ui.inverted.mustard.button.active,.ui.inverted.mustard.buttons .button:active,.ui.inverted.mustard.button:active{box-shadow:none !important;color:#fff}.ui.inverted.mustard.buttons .button:hover,.ui.inverted.mustard.button:hover{background-color:#d7ac1c}.ui.inverted.mustard.buttons .button:focus,.ui.inverted.mustard.button:focus{background-color:#d5a80f}.ui.inverted.mustard.buttons .active.button,.ui.inverted.mustard.active.button{background-color:#ddb016}.ui.inverted.mustard.buttons .button:active,.ui.inverted.mustard.button:active{background-color:#b69424}.ui.inverted.mustard.basic.buttons .button,.ui.inverted.mustard.buttons .basic.button,.ui.inverted.mustard.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.mustard.basic.buttons .button:hover,.ui.inverted.mustard.buttons .basic.button:hover,.ui.inverted.mustard.basic.button:hover{box-shadow:0px 0px 0px 2px #d7ac1c inset !important;color:#ffe21f !important}.ui.inverted.mustard.basic.buttons .button:focus,.ui.inverted.mustard.basic.buttons .button:focus,.ui.inverted.mustard.basic.button:focus{box-shadow:0px 0px 0px 2px #d5a80f inset !important;color:#ffe21f !important}.ui.inverted.mustard.basic.buttons .active.button,.ui.inverted.mustard.buttons .basic.active.button,.ui.inverted.mustard.basic.active.button{box-shadow:0px 0px 0px 2px #ddb016 inset !important;color:#ffe21f !important}.ui.inverted.mustard.basic.buttons .button:active,.ui.inverted.mustard.buttons .basic.button:active,.ui.inverted.mustard.basic.button:active{box-shadow:0px 0px 0px 2px #b69424 inset !important;color:#ffe21f !important}.ui.primary.buttons .button,.ui.primary.button{background-color:#2185d0;color:#fff;text-shadow:none;background-image:none}.ui.primary.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.primary.buttons .button:hover,.ui.primary.button:hover{background-color:#1378c5;color:#fff;text-shadow:none}.ui.primary.buttons .button:focus,.ui.primary.button:focus{background-color:#0771c1;color:#fff;text-shadow:none}.ui.primary.buttons .button:active,.ui.primary.button:active{background-color:#1a69a4;color:#fff;text-shadow:none}.ui.primary.buttons .active.button,.ui.primary.buttons .active.button:active,.ui.primary.active.button,.ui.primary.button .active.button:active{background-color:#0d79ca;color:#fff;text-shadow:none}.ui.basic.primary.buttons .button,.ui.basic.primary.button{box-shadow:0px 0px 0px 1px #2185d0 inset !important;color:#2185d0 !important}.ui.basic.primary.buttons .button:hover,.ui.basic.primary.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #1378c5 inset !important;color:#1378c5 !important}.ui.basic.primary.buttons .button:focus,.ui.basic.primary.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #0771c1 inset !important;color:#1378c5 !important}.ui.basic.primary.buttons .active.button,.ui.basic.primary.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #0d79ca inset !important;color:#1a69a4 !important}.ui.basic.primary.buttons .button:active,.ui.basic.primary.button:active{box-shadow:0px 0px 0px 1px #1a69a4 inset !important;color:#1a69a4 !important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.inverted.primary.buttons .button,.ui.inverted.primary.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #54c8ff inset !important;color:#54c8ff}.ui.inverted.primary.buttons .button:hover,.ui.inverted.primary.button:hover,.ui.inverted.primary.buttons .button:focus,.ui.inverted.primary.button:focus,.ui.inverted.primary.buttons .button.active,.ui.inverted.primary.button.active,.ui.inverted.primary.buttons .button:active,.ui.inverted.primary.button:active{box-shadow:none !important;color:#fff}.ui.inverted.primary.buttons .button:hover,.ui.inverted.primary.button:hover{background-color:#3bc0ff}.ui.inverted.primary.buttons .button:focus,.ui.inverted.primary.button:focus{background-color:#2bbbff}.ui.inverted.primary.buttons .active.button,.ui.inverted.primary.active.button{background-color:#3bc0ff}.ui.inverted.primary.buttons .button:active,.ui.inverted.primary.button:active{background-color:#21b8ff}.ui.inverted.primary.basic.buttons .button,.ui.inverted.primary.buttons .basic.button,.ui.inverted.primary.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.primary.basic.buttons .button:hover,.ui.inverted.primary.buttons .basic.button:hover,.ui.inverted.primary.basic.button:hover{box-shadow:0px 0px 0px 2px #3bc0ff inset !important;color:#54c8ff !important}.ui.inverted.primary.basic.buttons .button:focus,.ui.inverted.primary.basic.buttons .button:focus,.ui.inverted.primary.basic.button:focus{box-shadow:0px 0px 0px 2px #2bbbff inset !important;color:#54c8ff !important}.ui.inverted.primary.basic.buttons .active.button,.ui.inverted.primary.buttons .basic.active.button,.ui.inverted.primary.basic.active.button{box-shadow:0px 0px 0px 2px #3bc0ff inset !important;color:#54c8ff !important}.ui.inverted.primary.basic.buttons .button:active,.ui.inverted.primary.buttons .basic.button:active,.ui.inverted.primary.basic.button:active{box-shadow:0px 0px 0px 2px #21b8ff inset !important;color:#54c8ff !important}.ui.secondary.buttons .button,.ui.secondary.button{background-color:#1b1c1d;color:#fff;text-shadow:none;background-image:none}.ui.secondary.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.secondary.buttons .button:hover,.ui.secondary.button:hover{background-color:#23292e;color:#fff;text-shadow:none}.ui.secondary.buttons .button:focus,.ui.secondary.button:focus{background-color:#25303c;color:#fff;text-shadow:none}.ui.secondary.buttons .button:active,.ui.secondary.button:active{background-color:#343637;color:#fff;text-shadow:none}.ui.secondary.buttons .active.button,.ui.secondary.buttons .active.button:active,.ui.secondary.active.button,.ui.secondary.button .active.button:active{background-color:#212930;color:#fff;text-shadow:none}.ui.basic.secondary.buttons .button,.ui.basic.secondary.button{box-shadow:0px 0px 0px 1px #1b1c1d inset !important;color:#1b1c1d !important}.ui.basic.secondary.buttons .button:hover,.ui.basic.secondary.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #23292e inset !important;color:#23292e !important}.ui.basic.secondary.buttons .button:focus,.ui.basic.secondary.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #25303c inset !important;color:#23292e !important}.ui.basic.secondary.buttons .active.button,.ui.basic.secondary.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #212930 inset !important;color:#343637 !important}.ui.basic.secondary.buttons .button:active,.ui.basic.secondary.button:active{box-shadow:0px 0px 0px 1px #343637 inset !important;color:#343637 !important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.inverted.secondary.buttons .button,.ui.inverted.secondary.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px #545454 inset !important;color:#545454}.ui.inverted.secondary.buttons .button:hover,.ui.inverted.secondary.button:hover,.ui.inverted.secondary.buttons .button:focus,.ui.inverted.secondary.button:focus,.ui.inverted.secondary.buttons .button.active,.ui.inverted.secondary.button.active,.ui.inverted.secondary.buttons .button:active,.ui.inverted.secondary.button:active{box-shadow:none !important;color:#fff}.ui.inverted.secondary.buttons .button:hover,.ui.inverted.secondary.button:hover{background-color:#6a5757}.ui.inverted.secondary.buttons .button:focus,.ui.inverted.secondary.button:focus{background-color:#7d5454}.ui.inverted.secondary.buttons .active.button,.ui.inverted.secondary.active.button{background-color:#6f5252}.ui.inverted.secondary.buttons .button:active,.ui.inverted.secondary.button:active{background-color:#6e6e6e}.ui.inverted.secondary.basic.buttons .button,.ui.inverted.secondary.buttons .basic.button,.ui.inverted.secondary.basic.button{background-color:rgba(0,0,0,0);box-shadow:0px 0px 0px 2px rgba(255,255,255,.5) inset !important;color:#fff !important}.ui.inverted.secondary.basic.buttons .button:hover,.ui.inverted.secondary.buttons .basic.button:hover,.ui.inverted.secondary.basic.button:hover{box-shadow:0px 0px 0px 2px #6a5757 inset !important;color:#545454 !important}.ui.inverted.secondary.basic.buttons .button:focus,.ui.inverted.secondary.basic.buttons .button:focus,.ui.inverted.secondary.basic.button:focus{box-shadow:0px 0px 0px 2px #7d5454 inset !important;color:#545454 !important}.ui.inverted.secondary.basic.buttons .active.button,.ui.inverted.secondary.buttons .basic.active.button,.ui.inverted.secondary.basic.active.button{box-shadow:0px 0px 0px 2px #6f5252 inset !important;color:#545454 !important}.ui.inverted.secondary.basic.buttons .button:active,.ui.inverted.secondary.buttons .basic.button:active,.ui.inverted.secondary.basic.button:active{box-shadow:0px 0px 0px 2px #6e6e6e inset !important;color:#545454 !important}.ui.positive.buttons .button,.ui.positive.button{background-color:#21ba45;color:#fff;text-shadow:none;background-image:none}.ui.positive.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.positive.buttons .button:hover,.ui.positive.button:hover{background-color:#13ae38;color:#fff;text-shadow:none}.ui.positive.buttons .button:focus,.ui.positive.button:focus{background-color:#09a92f;color:#fff;text-shadow:none}.ui.positive.buttons .button:active,.ui.positive.button:active{background-color:#198f35;color:#fff;text-shadow:none}.ui.positive.buttons .active.button,.ui.positive.buttons .active.button:active,.ui.positive.active.button,.ui.positive.button .active.button:active{background-color:#0fb335;color:#fff;text-shadow:none}.ui.basic.positive.buttons .button,.ui.basic.positive.button{box-shadow:0px 0px 0px 1px #21ba45 inset !important;color:#21ba45 !important}.ui.basic.positive.buttons .button:hover,.ui.basic.positive.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #13ae38 inset !important;color:#13ae38 !important}.ui.basic.positive.buttons .button:focus,.ui.basic.positive.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #09a92f inset !important;color:#13ae38 !important}.ui.basic.positive.buttons .active.button,.ui.basic.positive.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #0fb335 inset !important;color:#198f35 !important}.ui.basic.positive.buttons .button:active,.ui.basic.positive.button:active{box-shadow:0px 0px 0px 1px #198f35 inset !important;color:#198f35 !important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.negative.buttons .button,.ui.negative.button{background-color:#db2828;color:#fff;text-shadow:none;background-image:none}.ui.negative.button{box-shadow:0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.negative.buttons .button:hover,.ui.negative.button:hover{background-color:#d41616;color:#fff;text-shadow:none}.ui.negative.buttons .button:focus,.ui.negative.button:focus{background-color:#d10909;color:#fff;text-shadow:none}.ui.negative.buttons .button:active,.ui.negative.button:active{background-color:#b21e1e;color:#fff;text-shadow:none}.ui.negative.buttons .active.button,.ui.negative.buttons .active.button:active,.ui.negative.active.button,.ui.negative.button .active.button:active{background-color:#da1010;color:#fff;text-shadow:none}.ui.basic.negative.buttons .button,.ui.basic.negative.button{box-shadow:0px 0px 0px 1px #db2828 inset !important;color:#db2828 !important}.ui.basic.negative.buttons .button:hover,.ui.basic.negative.button:hover{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #d41616 inset !important;color:#d41616 !important}.ui.basic.negative.buttons .button:focus,.ui.basic.negative.button:focus{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #d10909 inset !important;color:#d41616 !important}.ui.basic.negative.buttons .active.button,.ui.basic.negative.active.button{background:rgba(0,0,0,0) !important;box-shadow:0px 0px 0px 1px #da1010 inset !important;color:#b21e1e !important}.ui.basic.negative.buttons .button:active,.ui.basic.negative.button:active{box-shadow:0px 0px 0px 1px #b21e1e inset !important;color:#b21e1e !important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.buttons{display:inline-flex;flex-direction:row;font-size:0em;vertical-align:baseline;margin:0em .25em 0em 0em}.ui.buttons:not(.basic):not(.inverted){box-shadow:none}.ui.buttons:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.buttons .button{flex:1 0 auto;margin:0em;border-radius:0em;margin:0px 0px 0px 0px}.ui.buttons>.ui.button:not(.basic):not(.inverted),.ui.buttons:not(.basic):not(.inverted)>.button{box-shadow:0px 0px 0px 1px rgba(0,0,0,0) inset,0px 0em 0px 0px rgba(34,36,38,.15) inset}.ui.buttons .button:first-child{border-left:none;margin-left:0em;border-top-left-radius:3px;border-bottom-left-radius:3px}.ui.buttons .button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.ui.vertical.buttons{display:inline-flex;flex-direction:column}.ui.vertical.buttons .button{display:block;float:none;width:100%;margin:0px 0px 0px 0px;box-shadow:none;border-radius:0em}.ui.vertical.buttons .button:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.ui.vertical.buttons .button:last-child{margin-bottom:0px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.ui.vertical.buttons .button:only-child{border-radius:3px}/*! + * # Semantic UI - Checkbox + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */@font-face{font-family:"Checkbox";src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype")}.ui.checkbox{position:relative;display:inline-block;backface-visibility:hidden;outline:none;vertical-align:baseline;font-style:normal;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}.ui.checkbox input[type=checkbox],.ui.checkbox input[type=radio]{cursor:pointer;position:absolute;top:0px;left:0px;opacity:0 !important;outline:none;z-index:3;width:17px;height:17px}.ui.checkbox .box,.ui.checkbox label{cursor:auto;position:relative;display:block;padding-left:1.85714em;outline:none;font-size:1rem}.ui.checkbox .box:before,.ui.checkbox label:before{position:absolute;top:0px;left:0px;width:17px;height:17px;content:"";background:#fff;border-radius:.2142857143rem;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;border:1px solid #d4d4d5}.ui.checkbox .box:after,.ui.checkbox label:after{position:absolute;font-size:14px;top:0px;left:0px;width:17px;height:17px;text-align:center;opacity:0;color:#2a2a2a;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;font-family:"Checkbox"}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{content:""}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{font-size:12px;content:""}.ui.checkbox label,.ui.checkbox+label{color:#2a2a2a;transition:color .1s ease}.ui.checkbox+label{vertical-align:middle}.ui.checkbox .box:hover::before,.ui.checkbox label:hover::before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox label:hover,.ui.checkbox+label:hover{color:rgba(0,0,0,.8)}.ui.checkbox .box:active::before,.ui.checkbox label:active::before{background:#f9fafb;border-color:rgba(34,36,38,.35)}.ui.checkbox .box:active::after,.ui.checkbox label:active::after{color:rgba(0,0,0,.95)}.ui.checkbox input:active~label{color:rgba(0,0,0,.95)}.ui.checkbox input:focus~.box:before,.ui.checkbox input:focus~label:before{background:#fff;border-color:#96c8da}.ui.checkbox input:focus~.box:after,.ui.checkbox input:focus~label:after{color:rgba(0,0,0,.95)}.ui.checkbox input:focus~label{color:rgba(0,0,0,.95)}.ui.checkbox input:checked~.box:before,.ui.checkbox input:checked~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input:not([type=radio]):indeterminate~.box:before,.ui.checkbox input:not([type=radio]):indeterminate~label:before{background:#fff;border-color:rgba(34,36,38,.35)}.ui.checkbox input:not([type=radio]):indeterminate~.box:after,.ui.checkbox input:not([type=radio]):indeterminate~label:after{opacity:1;color:rgba(0,0,0,.95)}.ui.checkbox input:not([type=radio]):indeterminate:focus~.box:before,.ui.checkbox input:not([type=radio]):indeterminate:focus~label:before,.ui.checkbox input:checked:focus~.box:before,.ui.checkbox input:checked:focus~label:before{background:#fff;border-color:#96c8da}.ui.checkbox input:not([type=radio]):indeterminate:focus~.box:after,.ui.checkbox input:not([type=radio]):indeterminate:focus~label:after,.ui.checkbox input:checked:focus~.box:after,.ui.checkbox input:checked:focus~label:after{color:rgba(0,0,0,.95)}.ui.read-only.checkbox,.ui.read-only.checkbox label{cursor:default}.ui.disabled.checkbox .box:after,.ui.disabled.checkbox label,.ui.checkbox input[disabled]~.box:after,.ui.checkbox input[disabled]~label{cursor:default !important;opacity:.5;color:#000}.ui.checkbox input.hidden{z-index:-1}.ui.checkbox input.hidden+label{cursor:pointer;user-select:none}.ui.radio.checkbox{min-height:15px}.ui.radio.checkbox .box,.ui.radio.checkbox label{padding-left:1.85714em}.ui.radio.checkbox .box:before,.ui.radio.checkbox label:before{content:"";transform:none;width:15px;height:15px;border-radius:500rem;top:1px;left:0px}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{border:none;content:"" !important;width:15px;height:15px;line-height:15px}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{top:1px;left:0px;width:15px;height:15px;border-radius:500rem;transform:scale(0.4666666667);background-color:#2a2a2a}.ui.radio.checkbox input:focus~.box:before,.ui.radio.checkbox input:focus~label:before{background-color:#fff}.ui.radio.checkbox input:focus~.box:after,.ui.radio.checkbox input:focus~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:indeterminate~.box:after,.ui.radio.checkbox input:indeterminate~label:after{opacity:0}.ui.radio.checkbox input:checked~.box:before,.ui.radio.checkbox input:checked~label:before{background-color:#fff}.ui.radio.checkbox input:checked~.box:after,.ui.radio.checkbox input:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.radio.checkbox input:focus:checked~.box:before,.ui.radio.checkbox input:focus:checked~label:before{background-color:#fff}.ui.radio.checkbox input:focus:checked~.box:after,.ui.radio.checkbox input:focus:checked~label:after{background-color:rgba(0,0,0,.95)}.ui.slider.checkbox{min-height:1.25rem}.ui.slider.checkbox input{width:3.5rem;height:1.25rem}.ui.slider.checkbox .box,.ui.slider.checkbox label{padding-left:4.5rem;line-height:1rem;color:rgba(0,0,0,.4)}.ui.slider.checkbox .box:before,.ui.slider.checkbox label:before{display:block;position:absolute;content:"";transform:none;border:none !important;left:0em;z-index:1;top:.4rem;background-color:rgba(0,0,0,.05);width:3.5rem;height:.2142857143rem;transform:none;border-radius:500rem;transition:background .3s ease}.ui.slider.checkbox .box:after,.ui.slider.checkbox label:after{background:#fff linear-gradient(transparent, rgba(0, 0, 0, 0.05));position:absolute;content:"" !important;opacity:1;z-index:2;border:none;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15),0px 0px 0px 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:-0.25rem;left:0em;transform:none;border-radius:500rem;transition:left .3s ease}.ui.slider.checkbox input:focus~.box:before,.ui.slider.checkbox input:focus~label:before{background-color:rgba(0,0,0,.15);border:none}.ui.slider.checkbox .box:hover,.ui.slider.checkbox label:hover{color:rgba(0,0,0,.8)}.ui.slider.checkbox .box:hover::before,.ui.slider.checkbox label:hover::before{background:rgba(0,0,0,.15)}.ui.slider.checkbox input:checked~.box,.ui.slider.checkbox input:checked~label{color:rgba(0,0,0,.95) !important}.ui.slider.checkbox input:checked~.box:before,.ui.slider.checkbox input:checked~label:before{background-color:#545454 !important}.ui.slider.checkbox input:checked~.box:after,.ui.slider.checkbox input:checked~label:after{left:2rem}.ui.slider.checkbox input:focus:checked~.box,.ui.slider.checkbox input:focus:checked~label{color:rgba(0,0,0,.95) !important}.ui.slider.checkbox input:focus:checked~.box:before,.ui.slider.checkbox input:focus:checked~label:before{background-color:#000 !important}.ui.toggle.checkbox{min-height:1.5rem}.ui.toggle.checkbox input{width:3.5rem;height:1.5rem}.ui.toggle.checkbox .box,.ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem;color:#2a2a2a}.ui.toggle.checkbox label{padding-top:.15em}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{display:block;position:absolute;content:"";z-index:1;transform:none;border:none;top:0rem;background:rgba(0,0,0,.05);box-shadow:none;width:3.5rem;height:1.5rem;border-radius:500rem}.ui.toggle.checkbox .box:after,.ui.toggle.checkbox label:after{background:#fff linear-gradient(transparent, rgba(0, 0, 0, 0.05));position:absolute;content:"" !important;opacity:1;z-index:2;border:none;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15),0px 0px 0px 1px rgba(34,36,38,.15) inset;width:1.5rem;height:1.5rem;top:0rem;left:0em;border-radius:500rem;transition:background .3s ease,left .3s ease}.ui.toggle.checkbox input~.box:after,.ui.toggle.checkbox input~label:after{left:-0.05rem;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15),0px 0px 0px 1px rgba(34,36,38,.15) inset}.ui.toggle.checkbox input:focus~.box:before,.ui.toggle.checkbox input:focus~label:before{background-color:rgba(0,0,0,.15);border:none}.ui.toggle.checkbox .box:hover::before,.ui.toggle.checkbox label:hover::before{background-color:rgba(0,0,0,.15);border:none}.ui.toggle.checkbox input:checked~.box,.ui.toggle.checkbox input:checked~label{color:rgba(0,0,0,.95) !important}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before{background-color:#2185d0 !important}.ui.toggle.checkbox input:checked~.box:after,.ui.toggle.checkbox input:checked~label:after{left:2.15rem;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15),0px 0px 0px 1px rgba(34,36,38,.15) inset}.ui.toggle.checkbox input:focus:checked~.box,.ui.toggle.checkbox input:focus:checked~label{color:rgba(0,0,0,.95) !important}.ui.toggle.checkbox input:focus:checked~.box:before,.ui.toggle.checkbox input:focus:checked~label:before{background-color:#0771c1 !important}.ui.fitted.checkbox .box,.ui.fitted.checkbox label{padding-left:0em !important}.ui.fitted.toggle.checkbox,.ui.fitted.toggle.checkbox{width:3.5rem}.ui.fitted.slider.checkbox,.ui.fitted.slider.checkbox{width:3.5rem}/*! + * # Semantic UI - Container + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.container,.wp-block-group__inner-container{display:block;max-width:100% !important}.ui.container.large,.wp-block-group__inner-container.large{max-width:1168px !important}.ui.container.fluid,.wp-block-group__inner-container.fluid{width:100%}@media only screen and (max-width: 767px){.ui.container,.wp-block-group__inner-container{width:auto !important;margin-left:1em !important;margin-right:1em !important}}@media only screen and (min-width: 768px)and (max-width: 991px){.ui.container,.wp-block-group__inner-container{width:723px;margin-left:auto !important;margin-right:auto !important}}@media only screen and (min-width: 992px){.ui.container,.wp-block-group__inner-container{width:1168px;margin-left:auto !important;margin-right:auto !important}}@media only screen and (min-width: 992px){.ui.container{padding-left:1em;padding-right:1em}}.ui.text.container{width:100% !important;max-width:640px !important;margin-left:auto !important;margin-right:auto !important;padding-left:0;padding-right:0}@media only screen and (min-width: 992px){.ui.text.container:not(.centered){margin-left:0 !important;margin-right:0 !important}}.ui[class*="left aligned"].container{text-align:left}.ui[class*="center aligned"].container{text-align:center}.ui[class*="right aligned"].container{text-align:right}.ui.justified.container{text-align:justify;hyphens:auto}/*! + * # Semantic UI - Dimmer + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.dimmable:not(body){position:relative}.ui.dimmer{display:none;position:absolute;top:0em !important;left:0em !important;width:100%;height:100%;text-align:center;vertical-align:middle;padding:1em;background-color:rgba(0,0,0,.85);opacity:0;line-height:1;animation-fill-mode:both;animation-duration:.5s;transition:background-color .5s linear;flex-direction:column;align-items:center;justify-content:center;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{user-select:text;color:#fff}.ui.segment>.ui.dimmer{border-radius:inherit !important}.ui.dimmer:not(.inverted)::-webkit-scrollbar-track{background:rgba(255,255,255,.1)}.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb{background:rgba(255,255,255,.25)}.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive{background:rgba(255,255,255,.15)}.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.35)}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:flex;opacity:1}.ui.disabled.dimmer{width:0 !important;height:0 !important}.dimmed.dimmable>.ui.animating.legacy.dimmer,.dimmed.dimmable>.ui.visible.legacy.dimmer,.ui.active.legacy.dimmer{display:block}.ui[class*="top aligned"].dimmer{justify-content:flex-start}.ui[class*="bottom aligned"].dimmer{justify-content:flex-end}.ui.page.dimmer{position:fixed;transform-style:"";perspective:2000px;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.blurring.dimmable>:not(.dimmer){filter:blur(0px) grayscale(0);transition:800ms filter ease}.blurring.dimmed.dimmable>:not(.dimmer){filter:blur(5px) grayscale(0.7)}.blurring.dimmable>.dimmer{background-color:rgba(0,0,0,.6)}.blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,.6)}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0%;height:0%;z-index:-100;background-color:rgba(0,0,0,0)}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,.85)}/*! + * # Semantic UI - Divider + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.divider{margin:1rem 0rem;line-height:1;height:0em;font-size:1rem;font-weight:bold;text-transform:uppercase;letter-spacing:.05em;color:rgba(0,0,0,.85);user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ui.divider:not(.vertical):not(.horizontal):not(.is-style-wide):not(.is-style-dots):not(.dotted){border-top:1px solid rgba(34,36,38,.15);border-bottom:1px solid rgba(255,255,255,.1);max-width:100%}.ui.divider.horizontal{display:table;white-space:nowrap;height:auto;margin:"";line-height:1;text-align:center}.ui.divider.horizontal:before,.ui.divider.horizontal:after{content:"";display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}.ui.divider.horizontal:before{background-position:right 1em top 50%}.ui.divider.horizontal:after{background-position:left 1em top 50%}.ui.divider.vertical{position:absolute;z-index:2;top:50%;left:50%;margin:0rem;padding:0em;width:auto;height:50%;line-height:0em;text-align:center;transform:translateX(-50%)}.ui.divider.vertical:before,.ui.divider.vertical:after{position:absolute;left:50%;content:"";z-index:3;border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(255,255,255,.1);width:0%}.ui.divider.vertical:before{top:-100%}.ui.divider.vertical:after{top:auto;bottom:0px}.ui.divider>.icon{margin:0rem;font-size:1rem;height:1em;vertical-align:middle}.ui.divider.hidden{border-color:rgba(0,0,0,0) !important}.ui.divider.hidden:before,.ui.divider.hidden:after{display:none}.ui.divider.invisible:not(.wp-block-separator){opacity:0}.ui.divider.dotted{border-top:1px dotted #aaa;border-bottom:none}.ui.divider.dark:not(.vertical){border-top:1px solid rgba(34,36,38,.5) !important}.ui.divider.inverted{color:#fff;border-top-color:rgba(34,36,38,.15) !important;border-left-color:rgba(34,36,38,.15) !important;border-bottom-color:rgba(255,255,255,.15) !important;border-right-color:rgba(255,255,255,.15) !important}.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(34,36,38,.15) !important;border-left-color:rgba(34,36,38,.15) !important;border-bottom-color:rgba(255,255,255,.15) !important;border-right-color:rgba(255,255,255,.15) !important}.ui.divider.attached,.ui.divider.fitted{margin:0em;border-bottom:none !important}.ui.divider.attached.top,.ui.divider.fitted.top{margin-top:1em}.ui.divider.attached.bottom,.ui.divider.fitted.bottom{margin-bottom:1em}.ui.divider.clearing{clear:both}.ui.divider.section{margin-top:2rem;margin-bottom:2rem}.ui.grid>.column+.divider,.ui.grid>.row>.column+.divider{left:auto}@media only screen and (max-width: 767px){.ui.stackable.grid .ui.vertical.divider:before,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}}@media only screen and (max-width: 767px){.ui.stackable.grid .ui.vertical.divider,.ui.grid .stackable.row .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:"";overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;transform:none}.ui.stackable.grid .ui.vertical.divider:before,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:after{position:static;left:0;border-left:none;border-right:none;content:"";display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}.ui.stackable.grid .ui.vertical.divider:before,.ui.grid .stackable.row .ui.vertical.divider:before{background-position:right 1em top 50%}.ui.stackable.grid .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:after{background-position:left 1em top 50%}}/*! + * # Semantic UI - Dropdown + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */@font-face{font-family:"Legacy-Dropdown";src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format("woff");font-weight:normal;font-style:normal}.ui.dropdown{--prc--icon--dropdown--family: "Legacy-Dropdown";--prc--icon--dropdown--content: ""}.ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:none;text-align:left;transition:box-shadow .1s ease,width .1s ease;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:var(--wp--preset--font-family--sans-serif)}.ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:none;top:100%;min-width:max-content;transition:opacity .1s ease;margin:0em;padding:0em 0em;background:#fff;font-size:1em;text-shadow:none;text-align:left;box-shadow:0px 2px 3px 0px rgba(34,36,38,.15);border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;transition:opacity .1s ease;z-index:11;will-change:transform,opacity}.ui.dropdown .menu>*{white-space:nowrap}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none !important}.ui.dropdown>.dropdown.icon{position:relative;font-family:"Dropdown" !important;line-height:1;height:1em;width:1.23em;font-size:1em;margin:0rem 0rem 0rem 1rem;backface-visibility:hidden;font-weight:normal;font-style:normal;text-align:center}.ui.dropdown>.dropdown.icon{width:auto}.ui.dropdown>.dropdown.icon:before{content:""}.ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0em 0em 0em 1em}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown .menu .item .dropdown.icon:before{content:""}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:""}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:""}.ui.dropdown>.clear.icon:before{content:""}.ui.dropdown>.text{display:inline-block;transition:none}.ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;font-size:1rem;color:#2a2a2a;padding:.7857142857rem 1.1428571429rem !important;font-size:1rem;text-transform:none;font-weight:normal;box-shadow:none;-webkit-touch-callout:none}.ui.dropdown .menu>.item:first-child{border-top-width:0px}.ui.dropdown>.text>[class*="right floated"],.ui.dropdown .menu .item>[class*="right floated"]{float:right !important;margin-right:0em !important;margin-left:1em !important}.ui.dropdown>.text>[class*="left floated"],.ui.dropdown .menu .item>[class*="left floated"]{float:left !important;margin-left:0em !important;margin-right:1em !important}.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0em}.ui.dropdown .menu>.header{margin:1rem 0rem .75rem;padding:0em 1.1428571429rem;color:rgba(0,0,0,.85);font-size:.7857142857em;font-weight:bold;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(34,36,38,.1);height:0em;margin:.5em 0em}.ui.dropdown.dropdown .menu>.input{width:auto;display:flex;margin:1.1428571429rem .7857142857rem;min-width:10rem}.ui.dropdown .menu>.header+.input{margin-top:0em}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-top:.5em;padding-bottom:.5em}.ui.dropdown>.text>.description,.ui.dropdown .menu>.item>.description{float:right;margin:0em 0em 0em 1em;color:rgba(0,0,0,.4)}.ui.dropdown .menu>.message{padding:.7857142857rem 1.1428571429rem;font-weight:normal}.ui.dropdown .menu>.message:not(.ui){color:rgba(0,0,0,.4)}.ui.dropdown .menu .menu{top:0% !important;left:100%;right:auto;margin:0em 0em 0em -0.5em !important;border-radius:.2857142857rem !important;z-index:21 !important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown>.text>.icon,.ui.dropdown>.text>.label,.ui.dropdown>.text>.flag,.ui.dropdown>.text>img,.ui.dropdown>.text>.image{margin-top:0em}.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img{margin-top:0em}.ui.dropdown>.text>.icon,.ui.dropdown>.text>.label,.ui.dropdown>.text>.flag,.ui.dropdown>.text>img,.ui.dropdown>.text>.image,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img{margin-left:0em;float:none;margin-right:.7857142857rem}.ui.dropdown>.text>img,.ui.dropdown>.text>.image,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img{display:inline-block;vertical-align:top;width:auto;margin-top:-0.5em;margin-bottom:-0.5em;max-height:2em}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.menu .right.menu .dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.buttons>.ui.dropdown:last-child .menu{left:auto;right:0em}.ui.label.dropdown .menu{min-width:100%}.ui.dropdown.icon.button>.dropdown.icon{margin:0em}.ui.button.dropdown .menu{min-width:100%}.ui.sticky.fixed.top .ui.block.dropdown{margin-bottom:0;margin-left:-1em;margin-right:-1em;width:calc(100% + 2em);padding-left:1em;padding-right:1em}.ui.block.dropdown{padding:1em 0;border-top:1px solid #dadbdb;border-bottom:1px solid #dadbdb;margin:0 0 1rem 0}.ui.block.dropdown .text{font-weight:700;font-size:.9285714286rem;letter-spacing:.1em;font-family:var(--wp--preset--font-family--sans-serif);text-transform:uppercase;color:#282828}.ui.block.dropdown .menu{min-width:inherit;width:100%;border-radius:0;border-left:0px;border-right:0px}.ui.block.dropdown .menu .item{white-space:inherit}.ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height:1em;white-space:normal;outline:0;transform:rotateZ(0deg);min-width:14em;min-height:2.5625em;background:#fff;display:inline-block;padding:.7857142857em 2.1em .7857142857em 1em;color:#2a2a2a;box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;transition:box-shadow .1s ease,width .1s ease}.ui.selection.dropdown.visible,.ui.selection.dropdown.active{z-index:10}select.ui.dropdown{height:38px;padding:.5em;border:1px solid rgba(34,36,38,.15);visibility:visible}.ui.selection.dropdown>.search.icon,.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon{cursor:pointer;position:absolute;width:auto;height:auto;line-height:1.0625em;top:.7857142857em;right:1em;z-index:3;margin:-.7857142857em;padding:.7857142857em;opacity:.8;transition:opacity .1s ease}.ui.compact.selection.dropdown{min-width:0px}.ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0px !important;width:auto;outline:none;margin:-1px;min-width:calc(100% + 1px*2);width:calc(100% + 1px*2);border-radius:0em 0em .2857142857rem .2857142857rem;box-shadow:0px 2px 3px 0px rgba(34,36,38,.15);transition:opacity .1s ease}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}.ui.selection.dropdown .menu>.message{padding:.7857142857rem 1.1428571429rem}@media only screen and (max-width: 767px){.ui.selection.dropdown .menu{max-height:8.0142857143rem}}@media only screen and (min-width: 768px){.ui.selection.dropdown .menu{max-height:10.6857142857rem}}@media only screen and (min-width: 992px){.ui.selection.dropdown .menu{max-height:16.0285714286rem}}@media only screen and (min-width: 1920px){.ui.selection.dropdown .menu{max-height:21.3714285714rem}}.ui.selection.dropdown .menu>.item{border-top:1px solid #fafafa;padding:.7857142857rem 1.1428571429rem !important;white-space:normal;word-wrap:normal}.ui.selection.dropdown .menu>.hidden.addition.item{display:none}.ui.selection.dropdown:hover{border-color:rgba(34,36,38,.35);box-shadow:none}.ui.selection.active.dropdown{border-color:#000;box-shadow:0px 2px 3px 0px rgba(34,36,38,.15)}.ui.selection.active.dropdown .menu{border-color:#000;box-shadow:0px 2px 3px 0px rgba(34,36,38,.15)}.ui.selection.dropdown:focus{border-color:#000;box-shadow:none}.ui.selection.dropdown:focus .menu{border-color:#000;box-shadow:0px 2px 3px 0px rgba(34,36,38,.15)}.ui.selection.visible.dropdown>.text:not(.default){font-weight:normal;color:rgba(0,0,0,.8)}.ui.selection.active.dropdown:hover{border-color:#000;box-shadow:0px 2px 3px 0px rgba(34,36,38,.15)}.ui.selection.active.dropdown:hover .menu{border-color:#000;box-shadow:0px 2px 3px 0px rgba(34,36,38,.15)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:"";z-index:3}.ui.active.selection.dropdown{border-bottom-left-radius:0em !important;border-bottom-right-radius:0em !important}.ui.active.empty.selection.dropdown{border-radius:.2857142857rem !important;box-shadow:none !important}.ui.active.empty.selection.dropdown .menu{border:none !important;box-shadow:none !important}.ui.search.dropdown{min-width:""}.ui.search.dropdown>input.search{background:none rgba(0,0,0,0) !important;border:none !important;box-shadow:none !important;cursor:text;top:0em;left:1px;width:100%;outline:none;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit}.ui.search.dropdown>input.search{position:absolute;z-index:2}.ui.search.dropdown>.text{cursor:text;position:relative;left:1px;z-index:3}.ui.search.selection.dropdown>input.search{line-height:1.0625em;padding:.7544642857em 2.1em .7544642857em 1em}.ui.search.selection.dropdown>span.sizer{line-height:1.0625em;padding:.7544642857em 2.1em .7544642857em 1em;display:none;white-space:pre}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown input.search:focus+.text .icon,.ui.active.search.dropdown input.search:focus+.text .flag{opacity:.45}.ui.active.search.dropdown input.search:focus+.text{color:#9d9d9d !important}.ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width: 767px){.ui.search.dropdown .menu{max-height:8.0142857143rem}}@media only screen and (min-width: 768px){.ui.search.dropdown .menu{max-height:10.6857142857rem}}@media only screen and (min-width: 992px){.ui.search.dropdown .menu{max-height:16.0285714286rem}}@media only screen and (min-width: 1920px){.ui.search.dropdown .menu{max-height:21.3714285714rem}}.ui.multiple.dropdown{padding:.2514880952em 2.1em .2514880952em .3571428571em}.ui.multiple.dropdown .menu{cursor:auto}.ui.multiple.search.dropdown,.ui.multiple.search.dropdown>input.search{cursor:text}.ui.multiple.dropdown>.label{user-select:none;display:inline-block;vertical-align:top;white-space:normal;font-size:1em;padding:.3571428571em .7857142857em;margin:.1428571429rem .2857142857rem .1428571429rem 0em;box-shadow:0px 0px 0px 1px rgba(34,36,38,.15) inset}.ui.multiple.dropdown .dropdown.icon{margin:"";padding:""}.ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:.5029761905em 0em .5029761905em .6428571429em;line-height:1.2142857143em}.ui.multiple.dropdown>.label~input.search{margin-left:.1428571429em !important}.ui.multiple.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:.5029761905em 0em .5029761905em .6428571429em;line-height:1.2142857143em}.ui.multiple.search.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:.5029761905em 0em .5029761905em .6428571429em;width:2.2em;line-height:1.2142857143em}.ui.range-min.dropdown,.ui.range-max.dropdown{min-width:inherit !important}.ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}.ui.inline.dropdown .dropdown.icon{margin:0em .2142857143em 0em .2142857143em;vertical-align:baseline}.ui.inline.dropdown>.text{font-weight:bold}.ui.inline.dropdown .menu{cursor:auto;margin-top:.2142857143em;border-radius:.2857142857rem}.ui.dropdown .menu .active.item{background:rgba(0,0,0,0);font-weight:bold;color:rgba(0,0,0,.95);box-shadow:none;z-index:12}.ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);z-index:13}.ui.loading.dropdown>i.icon{height:1em !important}.ui.loading.selection.dropdown>i.icon{padding:1.5em 1.2857142857em !important}.ui.loading.dropdown>i.icon:before{position:absolute;content:"";top:50%;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:1.2857142857em;height:1.2857142857em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.dropdown>i.icon:after{position:absolute;content:"";top:50%;left:50%;box-shadow:0px 0px 0px 1px rgba(0,0,0,0);margin:-.6428571429em 0em 0em -.6428571429em;width:1.2857142857em;height:1.2857142857em;animation:dropdown-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:.2em}.ui.loading.dropdown.button>i.icon:before,.ui.loading.dropdown.button>i.icon:after{display:none}@keyframes dropdown-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.ui.dropdown:not(.button)>.default.text,.ui.default.dropdown:not(.button)>.text{color:#000}.ui.dropdown:not(.button)>input:focus~.default.text,.ui.default.dropdown:not(.button)>input:focus~.text{color:#9d9d9d}.ui.loading.dropdown>.text{transition:none}.ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown>.loading.menu{left:0px !important;right:auto !important}.ui.dropdown>.menu .loading.menu{left:100% !important;right:auto !important}.ui.dropdown.selected,.ui.dropdown .menu .selected.item{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none !important}.ui.dropdown.error,.ui.dropdown.error>.text,.ui.dropdown.error>.default.text{color:#9f3a38}.ui.selection.dropdown.error{background:#fff6f6;border-color:#e0b4b4}.ui.selection.dropdown.error:hover{border-color:#e0b4b4}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item{color:#9f3a38}.ui.multiple.selection.error.dropdown>.label{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item:hover{background-color:#fff2f2}.ui.dropdown.error>.menu .active.item{background-color:#fdcfcf}.ui.dropdown>.clear.dropdown.icon{opacity:.8;transition:opacity .1s ease}.ui.dropdown>.clear.dropdown.icon:hover{opacity:1}.ui.disabled.dropdown,.ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:.45}.ui.dropdown .menu{left:0px}.ui.dropdown .right.menu>.menu,.ui.dropdown .menu .right.menu{left:100% !important;right:auto !important;border-radius:.2857142857rem !important}.ui.dropdown>.left.menu{left:auto !important;right:0px !important}.ui.dropdown>.left.menu .menu,.ui.dropdown .menu .left.menu{left:auto;right:100%;margin:0em -0.5em 0em 0em !important;border-radius:.2857142857rem !important}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0em 0em 0em 0em}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0em 0em 0em 0em}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em;margin-right:0em}.ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0px 0px 3px 0px rgba(0,0,0,.08);border-radius:.2857142857rem .2857142857rem 0em 0em}.ui.dropdown .upward.menu{top:auto !important;bottom:0 !important}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.2857142857rem .2857142857rem 0em 0em !important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:.2857142857rem .2857142857rem 0em 0em}.ui.upward.selection.dropdown .menu{border-top-width:1px !important;border-bottom-width:0px !important;box-shadow:0px -2px 3px 0px rgba(0,0,0,.08)}.ui.upward.selection.dropdown:hover{box-shadow:0px 0px 2px 0px rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown{border-radius:0em 0em .2857142857rem .2857142857rem !important}.ui.upward.selection.dropdown.visible{box-shadow:0px 0px 3px 0px rgba(0,0,0,.08);border-radius:0em 0em .2857142857rem .2857142857rem !important}.ui.upward.active.selection.dropdown:hover{box-shadow:0px 0px 3px 0px rgba(0,0,0,.05)}.ui.upward.active.selection.dropdown:hover .menu{box-shadow:0px -2px 3px 0px rgba(0,0,0,.08)}.ui.scrolling.dropdown .menu,.ui.dropdown .scrolling.menu{overflow-x:hidden;overflow-y:auto}.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100% !important;width:auto !important}.ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;box-shadow:none !important;border-radius:0 !important;margin:0 !important;min-width:100% !important;width:auto !important;border-top:1px solid rgba(34,36,38,.15)}.ui.scrolling.dropdown .menu .item.item.item,.ui.dropdown .scrolling.menu>.item.item.item{border-top:none}.ui.scrolling.dropdown .menu .item:first-child,.ui.dropdown .scrolling.menu .item:first-child{border-top:none}.ui.dropdown>.animating.menu .scrolling.menu,.ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast: none){.ui.scrolling.dropdown .menu,.ui.dropdown .scrolling.menu{min-width:calc(100% - 17px)}}@media only screen and (max-width: 767px){.ui.scrolling.dropdown .menu,.ui.dropdown .scrolling.menu{max-height:10.2857142857rem}}@media only screen and (min-width: 768px){.ui.scrolling.dropdown .menu,.ui.dropdown .scrolling.menu{max-height:15.4285714286rem}}@media only screen and (min-width: 992px){.ui.scrolling.dropdown .menu,.ui.dropdown .scrolling.menu{max-height:20.5714285714rem}}@media only screen and (min-width: 1920px){.ui.scrolling.dropdown .menu,.ui.dropdown .scrolling.menu{max-height:20.5714285714rem}}.ui.simple.dropdown .menu:before,.ui.simple.dropdown .menu:after{display:none}.ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px !important;opacity:0;width:0;height:0;transition:opacity .1s ease}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0em !important;border-bottom-right-radius:0em !important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100% !important;opacity:1}.ui.simple.dropdown>.menu>.item:active>.menu,.ui.simple.dropdown:hover>.menu>.item:hover>.menu{overflow:visible;width:auto;height:auto;top:0% !important;left:100% !important;opacity:1}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0px;width:0px;overflow:hidden}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;width:100%;min-width:0em}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0px 2px 4px 0px rgba(34,36,38,.12),0px 2px 10px 0px rgba(34,36,38,.15) !important;border-radius:.2857142857rem !important}.ui.floating.dropdown>.menu{margin-top:.5em !important;border-radius:.2857142857rem !important}.ui.pointing.dropdown>.menu{top:100%;margin-top:.7857142857rem;border-radius:.2857142857rem}.ui.pointing.dropdown>.menu:after{display:block;position:absolute;pointer-events:none;content:"";visibility:visible;transform:rotate(45deg);width:.5em;height:.5em;box-shadow:-2px 0px 0px rgba(34,36,38,.15);background:#fff;z-index:2}.ui.pointing.dropdown>.menu:after{top:-0.25em;left:50%;margin:0em 0em 0em -0.25em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0%;right:auto;margin:1em 0em 0em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0%;right:auto;margin:1em 0em 0em}.ui.top.left.pointing.dropdown>.menu:after{top:-0.25em;left:1em;right:auto;margin:0em;transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{top:100%;bottom:auto;right:0%;left:auto;margin:1em 0em 0em}.ui.top.pointing.dropdown>.left.menu:after,.ui.top.right.pointing.dropdown>.menu:after{top:-0.25em;left:auto !important;right:1em !important;margin:0em;transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{top:0%;left:100%;right:auto;margin:0em 0em 0em 1em}.ui.left.pointing.dropdown>.menu:after{top:1em;left:-0.25em;margin:0em 0em 0em 0em;transform:rotate(-45deg)}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu{left:auto !important;right:100% !important;margin:0em 1em 0em 0em}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu:after{top:1em;left:auto;right:-0.25em;margin:0em 0em 0em 0em;transform:rotate(135deg)}.ui.right.pointing.dropdown>.menu{top:0%;left:auto;right:100%;margin:0em 1em 0em 0em}.ui.right.pointing.dropdown>.menu:after{top:1em;left:auto;right:-0.25em;margin:0em 0em 0em 0em;transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{top:auto;bottom:100%;left:0%;right:auto;margin:0em 0em 1em}.ui.bottom.pointing.dropdown>.menu:after{top:auto;bottom:-0.25em;right:auto;margin:0em;transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{top:auto !important;bottom:0px !important}.ui.bottom.left.pointing.dropdown>.menu{left:0%;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{right:0%;left:auto}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}.ui.pointing.upward.dropdown .menu,.ui.top.pointing.upward.dropdown .menu{top:auto !important;bottom:100% !important;margin:0em 0em .7857142857rem;border-radius:.2857142857rem}.ui.pointing.upward.dropdown .menu:after,.ui.top.pointing.upward.dropdown .menu:after{top:100% !important;bottom:auto !important;box-shadow:1px 1px 0px 0px rgba(34,36,38,.15);margin:-0.25em 0em 0em}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu{top:auto !important;bottom:0 !important;margin:0em 1em 0em 0em}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{top:auto !important;bottom:0 !important;margin:0em 0em 1em 0em;box-shadow:-2px 0px 0px rgba(34,36,38,.15)}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu{top:auto !important;bottom:0 !important;margin:0em 0em 0em 1em}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{top:auto !important;bottom:0 !important;margin:0em 0em 1em 0em;box-shadow:-2px 0px 0px rgba(34,36,38,.15)}/*! + * # Semantic UI - Flag + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0em .5em 0em 0em;text-decoration:inherit;speak:none;font-smoothing:antialiased;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:"";background:url(99f63ae7a743f21ab308.png) no-repeat -108px -1976px;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0px 0px}i.flag.ae:before,i.flag.united.arab.emirates:before,i.flag.uae:before{background-position:0px -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0px -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0px -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0px -104px}i.flag.al:before,i.flag.albania:before{background-position:0px -130px}i.flag.am:before,i.flag.armenia:before{background-position:0px -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0px -182px}i.flag.ao:before,i.flag.angola:before{background-position:0px -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0px -234px}i.flag.as:before,i.flag.american.samoa:before{background-position:0px -260px}i.flag.at:before,i.flag.austria:before{background-position:0px -286px}i.flag.au:before,i.flag.australia:before{background-position:0px -312px}i.flag.aw:before,i.flag.aruba:before{background-position:0px -338px}i.flag.ax:before,i.flag.aland.islands:before{background-position:0px -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0px -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0px -416px}i.flag.bb:before,i.flag.barbados:before{background-position:0px -442px}i.flag.bd:before,i.flag.bangladesh:before{background-position:0px -468px}i.flag.be:before,i.flag.belgium:before{background-position:0px -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0px -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0px -546px}i.flag.bh:before,i.flag.bahrain:before{background-position:0px -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0px -598px}i.flag.bj:before,i.flag.benin:before{background-position:0px -624px}i.flag.bm:before,i.flag.bermuda:before{background-position:0px -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0px -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0px -702px}i.flag.br:before,i.flag.brazil:before{background-position:0px -728px}i.flag.bs:before,i.flag.bahamas:before{background-position:0px -754px}i.flag.bt:before,i.flag.bhutan:before{background-position:0px -780px}i.flag.bv:before,i.flag.bouvet.island:before{background-position:0px -806px}i.flag.bw:before,i.flag.botswana:before{background-position:0px -832px}i.flag.by:before,i.flag.belarus:before{background-position:0px -858px}i.flag.bz:before,i.flag.belize:before{background-position:0px -884px}i.flag.ca:before,i.flag.canada:before{background-position:0px -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0px -962px}i.flag.cd:before,i.flag.congo:before{background-position:0px -988px}i.flag.cf:before,i.flag.central.african.republic:before{background-position:0px -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0px -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0px -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0px -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0px -1118px}i.flag.cl:before,i.flag.chile:before{background-position:0px -1144px}i.flag.cm:before,i.flag.cameroon:before{background-position:0px -1170px}i.flag.cn:before,i.flag.china:before{background-position:0px -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0px -1222px}i.flag.cr:before,i.flag.costa.rica:before{background-position:0px -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0px -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0px -1300px}i.flag.cv:before,i.flag.cape.verde:before{background-position:0px -1326px}i.flag.cx:before,i.flag.christmas.island:before{background-position:0px -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0px -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0px -1404px}i.flag.de:before,i.flag.germany:before{background-position:0px -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0px -1456px}i.flag.dk:before,i.flag.denmark:before{background-position:0px -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0px -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0px -1534px}i.flag.dz:before,i.flag.algeria:before{background-position:0px -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0px -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0px -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0px -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0px -1664px}i.flag.gb.eng:before,i.flag.england:before{background-position:0px -1690px}i.flag.er:before,i.flag.eritrea:before{background-position:0px -1716px}i.flag.es:before,i.flag.spain:before{background-position:0px -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0px -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0px -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0px -1846px}i.flag.fj:before,i.flag.fiji:before{background-position:0px -1872px}i.flag.fk:before,i.flag.falkland.islands:before{background-position:0px -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0px -1924px}i.flag.fo:before,i.flag.faroe.islands:before{background-position:0px -1950px}i.flag.fr:before,i.flag.france:before{background-position:0px -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0px}i.flag.gb:before,i.flag.uk:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.gf:before,i.flag.french.guiana:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gm:before,i.flag.gambia:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.gq:before,i.flag.equatorial.guinea:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.gw:before,i.flag.guinea-bissau:before{background-position:-36px -416px}i.flag.gy:before,i.flag.guyana:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.hm:before,i.flag.heard.island:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.hr:before,i.flag.croatia:before{background-position:-36px -546px}i.flag.ht:before,i.flag.haiti:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.io:before,i.flag.indian.ocean.territory:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.is:before,i.flag.iceland:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jm:before,i.flag.jamaica:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.jp:before,i.flag.japan:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.kh:before,i.flag.cambodia:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.km:before,i.flag.comoros:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kw:before,i.flag.kuwait:before{background-position:-36px -1144px}i.flag.ky:before,i.flag.cayman.islands:before{background-position:-36px -1170px}i.flag.kz:before,i.flag.kazakhstan:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.lr:before,i.flag.liberia:before{background-position:-36px -1352px}i.flag.ls:before,i.flag.lesotho:before{background-position:-36px -1378px}i.flag.lt:before,i.flag.lithuania:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.lv:before,i.flag.latvia:before{background-position:-36px -1456px}i.flag.ly:before,i.flag.libya:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.mg:before,i.flag.madagascar:before{background-position:-36px -1613px}i.flag.mh:before,i.flag.marshall.islands:before{background-position:-36px -1639px}i.flag.mk:before,i.flag.macedonia:before{background-position:-36px -1665px}i.flag.ml:before,i.flag.mali:before{background-position:-36px -1691px}i.flag.mm:before,i.flag.myanmar:before,i.flag.burma:before{background-position:-73px -1821px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.mo:before,i.flag.macau:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.mq:before,i.flag.martinique:before{background-position:-36px -1821px}i.flag.mr:before,i.flag.mauritania:before{background-position:-36px -1847px}i.flag.ms:before,i.flag.montserrat:before{background-position:-36px -1873px}i.flag.mt:before,i.flag.malta:before{background-position:-36px -1899px}i.flag.mu:before,i.flag.mauritius:before{background-position:-36px -1925px}i.flag.mv:before,i.flag.maldives:before{background-position:-36px -1951px}i.flag.mw:before,i.flag.malawi:before{background-position:-36px -1977px}i.flag.mx:before,i.flag.mexico:before{background-position:-72px 0px}i.flag.my:before,i.flag.malaysia:before{background-position:-72px -26px}i.flag.mz:before,i.flag.mozambique:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.nl:before,i.flag.netherlands:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.np:before,i.flag.nepal:before{background-position:-72px -286px}i.flag.nr:before,i.flag.nauru:before{background-position:-72px -312px}i.flag.nu:before,i.flag.niue:before{background-position:-72px -338px}i.flag.nz:before,i.flag.new.zealand:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.pf:before,i.flag.french.polynesia:before{background-position:-72px -468px}i.flag.pg:before,i.flag.new.guinea:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pk:before,i.flag.pakistan:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pn:before,i.flag.pitcairn.islands:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.ps:before,i.flag.palestine:before{background-position:-72px -676px}i.flag.pt:before,i.flag.portugal:before{background-position:-72px -702px}i.flag.pw:before,i.flag.palau:before{background-position:-72px -728px}i.flag.py:before,i.flag.paraguay:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.gb.sct:before,i.flag.scotland:before{background-position:-72px -1014px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.sh:before,i.flag.saint.helena:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.sj:before,i.flag.svalbard:before,i.flag.jan.mayen:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sl:before,i.flag.sierra.leone:before{background-position:-72px -1222px}i.flag.sm:before,i.flag.san.marino:before{background-position:-72px -1248px}i.flag.sn:before,i.flag.senegal:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.st:before,i.flag.sao.tome:before{background-position:-72px -1352px}i.flag.sv:before,i.flag.el.salvador:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.sz:before,i.flag.swaziland:before{background-position:-72px -1430px}i.flag.tc:before,i.flag.caicos.islands:before{background-position:-72px -1456px}i.flag.td:before,i.flag.chad:before{background-position:-72px -1482px}i.flag.tf:before,i.flag.french.territories:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tj:before,i.flag.tajikistan:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.tl:before,i.flag.timorleste:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.tt:before,i.flag.trinidad:before{background-position:-72px -1768px}i.flag.tv:before,i.flag.tuvalu:before{background-position:-72px -1794px}i.flag.tw:before,i.flag.taiwan:before{background-position:-72px -1820px}i.flag.tz:before,i.flag.tanzania:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.us:before,i.flag.america:before,i.flag.united.states:before{background-position:-72px -1950px}i.flag.uy:before,i.flag.uruguay:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0px}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.vc:before,i.flag.saint.vincent:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.vg:before,i.flag.british.virgin.islands:before{background-position:-108px -104px}i.flag.vi:before,i.flag.us.virgin.islands:before{background-position:-108px -130px}i.flag.vn:before,i.flag.vietnam:before{background-position:-108px -156px}i.flag.vu:before,i.flag.vanuatu:before{background-position:-108px -182px}i.flag.gb.wls:before,i.flag.wales:before{background-position:-108px -208px}i.flag.wf:before,i.flag.wallis.and.futuna:before{background-position:-108px -234px}i.flag.ws:before,i.flag.samoa:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.yt:before,i.flag.mayotte:before{background-position:-108px -312px}i.flag.za:before,i.flag.south.africa:before{background-position:-108px -338px}i.flag.zm:before,i.flag.zambia:before{background-position:-108px -364px}i.flag.zw:before,i.flag.zimbabwe:before{background-position:-108px -390px}.ui.flex,.flex{display:flex;flex-wrap:wrap}.ui.flex.align-center,.flex.align-center{align-items:center}.ui.flex.align-bottom,.flex.align-bottom{align-items:flex-end}.ui.flex>div,.flex>div{display:flex;width:50%}.ui.flex>.justify-left,.flex>.justify-left{justify-content:flex-start}.ui.flex>.justify-right,.flex>.justify-right{justify-content:flex-end}@media only screen and (min-width: 991px){.flex-align-bottom{display:flex !important;align-items:flex-end}}@media only screen and (min-width: 991px){.flex-justify-right{display:flex !important;justify-content:flex-end}}@media only screen and (min-width: 991px){.flex-justify-left{display:flex !important;justify-content:flex-start}}.flex-direction-column{flex-direction:column}/*! + * # Semantic UI - Form + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.form{position:relative;max-width:100%}.ui.form.gform{display:flex;flex-direction:row}.ui.form.gform li.gfield,.ui.form.gform .ginput_container{margin-top:0}.ui.form.gform .ginput_container>input{width:100%}.ui.form.gform .gform_footer{margin:0;padding:0}.ui.form.gform input[type=submit]{background:#000;color:#fff;font-size:1rem !important;padding-top:.4rem;padding-bottom:.4rem;margin-left:.5rem}.ui.form>p{margin:1em 0em}.ui.form .field{clear:both;margin:0em 0em 1em}.ui.form .field:last-child,.ui.form .fields:last-child .field{margin-bottom:0em}.ui.form .fields .field{clear:both;margin:0em}.ui.form .field>label{display:block;margin:0em 0em .2857142857rem 0em;color:#2a2a2a;font-family:var(--wp--preset--font-family--sans-serif);font-size:.9285714286rem;font-weight:bold;text-transform:none}.ui.form textarea,.ui.form input:not([type]),.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=email],.ui.form input[type=number],.ui.form input[type=password],.ui.form input[type=search],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=text],.ui.form input[type=file],.ui.form input[type=url]{width:100%;vertical-align:top}.ui.form ::-webkit-datetime-edit,.ui.form ::-webkit-inner-spin-button{height:1.0625em}.ui.form input:not([type]),.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=email],.ui.form input[type=number],.ui.form input[type=password],.ui.form input[type=search],.ui.form input[type=tel],.ui.form input[type=time],.ui.form input[type=text],.ui.form input[type=file],.ui.form input[type=url]{font-family:var(--wp--preset--font-family--sans-serif);margin:0em;outline:none;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);line-height:1.0625em;padding:.7544642857em 1em;font-size:1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:#2a2a2a;border-radius:.2857142857rem;box-shadow:0em 0em 0em 0em rgba(0,0,0,0) inset;transition:color .1s ease,border-color .1s ease}.ui.form textarea{margin:0em;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);padding:.7857142857em 1em;font-size:1em;background:#fff;border:1px solid rgba(34,36,38,.15);outline:none;color:#2a2a2a;border-radius:.2857142857rem;box-shadow:0em 0em 0em 0em rgba(0,0,0,0) inset;transition:color .1s ease,border-color .1s ease;font-size:1em;line-height:1.2857;resize:vertical}.ui.form textarea:not([rows]){height:12em;min-height:8em;max-height:24em}.ui.form textarea,.ui.form input[type=checkbox]{vertical-align:top}.ui.form input.attached{width:auto}.ui.form select{display:block;height:auto;width:100%;background:#fff;border:1px solid rgba(34,36,38,.15);border-radius:.2857142857rem;box-shadow:0em 0em 0em 0em rgba(0,0,0,0) inset;padding:.62em 1em;color:#2a2a2a;transition:color .1s ease,border-color .1s ease}.ui.form .field>.selection.dropdown{width:100%}.ui.form .field>.selection.dropdown>.dropdown.icon{float:right}.ui.form .inline.fields .field>.selection.dropdown,.ui.form .inline.field>.selection.dropdown{width:auto}.ui.form .inline.fields .field>.selection.dropdown>.dropdown.icon,.ui.form .inline.field>.selection.dropdown>.dropdown.icon{float:none}.ui.form .field .ui.input,.ui.form .fields .field .ui.input,.ui.form .wide.field .ui.input{width:100%}.ui.form .inline.fields .field:not(.wide) .ui.input,.ui.form .inline.field:not(.wide) .ui.input{width:auto;vertical-align:middle}.ui.form .fields .field .ui.input input,.ui.form .field .ui.input input{width:auto}.ui.form .ten.fields .ui.input input,.ui.form .nine.fields .ui.input input,.ui.form .eight.fields .ui.input input,.ui.form .seven.fields .ui.input input,.ui.form .six.fields .ui.input input,.ui.form .five.fields .ui.input input,.ui.form .four.fields .ui.input input,.ui.form .three.fields .ui.input input,.ui.form .two.fields .ui.input input,.ui.form .wide.field .ui.input input{flex:1 0 auto;width:0px}.ui.form .success.message,.ui.form .warning.message,.ui.form .error.message{display:none}.ui.form .message:first-child{margin-top:0px}.ui.form .field .prompt.label{white-space:normal;background:#fff !important;border:1px solid #e0b4b4 !important;color:#9f3a38 !important}.ui.form .inline.fields .field .prompt,.ui.form .inline.field .prompt{vertical-align:top;margin:-0.25em 0em -0.5em .5em}.ui.form .inline.fields .field .prompt:before,.ui.form .inline.field .prompt:before{border-width:0px 0px 1px 1px;bottom:auto;right:auto;top:50%;left:0em}.ui.form .field.field input:-webkit-autofill{box-shadow:0px 0px 0px 100px ivory inset !important;border-color:#e5dfa1 !important}.ui.form .field.field input:-webkit-autofill:focus{box-shadow:0px 0px 0px 100px ivory inset !important;border-color:#d5c315 !important}.ui.form .error.error input:-webkit-autofill{box-shadow:0px 0px 0px 100px #fffaf0 inset !important;border-color:#e0b4b4 !important}.ui.form ::-webkit-input-placeholder{color:#999}.ui.form :-ms-input-placeholder{color:#999 !important}.ui.form ::-moz-placeholder{color:#999}.ui.form :focus::-webkit-input-placeholder{color:#9d9d9d}.ui.form :focus:-ms-input-placeholder{color:#9d9d9d !important}.ui.form :focus::-moz-placeholder{color:#9d9d9d}.ui.form .error ::-webkit-input-placeholder{color:#e7bdbc}.ui.form .error :-ms-input-placeholder{color:#e7bdbc !important}.ui.form .error ::-moz-placeholder{color:#e7bdbc}.ui.form .error :focus::-webkit-input-placeholder{color:#da9796}.ui.form .error :focus:-ms-input-placeholder{color:#da9796 !important}.ui.form .error :focus::-moz-placeholder{color:#da9796}.ui.form input:not([type]):focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=email]:focus,.ui.form input[type=number]:focus,.ui.form input[type=password]:focus,.ui.form input[type=search]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=time]:focus,.ui.form input[type=text]:focus,.ui.form input[type=file]:focus,.ui.form input[type=url]:focus{color:rgba(0,0,0,.95);border-color:#818181;border-radius:.2857142857rem;background:#fff;box-shadow:0px 0em 0em 0em rgba(34,36,38,.35) inset}.ui.form textarea:focus{color:rgba(0,0,0,.95);border-color:#818181;border-radius:.2857142857rem;background:#fff;box-shadow:0px 0em 0em 0em rgba(34,36,38,.35) inset;-webkit-appearance:none}.ui.form.success .success.message:not(:empty){display:block}.ui.form.success .compact.success.message:not(:empty){display:inline-block}.ui.form.success .icon.success.message:not(:empty){display:flex}.ui.form.warning .warning.message:not(:empty){display:block}.ui.form.warning .compact.warning.message:not(:empty){display:inline-block}.ui.form.warning .icon.warning.message:not(:empty){display:flex}.ui.form.error .error.message:not(:empty){display:block}.ui.form.error .compact.error.message:not(:empty){display:inline-block}.ui.form.error .icon.error.message:not(:empty){display:flex}.ui.form .fields.error .field label,.ui.form .field.error label,.ui.form .fields.error .field .input,.ui.form .field.error .input{color:#9f3a38}.ui.form .fields.error .field .corner.label,.ui.form .field.error .corner.label{border-color:#9f3a38;color:#fff}.ui.form .fields.error .field textarea,.ui.form .fields.error .field select,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=file],.ui.form .fields.error .field input[type=url],.ui.form .field.error textarea,.ui.form .field.error select,.ui.form .field.error input:not([type]),.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=email],.ui.form .field.error input[type=number],.ui.form .field.error input[type=password],.ui.form .field.error input[type=search],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=time],.ui.form .field.error input[type=text],.ui.form .field.error input[type=file],.ui.form .field.error input[type=url]{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;border-radius:"";box-shadow:none}.ui.form .field.error textarea:focus,.ui.form .field.error select:focus,.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=file]:focus,.ui.form .field.error input[type=url]:focus{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;-webkit-appearance:none;box-shadow:none}.ui.form .field.error select{-webkit-appearance:menulist-button}.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown .item,.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown .text,.ui.form .field.error .ui.dropdown .item{background:#fff6f6;color:#9f3a38}.ui.form .fields.error .field .ui.dropdown,.ui.form .field.error .ui.dropdown{border-color:#e0b4b4 !important}.ui.form .fields.error .field .ui.dropdown:hover,.ui.form .field.error .ui.dropdown:hover{border-color:#e0b4b4 !important}.ui.form .fields.error .field .ui.dropdown:hover .menu,.ui.form .field.error .ui.dropdown:hover .menu{border-color:#e0b4b4}.ui.form .fields.error .field .ui.multiple.selection.dropdown>.label,.ui.form .field.error .ui.multiple.selection.dropdown>.label{background-color:#eacbcb;color:#9f3a38}.ui.form .fields.error .field .ui.dropdown .menu .item:hover,.ui.form .field.error .ui.dropdown .menu .item:hover{background-color:#fbe7e7}.ui.form .fields.error .field .ui.dropdown .menu .selected.item,.ui.form .field.error .ui.dropdown .menu .selected.item{background-color:#fbe7e7}.ui.form .fields.error .field .ui.dropdown .menu .active.item,.ui.form .field.error .ui.dropdown .menu .active.item{background-color:#fdcfcf !important}.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box{color:#9f3a38}.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before{background:#fff6f6;border-color:#e0b4b4}.ui.form .fields.error .field .checkbox label:after,.ui.form .field.error .checkbox label:after,.ui.form .fields.error .field .checkbox .box:after,.ui.form .field.error .checkbox .box:after{color:#9f3a38}.ui.form .disabled.fields .field,.ui.form .disabled.field,.ui.form .field :disabled{pointer-events:none;opacity:.45}.ui.form .field.disabled>label,.ui.form .fields.disabled>label{opacity:.45}.ui.form .field.disabled :disabled{opacity:1}.ui.loading.form{position:relative;cursor:default;pointer-events:none}.ui.loading.form:before{position:absolute;content:"";top:0%;left:0%;background:rgba(255,255,255,.8);width:100%;height:100%;z-index:100}.ui.loading.form:after{position:absolute;content:"";top:50%;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:3em;height:3em;animation:form-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0px 0px 0px 1px rgba(0,0,0,0);visibility:visible;z-index:101}@keyframes form-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.ui.form .required.fields:not(.grouped)>.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.field>label:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.field>.checkbox:after{margin:-0.2em 0em 0em .2em;content:"*";color:#db2828}.ui.form .required.fields:not(.grouped)>.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.field>label:after{display:inline-block;vertical-align:top}.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.field>.checkbox:after{position:absolute;top:0%;left:100%}.ui.inverted.form label,.ui.form .inverted.segment label,.ui.form .inverted.segment .ui.checkbox label,.ui.form .inverted.segment .ui.checkbox .box,.ui.inverted.form .ui.checkbox label,.ui.inverted.form .ui.checkbox .box,.ui.inverted.form .inline.fields>label,.ui.inverted.form .inline.fields .field>label,.ui.inverted.form .inline.fields .field>p,.ui.inverted.form .inline.field>label,.ui.inverted.form .inline.field>p{color:rgba(255,255,255,.9)}.ui.inverted.form input:not([type]),.ui.inverted.form input[type=date],.ui.inverted.form input[type=datetime-local],.ui.inverted.form input[type=email],.ui.inverted.form input[type=number],.ui.inverted.form input[type=password],.ui.inverted.form input[type=search],.ui.inverted.form input[type=tel],.ui.inverted.form input[type=time],.ui.inverted.form input[type=text],.ui.inverted.form input[type=file],.ui.inverted.form input[type=url]{background:#fff;border-color:rgba(255,255,255,.1);color:#2a2a2a;box-shadow:none}.ui.form .grouped.fields{display:block;margin:0em 0em 1em}.ui.form .grouped.fields:last-child{margin-bottom:0em}.ui.form .grouped.fields>label{margin:0em 0em .2857142857rem 0em;color:#2a2a2a;font-size:.9285714286rem;font-weight:bold;text-transform:none}.ui.form .grouped.fields .field,.ui.form .grouped.inline.fields .field{display:block;margin:.5em 0em;padding:0em}.ui.form .fields{display:flex;flex-direction:row;margin:-0.5em 1em}.ui.form .fields>.field{flex:0 1 auto;padding-left:.5em;padding-right:.5em}.ui.form .fields>.field:first-child{border-left:none;box-shadow:none}.ui.form .two.fields>.fields,.ui.form .two.fields>.field{width:50%}.ui.form .three.fields>.fields,.ui.form .three.fields>.field{width:33.3333333333%}.ui.form .four.fields>.fields,.ui.form .four.fields>.field{width:25%}.ui.form .five.fields>.fields,.ui.form .five.fields>.field{width:20%}.ui.form .six.fields>.fields,.ui.form .six.fields>.field{width:16.6666666667%}.ui.form .seven.fields>.fields,.ui.form .seven.fields>.field{width:14.2857142857%}.ui.form .eight.fields>.fields,.ui.form .eight.fields>.field{width:12.5%}.ui.form .nine.fields>.fields,.ui.form .nine.fields>.field{width:11.1111111111%}.ui.form .ten.fields>.fields,.ui.form .ten.fields>.field{width:10%}@media only screen and (max-width: 767px){.ui.form .fields{flex-wrap:wrap}.ui[class*="equal width"].form:not(.unstackable) .fields>.field,.ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .six.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .six.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .seven.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .seven.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .eight.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .eight.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .nine.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .nine.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .ten.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .ten.fields:not(.unstackable)>.field{width:100% !important;margin:0em 0em 1em}}.ui.form .fields .wide.field{width:6.25%;padding-left:.5em;padding-right:.5em}.ui.form .one.wide.field{width:6.25% !important}.ui.form .two.wide.field{width:12.5% !important}.ui.form .three.wide.field{width:18.75% !important}.ui.form .four.wide.field{width:25% !important}.ui.form .five.wide.field{width:31.25% !important}.ui.form .six.wide.field{width:37.5% !important}.ui.form .seven.wide.field{width:43.75% !important}.ui.form .eight.wide.field{width:50% !important}.ui.form .nine.wide.field{width:56.25% !important}.ui.form .ten.wide.field{width:62.5% !important}.ui.form .eleven.wide.field{width:68.75% !important}.ui.form .twelve.wide.field{width:75% !important}.ui.form .thirteen.wide.field{width:81.25% !important}.ui.form .fourteen.wide.field{width:87.5% !important}.ui.form .fifteen.wide.field{width:93.75% !important}.ui.form .sixteen.wide.field{width:100% !important}@media only screen and (max-width: 767px){.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.two.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.three.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.four.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.five.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.six.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.seven.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.eight.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.nine.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.ten.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.eleven.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.twelve.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.thirteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.fourteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.fifteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.sixteen.wide.field{width:100% !important}.ui.form .fields{margin-bottom:0em}}.ui[class*="equal width"].form .fields>.field,.ui.form [class*="equal width"].fields>.field{width:100%;flex:1 1 auto}.ui.form .inline.fields{margin:0em 0em 1em;align-items:center}.ui.form .inline.fields .field{margin:0em;padding:0em 1em 0em 0em}.ui.form .inline.fields>label,.ui.form .inline.fields .field>label,.ui.form .inline.fields .field>p,.ui.form .inline.field>label,.ui.form .inline.field>p{display:inline-block;width:auto;margin-top:0em;margin-bottom:0em;vertical-align:baseline;font-size:.9285714286rem;font-weight:bold;color:#2a2a2a;text-transform:none}.ui.form .inline.fields>label{margin:.035714em 1em 0em 0em}.ui.form .inline.fields .field>input,.ui.form .inline.fields .field>select,.ui.form .inline.field>input,.ui.form .inline.field>select{display:inline-block;width:auto;margin-top:0em;margin-bottom:0em;vertical-align:middle;font-size:1em}.ui.form .inline.fields .field>:first-child,.ui.form .inline.field>:first-child{margin:0em .8571428571em 0em 0em}.ui.form .inline.fields .field>:only-child,.ui.form .inline.field>:only-child{margin:0em}.ui.form .inline.fields .wide.field{display:flex;align-items:center}.ui.form .inline.fields .wide.field>input,.ui.form .inline.fields .wide.field>select{width:100%}.ui.mini.form{font-size:.7857142857rem}.ui.tiny.form{font-size:.8571428571rem}.ui.small.form{font-size:.9285714286rem}.ui.form{font-size:1rem}.ui.large.form{font-size:1.1428571429rem}.ui.big.form{font-size:1.2857142857rem}.ui.huge.form{font-size:1.4285714286rem}.ui.massive.form{font-size:1.7142857143rem}.ui.grid>.column:only-child,.editor-styles-wrapper .ui.grid .ui.grid .ui.grid>.row>.column:only-child{width:100%}.ui[class*="one column"].grid>.row>.column,.ui[class*="one column"].grid>.column:not(.row){width:100%}.ui[class*="two column"].grid>.row>.column,.ui[class*="two column"].grid>.column:not(.row){width:50%}.ui[class*="three column"].grid>.row>.column,.ui[class*="three column"].grid>.column:not(.row){width:33.3333333333%}.ui[class*="four column"].grid>.row>.column,.ui[class*="four column"].grid>.column:not(.row){width:25%}.ui[class*="five column"].grid>.row>.column,.ui[class*="five column"].grid>.column:not(.row){width:20%}.ui[class*="six column"].grid>.row>.column,.ui[class*="six column"].grid>.column:not(.row){width:16.6666666667%}.ui[class*="seven column"].grid>.row>.column,.ui[class*="seven column"].grid>.column:not(.row){width:14.2857142857%}.ui[class*="eight column"].grid>.row>.column,.ui[class*="eight column"].grid>.column:not(.row){width:12.5%}.ui[class*="nine column"].grid>.row>.column,.ui[class*="nine column"].grid>.column:not(.row){width:11.1111111111%}.ui[class*="ten column"].grid>.row>.column,.ui[class*="ten column"].grid>.column:not(.row){width:10%}.ui[class*="eleven column"].grid>.row>.column,.ui[class*="eleven column"].grid>.column:not(.row){width:9.0909090909%}.ui[class*="twelve column"].grid>.row>.column,.ui[class*="twelve column"].grid>.column:not(.row){width:8.3333333333%}.ui[class*="thirteen column"].grid>.row>.column,.ui[class*="thirteen column"].grid>.column:not(.row){width:7.6923076923%}.ui[class*="fourteen column"].grid>.row>.column,.ui[class*="fourteen column"].grid>.column:not(.row){width:7.1428571429%}.ui[class*="fifteen column"].grid>.row>.column,.ui[class*="fifteen column"].grid>.column:not(.row){width:6.6666666667%}.ui[class*="sixteen column"].grid>.row>.column,.ui[class*="sixteen column"].grid>.column:not(.row){width:6.25%}.ui.grid>[class*="one column"].row>.column{width:100% !important}.ui.grid>[class*="two column"].row>.column{width:50% !important}.ui.grid>[class*="three column"].row>.column{width:33.3333333333% !important}.ui.grid>[class*="four column"].row>.column{width:25% !important}.ui.grid>[class*="five column"].row>.column{width:20% !important}.ui.grid>[class*="six column"].row>.column{width:16.6666666667% !important}.ui.grid>[class*="seven column"].row>.column{width:14.2857142857% !important}.ui.grid>[class*="eight column"].row>.column{width:12.5% !important}.ui.grid>[class*="nine column"].row>.column{width:11.1111111111% !important}.ui.grid>[class*="ten column"].row>.column{width:10% !important}.ui.grid>[class*="eleven column"].row>.column{width:9.0909090909% !important}.ui.grid>[class*="twelve column"].row>.column{width:8.3333333333% !important}.ui.grid>[class*="thirteen column"].row>.column{width:7.6923076923% !important}.ui.grid>[class*="fourteen column"].row>.column{width:7.1428571429% !important}.ui.grid>[class*="fifteen column"].row>.column{width:6.6666666667% !important}.ui.grid>[class*="sixteen column"].row>.column{width:6.25% !important}.ui.grid>.row>[class*="one wide"].column,.ui.grid>.column.row>[class*="one wide"].column,.ui.grid>[class*="one wide"].column,.ui.column.grid>[class*="one wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="one wide"].column{width:6.25% !important}.ui.grid>.row>[class*="two wide"].co,.ui.grid>.column.row>[class*="two wide"].column,.ui.grid>[class*="two wide"].column,.ui.column.grid>[class*="two wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="two wide"].column{width:12.5% !important}.ui.grid>.row>[class*="three wide"].column,.ui.grid>.column.row>[class*="three wide"].column,.ui.grid>[class*="three wide"].column,.ui.column.grid>[class*="three wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="three wide"].column{width:18.75% !important}.ui.grid>.row>[class*="four wide"].column,.ui.grid>.column.row>[class*="four wide"].column,.ui.grid>[class*="four wide"].column,.ui.column.grid>[class*="four wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="four wide"].column{width:25% !important}.ui.grid>.row>[class*="five wide"].column,.ui.grid>.column.row>[class*="five wide"].column,.ui.grid>[class*="five wide"].column,.ui.column.grid>[class*="five wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="five wide"].column{width:31.25% !important}.ui.grid>.row>[class*="six wide"].column,.ui.grid>.column.row>[class*="six wide"].column,.ui.grid>[class*="six wide"].column,.ui.column.grid>[class*="six wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="six wide"].column{width:37.5% !important}.ui.grid>.row>[class*="seven wide"].column,.ui.grid>.column.row>[class*="seven wide"].column,.ui.grid>[class*="seven wide"].column,.ui.column.grid>[class*="seven wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="seven wide"].column{width:43.75% !important}.ui.grid>.row>[class*="eight wide"].column,.ui.grid>.column.row>[class*="eight wide"].column,.ui.grid>[class*="eight wide"].column,.ui.column.grid>[class*="eight wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="eight wide"].column{width:50% !important}.ui.grid>.row>[class*="nine wide"].column,.ui.grid>.column.row>[class*="nine wide"].column,.ui.grid>[class*="nine wide"].column,.ui.column.grid>[class*="nine wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="nine wide"].column{width:56.25% !important}.ui.grid>.row>[class*="ten wide"].column,.ui.grid>.column.row>[class*="ten wide"].column,.ui.grid>[class*="ten wide"].column,.ui.column.grid>[class*="ten wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="ten wide"].column{width:62.5% !important}.ui.grid>.row>[class*="eleven wide"].column,.ui.grid>.column.row>[class*="eleven wide"].column,.ui.grid>[class*="eleven wide"].column,.ui.column.grid>[class*="eleven wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="eleven wide"].column{width:68.75% !important}.ui.grid>.row>[class*="twelve wide"].column,.ui.grid>.column.row>[class*="twelve wide"].column,.ui.grid>[class*="twelve wide"].column,.ui.column.grid>[class*="twelve wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="twelve wide"].column{width:75% !important}.ui.grid>.row>[class*="thirteen wide"].column,.ui.grid>.column.row>[class*="thirteen wide"].column,.ui.grid>[class*="thirteen wide"].column,.ui.column.grid>[class*="thirteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="thirteen wide"].column{width:81.25% !important}.ui.grid>.row>[class*="fourteen wide"].column,.ui.grid>.column.row>[class*="fourteen wide"].column,.ui.grid>[class*="fourteen wide"].column,.ui.column.grid>[class*="fourteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="fourteen wide"].column{width:87.5% !important}.ui.grid>.row>[class*="fifteen wide"].column,.ui.grid>.column.row>[class*="fifteen wide"].column,.ui.grid>[class*="fifteen wide"].column,.ui.column.grid>[class*="fifteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="fifteen wide"].column{width:93.75% !important}.ui.grid>.row>[class*="sixteen wide"].column,.ui.grid>.column.row>[class*="sixteen wide"].column,.ui.grid>[class*="sixteen wide"].column,.ui.column.grid>[class*="sixteen wide"].column,.ui.grid>.block-editor-block-list__layout>[class*="sixteen wide"].column{width:100% !important}@media only screen and (min-width: 320px)and (max-width: 767px){.ui.grid>.row>[class*="one wide mobile"].column,.ui.grid>.column.row>[class*="one wide mobile"].column,.ui.grid>[class*="one wide mobile"].column,.ui.column.grid>[class*="one wide mobile"].column{width:6.25% !important}.ui.grid>.row>[class*="two wide mobile"].column,.ui.grid>.column.row>[class*="two wide mobile"].column,.ui.grid>[class*="two wide mobile"].column,.ui.column.grid>[class*="two wide mobile"].column{width:12.5% !important}.ui.grid>.row>[class*="three wide mobile"].column,.ui.grid>.column.row>[class*="three wide mobile"].column,.ui.grid>[class*="three wide mobile"].column,.ui.column.grid>[class*="three wide mobile"].column{width:18.75% !important}.ui.grid>.row>[class*="four wide mobile"].column,.ui.grid>.column.row>[class*="four wide mobile"].column,.ui.grid>[class*="four wide mobile"].column,.ui.column.grid>[class*="four wide mobile"].column{width:25% !important}.ui.grid>.row>[class*="five wide mobile"].column,.ui.grid>.column.row>[class*="five wide mobile"].column,.ui.grid>[class*="five wide mobile"].column,.ui.column.grid>[class*="five wide mobile"].column{width:31.25% !important}.ui.grid>.row>[class*="six wide mobile"].column,.ui.grid>.column.row>[class*="six wide mobile"].column,.ui.grid>[class*="six wide mobile"].column,.ui.column.grid>[class*="six wide mobile"].column{width:37.5% !important}.ui.grid>.row>[class*="seven wide mobile"].column,.ui.grid>.column.row>[class*="seven wide mobile"].column,.ui.grid>[class*="seven wide mobile"].column,.ui.column.grid>[class*="seven wide mobile"].column{width:43.75% !important}.ui.grid>.row>[class*="eight wide mobile"].column,.ui.grid>.column.row>[class*="eight wide mobile"].column,.ui.grid>[class*="eight wide mobile"].column,.ui.column.grid>[class*="eight wide mobile"].column{width:50% !important}.ui.grid>.row>[class*="nine wide mobile"].column,.ui.grid>.column.row>[class*="nine wide mobile"].column,.ui.grid>[class*="nine wide mobile"].column,.ui.column.grid>[class*="nine wide mobile"].column{width:56.25% !important}.ui.grid>.row>[class*="ten wide mobile"].column,.ui.grid>.column.row>[class*="ten wide mobile"].column,.ui.grid>[class*="ten wide mobile"].column,.ui.column.grid>[class*="ten wide mobile"].column{width:62.5% !important}.ui.grid>.row>[class*="eleven wide mobile"].column,.ui.grid>.column.row>[class*="eleven wide mobile"].column,.ui.grid>[class*="eleven wide mobile"].column,.ui.column.grid>[class*="eleven wide mobile"].column{width:68.75% !important}.ui.grid>.row>[class*="twelve wide mobile"].column,.ui.grid>.column.row>[class*="twelve wide mobile"].column,.ui.grid>[class*="twelve wide mobile"].column,.ui.column.grid>[class*="twelve wide mobile"].column{width:75% !important}.ui.grid>.row>[class*="thirteen wide mobile"].column,.ui.grid>.column.row>[class*="thirteen wide mobile"].column,.ui.grid>[class*="thirteen wide mobile"].column,.ui.column.grid>[class*="thirteen wide mobile"].column{width:81.25% !important}.ui.grid>.row>[class*="fourteen wide mobile"].column,.ui.grid>.column.row>[class*="fourteen wide mobile"].column,.ui.grid>[class*="fourteen wide mobile"].column,.ui.column.grid>[class*="fourteen wide mobile"].column{width:87.5% !important}.ui.grid>.row>[class*="fifteen wide mobile"].column,.ui.grid>.column.row>[class*="fifteen wide mobile"].column,.ui.grid>[class*="fifteen wide mobile"].column,.ui.column.grid>[class*="fifteen wide mobile"].column{width:93.75% !important}.ui.grid>.row>[class*="sixteen wide mobile"].column,.ui.grid>.column.row>[class*="sixteen wide mobile"].column,.ui.grid>[class*="sixteen wide mobile"].column,.ui.column.grid>[class*="sixteen wide mobile"].column{width:100% !important}}@media only screen and (min-width: 768px)and (max-width: 991px){.ui.grid>.row>[class*="one wide tablet"].column,.ui.grid>.column.row>[class*="one wide tablet"].column,.ui.grid>[class*="one wide tablet"].column,.ui.column.grid>[class*="one wide tablet"].column{width:6.25% !important}.ui.grid>.row>[class*="two wide tablet"].column,.ui.grid>.column.row>[class*="two wide tablet"].column,.ui.grid>[class*="two wide tablet"].column,.ui.column.grid>[class*="two wide tablet"].column{width:12.5% !important}.ui.grid>.row>[class*="three wide tablet"].column,.ui.grid>.column.row>[class*="three wide tablet"].column,.ui.grid>[class*="three wide tablet"].column,.ui.column.grid>[class*="three wide tablet"].column{width:18.75% !important}.ui.grid>.row>[class*="four wide tablet"].column,.ui.grid>.column.row>[class*="four wide tablet"].column,.ui.grid>[class*="four wide tablet"].column,.ui.column.grid>[class*="four wide tablet"].column{width:25% !important}.ui.grid>.row>[class*="five wide tablet"].column,.ui.grid>.column.row>[class*="five wide tablet"].column,.ui.grid>[class*="five wide tablet"].column,.ui.column.grid>[class*="five wide tablet"].column{width:31.25% !important}.ui.grid>.row>[class*="six wide tablet"].column,.ui.grid>.column.row>[class*="six wide tablet"].column,.ui.grid>[class*="six wide tablet"].column,.ui.column.grid>[class*="six wide tablet"].column{width:37.5% !important}.ui.grid>.row>[class*="seven wide tablet"].column,.ui.grid>.column.row>[class*="seven wide tablet"].column,.ui.grid>[class*="seven wide tablet"].column,.ui.column.grid>[class*="seven wide tablet"].column{width:43.75% !important}.ui.grid>.row>[class*="eight wide tablet"].column,.ui.grid>.column.row>[class*="eight wide tablet"].column,.ui.grid>[class*="eight wide tablet"].column,.ui.column.grid>[class*="eight wide tablet"].column{width:50% !important}.ui.grid>.row>[class*="nine wide tablet"].column,.ui.grid>.column.row>[class*="nine wide tablet"].column,.ui.grid>[class*="nine wide tablet"].column,.ui.column.grid>[class*="nine wide tablet"].column{width:56.25% !important}.ui.grid>.row>[class*="ten wide tablet"].column,.ui.grid>.column.row>[class*="ten wide tablet"].column,.ui.grid>[class*="ten wide tablet"].column,.ui.column.grid>[class*="ten wide tablet"].column{width:62.5% !important}.ui.grid>.row>[class*="eleven wide tablet"].column,.ui.grid>.column.row>[class*="eleven wide tablet"].column,.ui.grid>[class*="eleven wide tablet"].column,.ui.column.grid>[class*="eleven wide tablet"].column{width:68.75% !important}.ui.grid>.row>[class*="twelve wide tablet"].column,.ui.grid>.column.row>[class*="twelve wide tablet"].column,.ui.grid>[class*="twelve wide tablet"].column,.ui.column.grid>[class*="twelve wide tablet"].column{width:75% !important}.ui.grid>.row>[class*="thirteen wide tablet"].column,.ui.grid>.column.row>[class*="thirteen wide tablet"].column,.ui.grid>[class*="thirteen wide tablet"].column,.ui.column.grid>[class*="thirteen wide tablet"].column{width:81.25% !important}.ui.grid>.row>[class*="fourteen wide tablet"].column,.ui.grid>.column.row>[class*="fourteen wide tablet"].column,.ui.grid>[class*="fourteen wide tablet"].column,.ui.column.grid>[class*="fourteen wide tablet"].column{width:87.5% !important}.ui.grid>.row>[class*="fifteen wide tablet"].column,.ui.grid>.column.row>[class*="fifteen wide tablet"].column,.ui.grid>[class*="fifteen wide tablet"].column,.ui.column.grid>[class*="fifteen wide tablet"].column{width:93.75% !important}.ui.grid>.row>[class*="sixteen wide tablet"].column,.ui.grid>.column.row>[class*="sixteen wide tablet"].column,.ui.grid>[class*="sixteen wide tablet"].column,.ui.column.grid>[class*="sixteen wide tablet"].column{width:100% !important}}@media only screen and (min-width: 992px){.ui.grid>.row>[class*="one wide computer"].column,.ui.grid>.column.row>[class*="one wide computer"].column,.ui.grid>[class*="one wide computer"].column,.ui.column.grid>[class*="one wide computer"].column{width:6.25% !important}.ui.grid>.row>[class*="two wide computer"].column,.ui.grid>.column.row>[class*="two wide computer"].column,.ui.grid>[class*="two wide computer"].column,.ui.column.grid>[class*="two wide computer"].column{width:12.5% !important}.ui.grid>.row>[class*="three wide computer"].column,.ui.grid>.column.row>[class*="three wide computer"].column,.ui.grid>[class*="three wide computer"].column,.ui.column.grid>[class*="three wide computer"].column{width:18.75% !important}.ui.grid>.row>[class*="four wide computer"].column,.ui.grid>.column.row>[class*="four wide computer"].column,.ui.grid>[class*="four wide computer"].column,.ui.column.grid>[class*="four wide computer"].column{width:25% !important}.ui.grid>.row>[class*="five wide computer"].column,.ui.grid>.column.row>[class*="five wide computer"].column,.ui.grid>[class*="five wide computer"].column,.ui.column.grid>[class*="five wide computer"].column{width:31.25% !important}.ui.grid>.row>[class*="six wide computer"].column,.ui.grid>.column.row>[class*="six wide computer"].column,.ui.grid>[class*="six wide computer"].column,.ui.column.grid>[class*="six wide computer"].column{width:37.5% !important}.ui.grid>.row>[class*="seven wide computer"].column,.ui.grid>.column.row>[class*="seven wide computer"].column,.ui.grid>[class*="seven wide computer"].column,.ui.column.grid>[class*="seven wide computer"].column{width:43.75% !important}.ui.grid>.row>[class*="eight wide computer"].column,.ui.grid>.column.row>[class*="eight wide computer"].column,.ui.grid>[class*="eight wide computer"].column,.ui.column.grid>[class*="eight wide computer"].column{width:50% !important}.ui.grid>.row>[class*="nine wide computer"].column,.ui.grid>.column.row>[class*="nine wide computer"].column,.ui.grid>[class*="nine wide computer"].column,.ui.column.grid>[class*="nine wide computer"].column{width:56.25% !important}.ui.grid>.row>[class*="ten wide computer"].column,.ui.grid>.column.row>[class*="ten wide computer"].column,.ui.grid>[class*="ten wide computer"].column,.ui.column.grid>[class*="ten wide computer"].column{width:62.5% !important}.ui.grid>.row>[class*="eleven wide computer"].column,.ui.grid>.column.row>[class*="eleven wide computer"].column,.ui.grid>[class*="eleven wide computer"].column,.ui.column.grid>[class*="eleven wide computer"].column{width:68.75% !important}.ui.grid>.row>[class*="twelve wide computer"].column,.ui.grid>.column.row>[class*="twelve wide computer"].column,.ui.grid>[class*="twelve wide computer"].column,.ui.column.grid>[class*="twelve wide computer"].column{width:75% !important}.ui.grid>.row>[class*="thirteen wide computer"].column,.ui.grid>.column.row>[class*="thirteen wide computer"].column,.ui.grid>[class*="thirteen wide computer"].column,.ui.column.grid>[class*="thirteen wide computer"].column{width:81.25% !important}.ui.grid>.row>[class*="fourteen wide computer"].column,.ui.grid>.column.row>[class*="fourteen wide computer"].column,.ui.grid>[class*="fourteen wide computer"].column,.ui.column.grid>[class*="fourteen wide computer"].column{width:87.5% !important}.ui.grid>.row>[class*="fifteen wide computer"].column,.ui.grid>.column.row>[class*="fifteen wide computer"].column,.ui.grid>[class*="fifteen wide computer"].column,.ui.column.grid>[class*="fifteen wide computer"].column{width:93.75% !important}.ui.grid>.row>[class*="sixteen wide computer"].column,.ui.grid>.column.row>[class*="sixteen wide computer"].column,.ui.grid>[class*="sixteen wide computer"].column,.ui.column.grid>[class*="sixteen wide computer"].column{width:100% !important}}@media only screen and (min-width: 1919px)and (max-width: 1919px){.ui.grid>.row>[class*="one wide large screen"].column,.ui.grid>.column.row>[class*="one wide large screen"].column,.ui.grid>[class*="one wide large screen"].column,.ui.column.grid>[class*="one wide large screen"].column{width:6.25% !important}.ui.grid>.row>[class*="two wide large screen"].column,.ui.grid>.column.row>[class*="two wide large screen"].column,.ui.grid>[class*="two wide large screen"].column,.ui.column.grid>[class*="two wide large screen"].column{width:12.5% !important}.ui.grid>.row>[class*="three wide large screen"].column,.ui.grid>.column.row>[class*="three wide large screen"].column,.ui.grid>[class*="three wide large screen"].column,.ui.column.grid>[class*="three wide large screen"].column{width:18.75% !important}.ui.grid>.row>[class*="four wide large screen"].column,.ui.grid>.column.row>[class*="four wide large screen"].column,.ui.grid>[class*="four wide large screen"].column,.ui.column.grid>[class*="four wide large screen"].column{width:25% !important}.ui.grid>.row>[class*="five wide large screen"].column,.ui.grid>.column.row>[class*="five wide large screen"].column,.ui.grid>[class*="five wide large screen"].column,.ui.column.grid>[class*="five wide large screen"].column{width:31.25% !important}.ui.grid>.row>[class*="six wide large screen"].column,.ui.grid>.column.row>[class*="six wide large screen"].column,.ui.grid>[class*="six wide large screen"].column,.ui.column.grid>[class*="six wide large screen"].column{width:37.5% !important}.ui.grid>.row>[class*="seven wide large screen"].column,.ui.grid>.column.row>[class*="seven wide large screen"].column,.ui.grid>[class*="seven wide large screen"].column,.ui.column.grid>[class*="seven wide large screen"].column{width:43.75% !important}.ui.grid>.row>[class*="eight wide large screen"].column,.ui.grid>.column.row>[class*="eight wide large screen"].column,.ui.grid>[class*="eight wide large screen"].column,.ui.column.grid>[class*="eight wide large screen"].column{width:50% !important}.ui.grid>.row>[class*="nine wide large screen"].column,.ui.grid>.column.row>[class*="nine wide large screen"].column,.ui.grid>[class*="nine wide large screen"].column,.ui.column.grid>[class*="nine wide large screen"].column{width:56.25% !important}.ui.grid>.row>[class*="ten wide large screen"].column,.ui.grid>.column.row>[class*="ten wide large screen"].column,.ui.grid>[class*="ten wide large screen"].column,.ui.column.grid>[class*="ten wide large screen"].column{width:62.5% !important}.ui.grid>.row>[class*="eleven wide large screen"].column,.ui.grid>.column.row>[class*="eleven wide large screen"].column,.ui.grid>[class*="eleven wide large screen"].column,.ui.column.grid>[class*="eleven wide large screen"].column{width:68.75% !important}.ui.grid>.row>[class*="twelve wide large screen"].column,.ui.grid>.column.row>[class*="twelve wide large screen"].column,.ui.grid>[class*="twelve wide large screen"].column,.ui.column.grid>[class*="twelve wide large screen"].column{width:75% !important}.ui.grid>.row>[class*="thirteen wide large screen"].column,.ui.grid>.column.row>[class*="thirteen wide large screen"].column,.ui.grid>[class*="thirteen wide large screen"].column,.ui.column.grid>[class*="thirteen wide large screen"].column{width:81.25% !important}.ui.grid>.row>[class*="fourteen wide large screen"].column,.ui.grid>.column.row>[class*="fourteen wide large screen"].column,.ui.grid>[class*="fourteen wide large screen"].column,.ui.column.grid>[class*="fourteen wide large screen"].column{width:87.5% !important}.ui.grid>.row>[class*="fifteen wide large screen"].column,.ui.grid>.column.row>[class*="fifteen wide large screen"].column,.ui.grid>[class*="fifteen wide large screen"].column,.ui.column.grid>[class*="fifteen wide large screen"].column{width:93.75% !important}.ui.grid>.row>[class*="sixteen wide large screen"].column,.ui.grid>.column.row>[class*="sixteen wide large screen"].column,.ui.grid>[class*="sixteen wide large screen"].column,.ui.column.grid>[class*="sixteen wide large screen"].column{width:100% !important}}@media only screen and (min-width: 1920px){.ui.grid>.row>[class*="one wide widescreen"].column,.ui.grid>.column.row>[class*="one wide widescreen"].column,.ui.grid>[class*="one wide widescreen"].column,.ui.column.grid>[class*="one wide widescreen"].column{width:6.25% !important}.ui.grid>.row>[class*="two wide widescreen"].column,.ui.grid>.column.row>[class*="two wide widescreen"].column,.ui.grid>[class*="two wide widescreen"].column,.ui.column.grid>[class*="two wide widescreen"].column{width:12.5% !important}.ui.grid>.row>[class*="three wide widescreen"].column,.ui.grid>.column.row>[class*="three wide widescreen"].column,.ui.grid>[class*="three wide widescreen"].column,.ui.column.grid>[class*="three wide widescreen"].column{width:18.75% !important}.ui.grid>.row>[class*="four wide widescreen"].column,.ui.grid>.column.row>[class*="four wide widescreen"].column,.ui.grid>[class*="four wide widescreen"].column,.ui.column.grid>[class*="four wide widescreen"].column{width:25% !important}.ui.grid>.row>[class*="five wide widescreen"].column,.ui.grid>.column.row>[class*="five wide widescreen"].column,.ui.grid>[class*="five wide widescreen"].column,.ui.column.grid>[class*="five wide widescreen"].column{width:31.25% !important}.ui.grid>.row>[class*="six wide widescreen"].column,.ui.grid>.column.row>[class*="six wide widescreen"].column,.ui.grid>[class*="six wide widescreen"].column,.ui.column.grid>[class*="six wide widescreen"].column{width:37.5% !important}.ui.grid>.row>[class*="seven wide widescreen"].column,.ui.grid>.column.row>[class*="seven wide widescreen"].column,.ui.grid>[class*="seven wide widescreen"].column,.ui.column.grid>[class*="seven wide widescreen"].column{width:43.75% !important}.ui.grid>.row>[class*="eight wide widescreen"].column,.ui.grid>.column.row>[class*="eight wide widescreen"].column,.ui.grid>[class*="eight wide widescreen"].column,.ui.column.grid>[class*="eight wide widescreen"].column{width:50% !important}.ui.grid>.row>[class*="nine wide widescreen"].column,.ui.grid>.column.row>[class*="nine wide widescreen"].column,.ui.grid>[class*="nine wide widescreen"].column,.ui.column.grid>[class*="nine wide widescreen"].column{width:56.25% !important}.ui.grid>.row>[class*="ten wide widescreen"].column,.ui.grid>.column.row>[class*="ten wide widescreen"].column,.ui.grid>[class*="ten wide widescreen"].column,.ui.column.grid>[class*="ten wide widescreen"].column{width:62.5% !important}.ui.grid>.row>[class*="eleven wide widescreen"].column,.ui.grid>.column.row>[class*="eleven wide widescreen"].column,.ui.grid>[class*="eleven wide widescreen"].column,.ui.column.grid>[class*="eleven wide widescreen"].column{width:68.75% !important}.ui.grid>.row>[class*="twelve wide widescreen"].column,.ui.grid>.column.row>[class*="twelve wide widescreen"].column,.ui.grid>[class*="twelve wide widescreen"].column,.ui.column.grid>[class*="twelve wide widescreen"].column{width:75% !important}.ui.grid>.row>[class*="thirteen wide widescreen"].column,.ui.grid>.column.row>[class*="thirteen wide widescreen"].column,.ui.grid>[class*="thirteen wide widescreen"].column,.ui.column.grid>[class*="thirteen wide widescreen"].column{width:81.25% !important}.ui.grid>.row>[class*="fourteen wide widescreen"].column,.ui.grid>.column.row>[class*="fourteen wide widescreen"].column,.ui.grid>[class*="fourteen wide widescreen"].column,.ui.column.grid>[class*="fourteen wide widescreen"].column{width:87.5% !important}.ui.grid>.row>[class*="fifteen wide widescreen"].column,.ui.grid>.column.row>[class*="fifteen wide widescreen"].column,.ui.grid>[class*="fifteen wide widescreen"].column,.ui.column.grid>[class*="fifteen wide widescreen"].column{width:93.75% !important}.ui.grid>.row>[class*="sixteen wide widescreen"].column,.ui.grid>.column.row>[class*="sixteen wide widescreen"].column,.ui.grid>[class*="sixteen wide widescreen"].column,.ui.column.grid>[class*="sixteen wide widescreen"].column{width:100% !important}}.ui.grid{display:flex;flex-direction:row;flex-wrap:wrap;align-items:stretch;padding:0em;margin-bottom:0}.ui.grid{margin-left:-1.5rem;margin-right:-1.5rem}.ui.relaxed.grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.fitted.grid{margin-top:-1rem;margin-bottom:-1rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{position:relative;display:inline-block;width:6.25%;padding-left:1.5rem;padding-right:1.5rem;vertical-align:top}.ui.grid>.column:not(.row).fitted,.ui.grid>.row>.column.fitted{padding-bottom:0}.ui.grid>*{padding-left:1.5rem;padding-right:1.5rem}.ui.grid>.column:empty{display:none !important}.ui.grid>.column:not(.row){padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.column{margin-top:0em;margin-bottom:0em}.ui.grid>.wp-block-prc-block-column.column:not(.row){padding-top:0em;padding-bottom:0em}.ui.grid>.row{position:relative;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:inherit;align-items:stretch;width:100% !important;padding:0rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>img,.ui.grid>.row>.column>img{max-width:100%}.content-area>.ui.grid:not(:first-child),.content-area>.ui.grid+.wp-block-group.has-background,.prc-block-area>.ui.grid:not(:first-child),.prc-block-area>.ui.grid+.wp-block-group.has-background{margin-top:4rem}.content-area .ui.grid .ui.grid,.prc-block-area .ui.grid .ui.grid,.ui.grid .block-editor-block-list__layout .ui.grid{margin-bottom:0}.ui.grid>.column[class*="attached top"],.ui.grid .row>.column[class*="attached top"]{padding-top:0px !important}.ui.grid>.column[class*="attached bottom"],.ui.grid .row>.column[class*="attached bottom"]{padding-bottom:0px !important}.ui.grid>.ui.grid:first-child{margin-top:0em}.ui.grid>.ui.grid:last-child{margin-bottom:0em}.ui.grid .row+.ui.divider{flex-grow:1;margin:1rem 1.5rem}.ui.grid .column+.ui.vertical.divider{height:calc(50% - 1)}.ui.centered.grid,.ui.centered.grid>.row,.ui.grid>.centered.row{text-align:center;justify-content:center}.ui.centered.grid>.column:not(.aligned):not(.justified):not(.row),.ui.centered.grid>.row>.column:not(.aligned):not(.justified),.ui.grid .centered.row>.column:not(.aligned):not(.justified){text-align:left}.ui.grid>.centered.column,.ui.grid>.row>.centered.column{display:block;margin-left:auto;margin-right:auto}.ui.compact.grid{margin-left:-0.75rem;margin-right:-0.75rem}.ui.compact.grid>.column:not(.row),.ui.compact.grid>.row>.column,.ui.grid>.compact.row>.column{padding-left:.75rem;padding-right:.75rem}.ui.relaxed.grid>.column:not(.row),.ui.relaxed.grid>.row>.column,.ui.grid>.relaxed.row>.column{padding-left:2.5rem;padding-right:2.5rem}.ui.relaxed.grid .row+.ui.divider,.ui.grid .relaxed.row+.ui.divider{margin-left:2.5rem;margin-right:2.5rem}.ui.divided.grid>.column>.ui.grid>.ui.divided.row>.column:after,.ui.grid>.divided.row>.column>.ui.grid>.ui.divided.row>.column:after{height:100%}.ui.divided.grid:not(.stackable)>.column:not(:first-child):not(.is-selected)::after,.ui.divided.grid:not(.stackable)>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected)::after,.ui.grid>.divided.row:not(.stackable)>.column:not(:first-child):not(.is-selected)::after,.ui.grid>.divided.row:not(.stackable)>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected)::after{display:block;content:"";position:absolute;background-color:rgba(34,36,38,.15);width:1px;height:calc(100% - 1rem);top:inherit;bottom:0;left:0}@media only screen and (min-width: 767px){.ui.divided.grid.stackable>.column:not(:first-child):not(.is-selected)::after,.ui.divided.grid.stackable>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected)::after,.ui.grid>.divided.row.stackable>.column:not(:first-child):not(.is-selected)::after,.ui.grid>.divided.row.stackable>.wide.column+div:not([class*="sixteen wide column"]):not(:first-child):not(.is-selected)::after{display:block;content:"";position:absolute;background-color:rgba(34,36,38,.15);width:1px;height:calc(100% - 1rem);top:inherit;bottom:0;left:0}}.ui.divided.grid>.wide.column+div[class*="sixteen wide column"],.ui.grid>.divided.row>.wide.column+div[class*="sixteen wide column"]{margin-top:1.5rem;padding-top:1.5rem}.ui.divided.grid>.wide.column+div[class*="sixteen wide column"]:not(.is-selected)::after,.ui.grid>.divided.row>.wide.column+div[class*="sixteen wide column"]:not(.is-selected)::after{display:block;content:"";position:absolute;background-color:rgba(34,36,38,.15);width:calc(100% - 3rem);height:1px;top:0;bottom:inherit;left:inherit}.ui.divided.grid>.wide.column+div[class*="sixteen wide column"]:not(.is-selected)::after,.ui.grid>.divided.row>.wide.column+div[class*="sixteen wide column"]:not(.is-selected)::after{display:none}@media only screen and (min-width: 767px){.ui.divided.grid[class*="has section heading"]>.column::after,.ui.divided.grid[class*="has section heading"]>.column::before{height:calc(100% - 45px) !important}}@media only screen and (min-width: 767px){.ui.grid>.divided.row[class*="has section heading"]>.column::after,.ui.grid>.divided.row[class*="has section heading"]>.column::before{height:calc(100% - 30px) !important}}.ui[class*="top aligned"].grid>.column:not(.row),.ui[class*="top aligned"].grid>.row>.column,.ui.grid>[class*="top aligned"].row>.column,.ui.grid>[class*="top aligned"].column:not(.row),.ui.grid>.row>[class*="top aligned"].column{flex-direction:column;vertical-align:top;align-self:flex-start !important}.ui[class*="middle aligned"].grid>.column:not(.row),.ui[class*="middle aligned"].grid>.row>.column,.ui.grid>[class*="middle aligned"].row>.column,.ui.grid>[class*="middle aligned"].column:not(.row),.ui.grid>.row>[class*="middle aligned"].column{flex-direction:column;vertical-align:middle;align-self:center !important}.ui[class*="bottom aligned"].grid>.column:not(.row),.ui[class*="bottom aligned"].grid>.row>.column,.ui.grid>[class*="bottom aligned"].row>.column,.ui.grid>[class*="bottom aligned"].column:not(.row),.ui.grid>.row>[class*="bottom aligned"].column{flex-direction:column;vertical-align:bottom;align-self:flex-end !important}.ui.stretched.grid>.row>.column,.ui.stretched.grid>.column,.ui.grid>.stretched.row>.column,.ui.grid>.stretched.column:not(.row),.ui.grid>.row>.stretched.column{display:inline-flex !important;align-self:stretch;flex-direction:column}.ui.stretched.grid>.row>.column>*,.ui.stretched.grid>.column>*,.ui.grid>.stretched.row>.column>*,.ui.grid>.stretched.column:not(.row)>*,.ui.grid>.row>.stretched.column>*{flex-grow:1}.ui[class*="left aligned"].grid>.column,.ui[class*="left aligned"].grid>.row>.column,.ui.grid>[class*="left aligned"].row>.column,.ui.grid>[class*="left aligned"].column.column,.ui.grid>.row>[class*="left aligned"].column.column{text-align:left;align-self:inherit}.ui[class*="center aligned"].grid>.column,.ui[class*="center aligned"].grid>.row>.column,.ui.grid>[class*="center aligned"].row>.column,.ui.grid>[class*="center aligned"].column.column,.ui.grid>.row>[class*="center aligned"].column.column{text-align:center;align-self:inherit}.ui[class*="center aligned"].grid{justify-content:center}.ui[class*="right aligned"].grid>.column,.ui[class*="right aligned"].grid>.row>.column,.ui.grid>[class*="right aligned"].row>.column,.ui.grid>[class*="right aligned"].column.column,.ui.grid>.row>[class*="right aligned"].column.column{text-align:right;align-self:inherit}.ui.justified.grid>.column,.ui.justified.grid>.row>.column,.ui.grid>.justified.row>.column,.ui.grid>.justified.column.column,.ui.grid>.row>.justified.column.column{text-align:justify;hyphens:auto}.ui[class*="equal width"].grid>.column:not(.row),.ui[class*="equal width"].grid>.row>.column,.ui.grid>[class*="equal width"].row>.column,.ui[class*="equal width"].grid>.block-editor-block-list__layout>.column:not(.row){display:inline-block;flex-grow:1}.ui[class*="equal width"].grid>.wide.column,.ui[class*="equal width"].grid>.row>.wide.column,.ui.grid>[class*="equal width"].row>.wide.column{flex-grow:0}.ui[class*="equal width"].grid>.spanned.column,.ui[class*="equal width"].grid>.row>.spanned.column,.ui.grid>[class*="equal width"].row>.spanned.column{flex-basis:39.5%}@media only screen and (max-width: 767px){.ui.stackable.grid{width:auto;margin-left:0em !important;margin-right:0em !important}.ui.stackable.grid>.row>.wide.column,.ui.stackable.grid>.wide.column,.ui.stackable.grid>.column.grid>.column,.ui.stackable.grid>.column.row>.column,.ui.stackable.grid>.row>.column,.ui.stackable.grid>.column:not(.row),.ui.grid>.stackable.row>.column{width:100% !important;margin:0em 0em !important;box-shadow:none !important;padding:1rem 1.5rem !important}.ui.stackable.grid:not(.vertically)>.row{margin:0em;padding:0em}.ui.stackable.grid>.column.wp-block-prc-block-column:not(.row),.ui.stackable.grid>.column.wp-block-prc-block-column:not(.row)>.ui.stackable.grid>.column.wp-block-prc-block-column:not(.row){padding-left:0em !important;padding-right:0em !important}.ui.container>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.row>.column,.ui.container>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.column>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.column>.ui.stackable.grid>.column>.ui.stackable.grid>.column{padding-left:0em !important;padding-right:0em !important}.ui.stackable.celled.grid>.row:first-child>.column:first-child,.ui.stackable.celled.grid>.column:not(.row):first-child{border-top:none !important}.ui.inverted.stackable.celled.grid>.column:not(.row),.ui.inverted.stackable.celled.grid>.row>.column{border-top:1px solid rgba(255,255,255,.1)}.ui.stackable.divided:not(.vertically).grid>.column:not(.row):first-child .ui.stackable.divided:not(.vertically).grid>.row>.column:first-child{padding-top:0px !important}.ui.stackable.celled.grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.celled.grid>.row>.column,.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-top:2rem !important;padding-bottom:2rem !important}.ui.stackable.celled.grid>.row{box-shadow:none !important}.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-left:0em !important;padding-right:0em !important}}@media only screen and (min-width: 320px)and (max-width: 767px){.mobile-order-zero{order:0}.mobile-order-one{order:1}.mobile-order-two{order:2}.mobile-order-three{order:3}.mobile-order-four{order:4}[class*=mobile-order-].mobile-order-zero::before{content:"";position:absolute;background-color:rgba(34,36,38,.15);width:1px;height:calc(100% - 1rem);bottom:0;right:0}[class*=mobile-order-].mobile-order-zero::after{display:none !important}}@media only screen and (min-width: 768px)and (max-width: 991px){[class*=tablet-order-].tablet-order-zero::before{content:"";position:absolute;background-color:rgba(34,36,38,.15);width:1px;height:calc(100% - 1rem);bottom:0;right:0}[class*=tablet-order-].tablet-order-zero::after{display:none !important}[class*="sixteen wide tablet"]{margin-top:1rem}[class*="sixteen wide tablet"]:before{content:"";position:absolute;background-color:rgba(34,36,38,.15);width:calc(100% - 3rem);left:1rem;height:1px;top:0}[class*="sixteen wide tablet"]:after{display:none !important}.tablet-order-zero{order:0}.tablet-order-one{order:1}.tablet-order-two{order:2}.tablet-order-three{order:3}.tablet-order-four{order:4}}@media only screen and (max-width: 767px){.ui[class*="tablet only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].row:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.mobile){display:none !important}.ui[class*="computer only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].row:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.mobile){display:none !important}.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile){display:none !important}.ui[class*="widescreen only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile){display:none !important}}@media only screen and (min-width: 768px)and (max-width: 991px){.ui[class*="mobile only"].grid.grid.grid:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].row:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.tablet){display:none !important}.ui[class*="computer only"].grid.grid.grid:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].row:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.tablet){display:none !important}.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile){display:none !important}.ui[class*="widescreen only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile){display:none !important}}@media only screen and (min-width: 992px)and (max-width: 1199px){.ui[class*="mobile only"].grid.grid.grid:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer){display:none !important}.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer){display:none !important}.ui[class*="large screen only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile){display:none !important}.ui[class*="widescreen only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile){display:none !important}}@media only screen and (min-width: 1200px)and (max-width: 1919px){.ui[class*="mobile only"].grid.grid.grid:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer){display:none !important}.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer){display:none !important}.ui[class*="widescreen only"].grid.grid.grid:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile){display:none !important}}@media only screen and (min-width: 1920px){.ui[class*="mobile only"].grid.grid.grid:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer){display:none !important}.ui[class*="tablet only"].grid.grid.grid:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer){display:none !important}}/*! + * # Semantic UI - Icon + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */@font-face{font-family:"prc-app-ui";src:url(10a97e6247ecaa960cce.eot);src:url(10a97e6247ecaa960cce.eot?y0i68r#iefix) format("embedded-opentype"),url(32d8e1d0d54ede923dcc.woff2?y0i68r) format("woff2"),url(163e81ceb5e057c35eb3.woff?y0i68r) format("woff"),url(d54befad87c7b700c633.ttf?y0i68r) format("truetype"),url(230d2e87b1d12d2af2df.svg?y0i68r#prc-app-ui) format("svg");font-style:normal;font-weight:400}@font-face{font-family:"Icons";src:url(10a97e6247ecaa960cce.eot);src:url(10a97e6247ecaa960cce.eot?y0i68r#iefix) format("embedded-opentype"),url(32d8e1d0d54ede923dcc.woff2?y0i68r) format("woff2"),url(163e81ceb5e057c35eb3.woff?y0i68r) format("woff"),url(d54befad87c7b700c633.ttf?y0i68r) format("truetype"),url(230d2e87b1d12d2af2df.svg?y0i68r#prc-app-ui) format("svg");font-style:normal;font-weight:400}:root{--prc--icon--font-family: "prc-app-ui";--prc--icon--width: $width;--prc--icon--height: $height}i.icon{display:inline-block;opacity:1;margin:0em .25rem 0em 0em;width:var(--prc--icon--width);height:var(--prc--icon--height);font-family:var(--prc--icon--font-family) !important;font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;text-decoration:inherit;text-align:center;line-height:1;vertical-align:-0.125em !important;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;backface-visibility:hidden}i.icon:before{background:none !important}i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}i.icon.hover{opacity:1 !important}i.icon.active{opacity:1 !important}i.emphasized.icon{opacity:1 !important}i.disabled.icon{opacity:.45 !important}i.fitted.icon{width:auto;margin:0em !important}i.link.icon,i.link.icons{cursor:pointer;opacity:.8;transition:opacity .1s ease}i.link.icon:hover,i.link.icons:hover{opacity:1 !important}i.circular.icon{border-radius:500em !important;line-height:1 !important;padding:.5em 0em !important;box-shadow:0em 0em 0em .1em rgba(0,0,0,.1) inset;width:2em !important;height:2em !important}i.circular.inverted.icon{border:none;box-shadow:none}i.flipped.icon,i.horizontally.flipped.icon{transform:scale(-1, 1)}i.vertically.flipped.icon{transform:scale(1, -1)}i.rotated.icon,i.right.rotated.icon,i.clockwise.rotated.icon{transform:rotate(90deg)}i.left.rotated.icon,i.counterclockwise.rotated.icon{transform:rotate(-90deg)}i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:.5em 0em !important;box-shadow:0em 0em 0em .1em rgba(0,0,0,.1) inset}i.bordered.inverted.icon{border:none;box-shadow:none}i.inverted.bordered.icon,i.inverted.circular.icon{background-color:#1b1c1d !important;color:#fff !important}i.inverted.icon{color:#fff}i.red.icon{color:#db2828 !important}i.inverted.red.icon{color:#ff695e !important}i.inverted.bordered.red.icon,i.inverted.circular.red.icon{background-color:#db2828 !important;color:#fff !important}i.orange.icon{color:#f2711c !important}i.inverted.orange.icon{color:#ff851b !important}i.inverted.bordered.orange.icon,i.inverted.circular.orange.icon{background-color:#f2711c !important;color:#fff !important}i.yellow.icon{color:#fbbd08 !important}i.inverted.yellow.icon{color:#ffe21f !important}i.inverted.bordered.yellow.icon,i.inverted.circular.yellow.icon{background-color:#fbbd08 !important;color:#fff !important}i.olive.icon{color:#b5cc18 !important}i.inverted.olive.icon{color:#d9e778 !important}i.inverted.bordered.olive.icon,i.inverted.circular.olive.icon{background-color:#b5cc18 !important;color:#fff !important}i.green.icon{color:#21ba45 !important}i.inverted.green.icon{color:#2ecc40 !important}i.inverted.bordered.green.icon,i.inverted.circular.green.icon{background-color:#21ba45 !important;color:#fff !important}i.teal.icon{color:#00b5ad !important}i.inverted.teal.icon{color:#6dffff !important}i.inverted.bordered.teal.icon,i.inverted.circular.teal.icon{background-color:#00b5ad !important;color:#fff !important}i.blue.icon{color:#2185d0 !important}i.inverted.blue.icon{color:#54c8ff !important}i.inverted.bordered.blue.icon,i.inverted.circular.blue.icon{background-color:#2185d0 !important;color:#fff !important}i.violet.icon{color:#6435c9 !important}i.inverted.violet.icon{color:#a291fb !important}i.inverted.bordered.violet.icon,i.inverted.circular.violet.icon{background-color:#6435c9 !important;color:#fff !important}i.purple.icon{color:#a333c8 !important}i.inverted.purple.icon{color:#dc73ff !important}i.inverted.bordered.purple.icon,i.inverted.circular.purple.icon{background-color:#a333c8 !important;color:#fff !important}i.pink.icon{color:#e03997 !important}i.inverted.pink.icon{color:#ff8edf !important}i.inverted.bordered.pink.icon,i.inverted.circular.pink.icon{background-color:#e03997 !important;color:#fff !important}i.brown.icon{color:#a5673f !important}i.inverted.brown.icon{color:#d67c1c !important}i.inverted.bordered.brown.icon,i.inverted.circular.brown.icon{background-color:#a5673f !important;color:#fff !important}i.grey.icon{color:#767676 !important}i.inverted.grey.icon{color:#dcddde !important}i.inverted.bordered.grey.icon,i.inverted.circular.grey.icon{background-color:#767676 !important;color:#fff !important}i.black.icon{color:#1b1c1d !important}i.inverted.black.icon{color:#545454 !important}i.inverted.bordered.black.icon,i.inverted.circular.black.icon{background-color:#1b1c1d !important;color:#fff !important}i.mini.icon,i.mini.icons{line-height:1;font-size:.7857142857rem}i.tiny.icon,i.tiny.icons{line-height:1;font-size:.8571428571rem}i.small.icon,i.small.icons{line-height:1;font-size:.9285714286rem}i.icon,i.icons{font-size:1rem}i.large.icon,i.large.icons{line-height:1;vertical-align:middle;font-size:1.1428571429rem}i.big.icon,i.big.icons{line-height:1;vertical-align:middle;font-size:1.2857142857rem}i.huge.icon,i.huge.icons{line-height:1;vertical-align:middle;font-size:1.4285714286rem}i.massive.icon,i.massive.icons{line-height:1;vertical-align:middle;font-size:1.7142857143rem}i.icons{display:inline-block;position:relative;line-height:1}i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0em;margin:0}i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:.25rem}i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:.45em;text-shadow:-2px 0 #fff,0px 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff}i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}i.icons .inverted.corner.icon{text-shadow:-2px 0 #1b1c1d,0px 0 #1b1c1d,-1px 1px 0 #1b1c1d,1px 1px 0 #1b1c1d}.icon.accessible.icon::before{content:""}.icon.address.book::before{content:""}.icon.address.card::before{content:""}.icon.adjust::before{content:""}.icon.adversal::before{content:""}.icon.align.center::before{content:""}.icon.align.justify::before{content:""}.icon.align.left::before{content:""}.icon.align.right::before{content:""}.icon.amazon::before{content:""}.icon.ambulance::before{content:""}.icon.american.sign.language.interpreting::before{content:""}.icon.anchor::before{content:""}.icon.android::before{content:""}.icon.angle.double.down::before{content:""}.icon.angle.double.left::before{content:""}.icon.angle.double.right::before{content:""}.icon.angle.double.up::before{content:""}.icon.angle.down::before{content:""}.icon.angle.left::before{content:""}.icon.angle.right::before{content:""}.icon.angle.up::before{content:""}.icon.angular::before{content:""}.icon.app.store::before{content:""}.icon.app.store.ios::before{content:""}.icon.apple::before{content:""}.icon.apple.pay::before{content:""}.icon.archive::before{content:""}.icon.arrow.alternate.circle.down::before{content:""}.icon.arrow.alternate.circle.left::before{content:""}.icon.arrow.alternate.circle.right::before{content:""}.icon.arrow.alternate.circle.up::before{content:""}.icon.arrow.circle.down::before{content:""}.icon.arrow.circle.left::before{content:""}.icon.arrow.circle.right::before{content:""}.icon.arrow.circle.up::before{content:""}.icon.arrow.down::before{content:""}.icon.arrow.left::before{content:""}.icon.arrow.right::before{content:""}.icon.arrow.up::before{content:""}.icon.arrows.alternate::before{content:""}.icon.arrows.alternate.h::before{content:""}.icon.arrows.alternate.v::before{content:""}.icon.artstation::before{content:""}.icon.assistive.listening.systems::before{content:""}.icon.asterisk::before{content:""}.icon.at::before{content:""}.icon.atlassian::before{content:""}.icon.audible::before{content:""}.icon.audio.description::before{content:""}.icon.aws::before{content:""}.icon.backward::before{content:""}.icon.balance.scale::before{content:""}.icon.ban::before{content:""}.icon.band.aid::before{content:""}.icon.bandcamp::before{content:""}.icon.barcode::before{content:""}.icon.bars::before{content:""}.icon.baseball.ball::before{content:""}.icon.basketball.ball::before{content:""}.icon.bath::before{content:""}.icon.battery.empty::before{content:""}.icon.battery.full::before{content:""}.icon.battery.half::before{content:""}.icon.battery.quarter::before{content:""}.icon.battery.three.quarters::before{content:""}.icon.bed::before{content:""}.icon.beer::before{content:""}.icon.bell::before{content:""}.icon.bell.slash::before{content:""}.icon.bicycle::before{content:""}.icon.binoculars::before{content:""}.icon.birthday.cake::before{content:""}.icon.bitcoin::before{content:""}.icon.blind::before{content:""}.icon.blogger::before{content:""}.icon.blogger.b::before{content:""}.icon.bluetooth::before{content:""}.icon.bluetooth.b::before{content:""}.icon.bold::before{content:""}.icon.bolt::before{content:""}.icon.bomb::before{content:""}.icon.book::before{content:""}.icon.bookmark::before{content:""}.icon.bootstrap::before{content:""}.icon.bowling.ball::before{content:""}.icon.box::before{content:""}.icon.boxes::before{content:""}.icon.braille::before{content:""}.icon.briefcase::before{content:""}.icon.btc::before{content:""}.icon.buffer::before{content:""}.icon.bug::before{content:""}.icon.building::before{content:""}.icon.bullhorn::before{content:""}.icon.bullseye::before{content:""}.icon.bus::before{content:""}.icon.calculator::before{content:""}.icon.calendar::before{content:""}.icon.calendar.alternate::before{content:""}.icon.calendar.check::before{content:""}.icon.calendar.minus::before{content:""}.icon.calendar.plus::before{content:""}.icon.calendar.times::before{content:""}.icon.camera::before{content:""}.icon.camera.retro::before{content:""}.icon.canadian.maple.leaf::before{content:""}.icon.car::before{content:""}.icon.caret.down::before{content:""}.icon.caret.left::before{content:""}.icon.caret.right::before{content:""}.icon.caret.square.down::before{content:""}.icon.caret.square.left::before{content:""}.icon.caret.square.right::before{content:""}.icon.caret.square.up::before{content:""}.icon.caret.up::before{content:""}.icon.cart.arrow.down::before{content:""}.icon.cart.plus::before{content:""}.icon.cc.amex::before{content:""}.icon.cc.apple.pay::before{content:""}.icon.cc.diners.club::before{content:""}.icon.cc.discover::before{content:""}.icon.cc.jcb::before{content:""}.icon.cc.mastercard::before{content:""}.icon.cc.paypal::before{content:""}.icon.cc.stripe::before{content:""}.icon.cc.visa::before{content:""}.icon.certificate::before{content:""}.icon.chart.area::before{content:""}.icon.chart.bar::before{content:""}.icon.chart.line::before{content:""}.icon.chart.pie::before{content:""}.icon.check::before{content:""}.icon.check.circle::before{content:""}.icon.check.square::before{content:""}.icon.chess::before{content:""}.icon.chess.bishop::before{content:""}.icon.chess.board::before{content:""}.icon.chess.king::before{content:""}.icon.chess.knight::before{content:""}.icon.chess.pawn::before{content:""}.icon.chess.queen::before{content:""}.icon.chess.rook::before{content:""}.icon.chevron.circle.down::before{content:""}.icon.chevron.circle.left::before{content:""}.icon.chevron.circle.right::before{content:""}.icon.chevron.circle.up::before{content:""}.icon.chevron.down::before{content:""}.icon.chevron.left::before{content:""}.icon.chevron.right::before{content:""}.icon.chevron.up::before{content:""}.icon.child::before{content:""}.icon.chrome::before{content:""}.icon.chromecast::before{content:""}.icon.circle::before{content:""}.icon.circle.notch::before{content:""}.icon.clipboard::before{content:""}.icon.clipboard.check::before{content:""}.icon.clipboard.list::before{content:""}.icon.clock::before{content:""}.icon.clone::before{content:""}.icon.close::before{content:""}.icon.closed.captioning::before{content:""}.icon.cloud::before{content:""}.icon.cloud.download.alternate::before{content:""}.icon.cloud.upload.alternate::before{content:""}.icon.cloudflare::before{content:""}.icon.code::before{content:""}.icon.code.branch::before{content:""}.icon.codepen::before{content:""}.icon.coffee::before{content:""}.icon.cog::before{content:""}.icon.cogs::before{content:""}.icon.columns::before{content:""}.icon.comment::before{content:""}.icon.comment.alternate::before{content:""}.icon.comments::before{content:""}.icon.compass::before{content:""}.icon.compress::before{content:""}.icon.confluence::before{content:""}.icon.copy::before{content:""}.icon.copyright::before{content:""}.icon.creative.commons::before{content:""}.icon.creative.commons.by::before{content:""}.icon.creative.commons.nc::before{content:""}.icon.creative.commons.nc.eu::before{content:""}.icon.creative.commons.nc.jp::before{content:""}.icon.creative.commons.nd::before{content:""}.icon.creative.commons.pd::before{content:""}.icon.creative.commons.pd.alternate::before{content:""}.icon.creative.commons.remix::before{content:""}.icon.creative.commons.sa::before{content:""}.icon.creative.commons.sampling::before{content:""}.icon.creative.commons.sampling.plus::before{content:""}.icon.creative.commons.share::before{content:""}.icon.creative.commons.zero::before{content:""}.icon.credit.card::before{content:""}.icon.crop::before{content:""}.icon.crosshairs::before{content:""}.icon.css3::before{content:""}.icon.css3.alternate::before{content:""}.icon.cube::before{content:""}.icon.cubes::before{content:""}.icon.cut::before{content:""}.icon.dailymotion::before{content:""}.icon.database::before{content:""}.icon.deaf::before{content:""}.icon.deezer::before{content:""}.icon.delicious::before{content:""}.icon.desktop::before{content:""}.icon.dev::before{content:""}.icon.digg::before{content:""}.icon.discord::before{content:""}.icon.discourse::before{content:""}.icon.dna::before{content:""}.icon.docker::before{content:""}.icon.dollar.sign::before{content:""}.icon.dolly::before{content:""}.icon.dolly.flatbed::before{content:""}.icon.dot.circle::before{content:""}.icon.download::before{content:""}.icon.dropbox::before{content:""}.icon.edge::before{content:""}.icon.edge.legacy::before{content:""}.icon.edit::before{content:""}.icon.eject::before{content:""}.icon.ellipsis.h::before{content:""}.icon.ellipsis.v::before{content:""}.icon.envelope::before,.icon.mail::before{content:""}.icon.envelope.open::before{content:""}.icon.envelope.square::before{content:""}.icon.eraser::before{content:""}.icon.ethereum::before{content:""}.icon.euro.sign::before{content:""}.icon.evernote::before{content:""}.icon.exchange.alternate::before{content:""}.icon.exclamation::before{content:""}.icon.exclamation.circle::before{content:""}.icon.exclamation.triangle::before{content:""}.icon.expand::before{content:""}.icon.expand.arrows.alternate::before{content:""}.icon.external.link.alternate::before{content:""}.icon.external.link.square.alternate::before{content:""}.icon.eye::before{content:""}.icon.eye.dropper::before{content:""}.icon.eye.slash::before{content:""}.icon.facebook::before{content:""}.icon.facebook.circle::before{content:""}.icon.facebook.f::before{content:""}.icon.facebook.messenger::before{content:""}.icon.facebook.square::before{content:""}.icon.fast.backward::before{content:""}.icon.fast.forward::before{content:""}.icon.fax::before{content:""}.icon.female::before{content:""}.icon.fighter.jet::before{content:""}.icon.figma::before{content:""}.icon.file::before{content:""}.icon.file.alternate::before{content:""}.icon.file.archive::before{content:""}.icon.file.audio::before{content:""}.icon.file.code::before{content:""}.icon.file.excel::before{content:""}.icon.file.image::before{content:""}.icon.file.pdf::before{content:""}.icon.file.powerpoint::before{content:""}.icon.file.video::before{content:""}.icon.file.word::before{content:""}.icon.film::before{content:""}.icon.filter::before{content:""}.icon.fire::before{content:""}.icon.fire.extinguisher::before{content:""}.icon.firefox::before{content:""}.icon.firefox.browser::before{content:""}.icon.first.aid::before{content:""}.icon.flag::before{content:""}.icon.flag.checkered::before{content:""}.icon.flask::before{content:""}.icon.flipboard::before{content:""}.icon.folder::before{content:""}.icon.folder.open::before{content:""}.icon.font::before{content:""}.icon.font.awesome.flag::before{content:""}.icon.football.ball::before{content:""}.icon.forward::before{content:""}.icon.frown::before{content:""}.icon.futbol::before{content:""}.icon.gamepad::before{content:""}.icon.gavel::before{content:""}.icon.gem::before{content:""}.icon.genderless::before{content:""}.icon.get.pocket::before{content:""}.icon.gift::before{content:""}.icon.git::before{content:""}.icon.git.alternate::before{content:""}.icon.git.square::before{content:""}.icon.github::before{content:""}.icon.github.alternate::before{content:""}.icon.github.square::before{content:""}.icon.glass.martini::before{content:""}.icon.globe::before{content:""}.icon.golf.ball::before{content:""}.icon.goodreads::before{content:""}.icon.goodreads.g::before{content:""}.icon.google::before{content:""}.icon.google.drive::before{content:""}.icon.google.pay::before{content:""}.icon.google.play::before{content:""}.icon.google.plus::before{content:""}.icon.google.plus.g::before{content:""}.icon.google.plus.square::before{content:""}.icon.google.wallet::before{content:""}.icon.graduation.cap::before{content:""}.icon.gulp::before{content:""}.icon.h.square::before{content:""}.icon.hacker.news::before{content:""}.icon.hacker.news.square::before{content:""}.icon.hand.lizard::before{content:""}.icon.hand.paper::before{content:""}.icon.hand.peace::before{content:""}.icon.hand.point.down::before{content:""}.icon.hand.point.left::before{content:""}.icon.hand.point.right::before{content:""}.icon.hand.point.up::before{content:""}.icon.hand.pointer::before{content:""}.icon.hand.rock::before{content:""}.icon.hand.scissors::before{content:""}.icon.hand.spock::before{content:""}.icon.handshake::before{content:""}.icon.hashtag::before{content:""}.icon.hdd::before{content:""}.icon.heading::before{content:""}.icon.headphones::before{content:""}.icon.heart::before{content:""}.icon.heartbeat::before{content:""}.icon.history::before{content:""}.icon.hockey.puck::before{content:""}.icon.home::before{content:""}.icon.hospital::before{content:""}.icon.hospital.symbol::before{content:""}.icon.hourglass::before{content:""}.icon.hourglass.end::before{content:""}.icon.hourglass.half::before{content:""}.icon.hourglass.start::before{content:""}.icon.html5::before{content:""}.icon.i.cursor::before{content:""}.icon.id.badge::before{content:""}.icon.id.card::before{content:""}.icon.image::before{content:""}.icon.images::before{content:""}.icon.inbox::before{content:""}.icon.indent::before{content:""}.icon.industry::before{content:""}.icon.info::before{content:""}.icon.info.circle::before{content:""}.icon.instagram::before{content:""}.icon.instagram.square::before{content:""}.icon.internet.explorer::before{content:""}.icon.italic::before{content:""}.icon.itunes::before{content:""}.icon.itunes.note::before{content:""}.icon.java::before{content:""}.icon.jira::before{content:""}.icon.js::before{content:""}.icon.js.square::before{content:""}.icon.jsfiddle::before{content:""}.icon.key::before{content:""}.icon.keyboard::before{content:""}.icon.language::before{content:""}.icon.laptop::before{content:""}.icon.laravel::before{content:""}.icon.leaf::before{content:""}.icon.lemon::before{content:""}.icon.less::before{content:""}.icon.level.down.alternate::before{content:""}.icon.level.up.alternate::before{content:""}.icon.life.ring::before{content:""}.icon.lightbulb::before{content:""}.icon.line::before{content:""}.icon.link::before{content:""}.icon.linkedin::before{content:""}.icon.linkedin.in::before{content:""}.icon.linux::before{content:""}.icon.lira.sign::before{content:""}.icon.list::before{content:""}.icon.list.alternate::before{content:""}.icon.list.ol::before{content:""}.icon.list.ul::before{content:""}.icon.location.arrow::before{content:""}.icon.lock::before{content:""}.icon.lock.open::before{content:""}.icon.long.arrow.alternate.down::before{content:""}.icon.long.arrow.alternate.left::before{content:""}.icon.long.arrow.alternate.right::before{content:""}.icon.long.arrow.alternate.up::before{content:""}.icon.low.vision::before{content:""}.icon.magic::before{content:""}.icon.magnet::before{content:""}.icon.mailchimp::before{content:""}.icon.male::before{content:""}.icon.map::before{content:""}.icon.map.marker::before{content:""}.icon.map.marker.alternate::before{content:""}.icon.map.pin::before{content:""}.icon.map.signs::before{content:""}.icon.markdown::before{content:""}.icon.mars::before{content:""}.icon.mars.double::before{content:""}.icon.mars.stroke::before{content:""}.icon.mars.stroke.h::before{content:""}.icon.mars.stroke.v::before{content:""}.icon.medium::before{content:""}.icon.medium.m::before{content:""}.icon.medkit::before{content:""}.icon.meh::before{content:""}.icon.mercury::before{content:""}.icon.microblog::before{content:""}.icon.microchip::before{content:""}.icon.microphone::before{content:""}.icon.microphone.slash::before{content:""}.icon.microsoft::before{content:""}.icon.minus::before{content:""}.icon.minus.circle::before{content:""}.icon.minus.square::before{content:""}.icon.mobile::before{content:""}.icon.mobile.alternate::before{content:""}.icon.money.bill.alternate::before{content:""}.icon.moon::before{content:""}.icon.motorcycle::before{content:""}.icon.mouse.pointer::before{content:""}.icon.music::before{content:""}.icon.napster::before{content:""}.icon.newspaper::before{content:""}.icon.node::before{content:""}.icon.node.js::before{content:""}.icon.npm::before{content:""}.icon.object.group::before{content:""}.icon.object.ungroup::before{content:""}.icon.openid::before{content:""}.icon.opera::before{content:""}.icon.outdent::before{content:""}.icon.outline.address.book::before{content:""}.icon.outline.address.card::before{content:""}.icon.outline.angry::before{content:""}.icon.outline.arrow.alternate.circle.down::before{content:""}.icon.outline.arrow.alternate.circle.left::before{content:""}.icon.outline.arrow.alternate.circle.right::before{content:""}.icon.outline.arrow.alternate.circle.up::before{content:""}.icon.outline.bell::before{content:""}.icon.outline.bell.slash::before{content:""}.icon.outline.bookmark::before{content:""}.icon.outline.building::before{content:""}.icon.outline.calendar::before{content:""}.icon.outline.calendar.alternate::before{content:""}.icon.outline.calendar.check::before{content:""}.icon.outline.calendar.minus::before{content:""}.icon.outline.calendar.plus::before{content:""}.icon.outline.calendar.times::before{content:""}.icon.outline.caret.square.down::before{content:""}.icon.outline.caret.square.left::before{content:""}.icon.outline.caret.square.right::before{content:""}.icon.outline.caret.square.up::before{content:""}.icon.outline.chart.bar::before{content:""}.icon.outline.check.circle::before{content:""}.icon.outline.check.square::before{content:""}.icon.outline.circle::before{content:""}.icon.outline.clipboard::before{content:""}.icon.outline.clock::before{content:""}.icon.outline.clone::before{content:""}.icon.outline.closed.captioning::before{content:""}.icon.outline.comment::before{content:""}.icon.outline.comment.alternate::before{content:""}.icon.outline.comment.dots::before{content:""}.icon.outline.comments::before{content:""}.icon.outline.compass::before{content:""}.icon.outline.copy::before{content:""}.icon.outline.copyright::before{content:""}.icon.outline.credit.card::before{content:""}.icon.outline.dizzy::before{content:""}.icon.outline.dot.circle::before{content:""}.icon.outline.edit::before{content:""}.icon.outline.envelope::before{content:""}.icon.outline.envelope.open::before{content:""}.icon.outline.eye::before{content:""}.icon.outline.eye.slash::before{content:""}.icon.outline.file::before{content:""}.icon.outline.file.alternate::before{content:""}.icon.outline.file.archive::before{content:""}.icon.outline.file.audio::before{content:""}.icon.outline.file.code::before{content:""}.icon.outline.file.excel::before{content:""}.icon.outline.file.image::before{content:""}.icon.outline.file.pdf::before{content:""}.icon.outline.file.powerpoint::before{content:""}.icon.outline.file.video::before{content:""}.icon.outline.file.word::before{content:""}.icon.outline.flag::before{content:""}.icon.outline.flushed::before{content:""}.icon.outline.folder::before{content:""}.icon.outline.folder.open::before{content:""}.icon.outline.frown::before{content:""}.icon.outline.frown.open::before{content:""}.icon.outline.futbol::before{content:""}.icon.outline.gem::before{content:""}.icon.outline.grimace::before{content:""}.icon.outline.grin::before{content:""}.icon.outline.grin.alternate::before{content:""}.icon.outline.grin.beam::before{content:""}.icon.outline.grin.beam.sweat::before{content:""}.icon.outline.grin.hearts::before{content:""}.icon.outline.grin.squint::before{content:""}.icon.outline.grin.squint.tears::before{content:""}.icon.outline.grin.stars::before{content:""}.icon.outline.grin.tears::before{content:""}.icon.outline.grin.tongue::before{content:""}.icon.outline.grin.tongue.squint::before{content:""}.icon.outline.grin.tongue.wink::before{content:""}.icon.outline.grin.wink::before{content:""}.icon.outline.hand.lizard::before{content:""}.icon.outline.hand.paper::before{content:""}.icon.outline.hand.peace::before{content:""}.icon.outline.hand.point.down::before{content:""}.icon.outline.hand.point.left::before{content:""}.icon.outline.hand.point.right::before{content:""}.icon.outline.hand.point.up::before{content:""}.icon.outline.hand.pointer::before{content:""}.icon.outline.hand.rock::before{content:""}.icon.outline.hand.scissors::before{content:""}.icon.outline.hand.spock::before{content:""}.icon.outline.handshake::before{content:""}.icon.outline.hdd::before{content:""}.icon.outline.heart::before{content:""}.icon.outline.hospital::before{content:""}.icon.outline.hourglass::before{content:""}.icon.outline.id.badge::before{content:""}.icon.outline.id.card::before{content:""}.icon.outline.image::before{content:""}.icon.outline.images::before{content:""}.icon.outline.keyboard::before{content:""}.icon.outline.kiss::before{content:""}.icon.outline.kiss.beam::before{content:""}.icon.outline.kiss.wink.heart::before{content:""}.icon.outline.laugh::before{content:""}.icon.outline.laugh.beam::before{content:""}.icon.outline.laugh.squint::before{content:""}.icon.outline.laugh.wink::before{content:""}.icon.outline.lemon::before{content:""}.icon.outline.life.ring::before{content:""}.icon.outline.lightbulb::before{content:""}.icon.outline.list.alternate::before{content:""}.icon.outline.map::before{content:""}.icon.outline.meh::before{content:""}.icon.outline.meh.blank::before{content:""}.icon.outline.meh.rolling.eyes::before{content:""}.icon.outline.minus.circle::before{content:""}.icon.outline.minus.square::before{content:""}.icon.outline.money.bill.alternate::before{content:""}.icon.outline.moon::before{content:""}.icon.outline.newspaper::before{content:""}.icon.outline.object.group::before{content:""}.icon.outline.object.ungroup::before{content:""}.icon.outline.paper.plane::before{content:""}.icon.outline.pause.circle::before{content:""}.icon.outline.play.circle::before{content:""}.icon.outline.plus.circle::before{content:""}.icon.outline.plus.square::before{content:""}.icon.outline.question.circle::before{content:""}.icon.outline.registered::before{content:""}.icon.outline.sad.cry::before{content:""}.icon.outline.sad.tear::before{content:""}.icon.outline.save::before{content:""}.icon.outline.share.square::before{content:""}.icon.outline.smile::before{content:""}.icon.outline.smile.beam::before{content:""}.icon.outline.smile.wink::before{content:""}.icon.outline.snowflake::before{content:""}.icon.outline.square::before{content:""}.icon.outline.star::before{content:""}.icon.outline.star.half::before{content:""}.icon.outline.sticky.note::before{content:""}.icon.outline.stop.circle::before{content:""}.icon.outline.sun::before{content:""}.icon.outline.surprise::before{content:""}.icon.outline.thumbs.down::before{content:""}.icon.outline.thumbs.up::before{content:""}.icon.outline.times.circle::before{content:""}.icon.outline.tired::before{content:""}.icon.outline.trash.alternate::before{content:""}.icon.outline.user::before{content:""}.icon.outline.user.circle::before{content:""}.icon.outline.window.close::before{content:""}.icon.outline.window.maximize::before{content:""}.icon.outline.window.minimize::before{content:""}.icon.outline.window.restore::before{content:""}.icon.paint.brush::before{content:""}.icon.pallet::before{content:""}.icon.paper.plane::before{content:""}.icon.paperclip::before{content:""}.icon.paragraph::before{content:""}.icon.paste::before{content:""}.icon.patreon::before{content:""}.icon.pause::before{content:""}.icon.pause.circle::before{content:""}.icon.paw::before{content:""}.icon.paypal::before{content:""}.icon.pen.square::before{content:""}.icon.pencil.alternate::before{content:""}.icon.percent::before{content:""}.icon.phone::before{content:""}.icon.phone.square::before{content:""}.icon.phone.volume::before{content:""}.icon.php::before{content:""}.icon.pills::before{content:""}.icon.pinterest::before{content:""}.icon.pinterest.p::before{content:""}.icon.pinterest.square::before{content:""}.icon.plane::before{content:""}.icon.play::before{content:""}.icon.play.circle::before{content:""}.icon.plug::before{content:""}.icon.plus::before{content:""}.icon.plus.circle::before{content:""}.icon.plus.square::before{content:""}.icon.podcast::before{content:""}.icon.pound.sign::before{content:""}.icon.power.off::before{content:""}.icon.print::before{content:""}.icon.puzzle.piece::before{content:""}.icon.python::before{content:""}.icon.qrcode::before{content:""}.icon.question::before{content:""}.icon.question.circle::before{content:""}.icon.quora::before{content:""}.icon.quote.left::before{content:""}.icon.quote.right::before{content:""}.icon.r.project::before{content:""}.icon.random::before{content:""}.icon.raspberry.pi::before{content:""}.icon.react::before{content:""}.icon.readme::before{content:""}.icon.recycle::before{content:""}.icon.reddit::before{content:""}.icon.reddit.alien::before{content:""}.icon.reddit.square::before{content:""}.icon.redhat::before{content:""}.icon.redo::before{content:""}.icon.redo.alternate::before{content:""}.icon.registered::before{content:""}.icon.reply::before{content:""}.icon.reply.all::before{content:""}.icon.retweet::before{content:""}.icon.rev::before{content:""}.icon.road::before{content:""}.icon.rocket::before{content:""}.icon.rss::before{content:""}.icon.rss.square::before{content:""}.icon.ruble.sign::before{content:""}.icon.rupee.sign::before{content:""}.icon.safari::before{content:""}.icon.salesforce::before{content:""}.icon.sass::before{content:""}.icon.save::before{content:""}.icon.scribd::before{content:""}.icon.search::before{content:""}.icon.search.minus::before{content:""}.icon.search.plus::before{content:""}.icon.server::before{content:""}.icon.share::before{content:""}.icon.share.alternate::before{content:""}.icon.share.alternate.square::before{content:""}.icon.share.square::before{content:""}.icon.shekel.sign::before{content:""}.icon.shield.alternate::before{content:""}.icon.ship::before{content:""}.icon.shipping.fast::before{content:""}.icon.shopping.bag::before{content:""}.icon.shopping.basket::before{content:""}.icon.shopping.cart::before{content:""}.icon.shower::before{content:""}.icon.sign.in.alternate::before{content:""}.icon.sign.language::before{content:""}.icon.sign.out.alternate::before{content:""}.icon.signal::before{content:""}.icon.sitemap::before{content:""}.icon.sketch::before{content:""}.icon.skype::before{content:""}.icon.slack::before{content:""}.icon.slack.hash::before{content:""}.icon.sliders.h::before{content:""}.icon.slideshare::before{content:""}.icon.snapchat::before{content:""}.icon.snapchat.ghost::before{content:""}.icon.snapchat.square::before{content:""}.icon.snowflake::before{content:""}.icon.sort::before{content:""}.icon.sort.alpha.down::before{content:""}.icon.sort.alpha.up::before{content:""}.icon.sort.amount.down::before{content:""}.icon.sort.amount.up::before{content:""}.icon.sort.down::before{content:""}.icon.sort.numeric.down::before{content:""}.icon.sort.numeric.up::before{content:""}.icon.sort.up::before{content:""}.icon.space.shuttle::before{content:""}.icon.speaker.deck::before{content:""}.icon.spinner::before{content:""}.icon.spotify::before{content:""}.icon.square::before{content:""}.icon.square.full::before{content:""}.icon.stack.exchange::before{content:""}.icon.stack.overflow::before{content:""}.icon.star::before{content:""}.icon.star.half::before{content:""}.icon.step.backward::before{content:""}.icon.step.forward::before{content:""}.icon.stethoscope::before{content:""}.icon.sticky.note::before{content:""}.icon.stop::before{content:""}.icon.stop.circle::before{content:""}.icon.stopwatch::before{content:""}.icon.street.view::before{content:""}.icon.strikethrough::before{content:""}.icon.stripe::before{content:""}.icon.stripe.s::before{content:""}.icon.subscript::before{content:""}.icon.subway::before{content:""}.icon.suitcase::before{content:""}.icon.sun::before{content:""}.icon.superscript::before{content:""}.icon.swift::before{content:""}.icon.sync::before{content:""}.icon.sync.alternate::before{content:""}.icon.syringe::before{content:""}.icon.table::before{content:""}.icon.table.tennis::before{content:""}.icon.tablet::before{content:""}.icon.tablet.alternate::before{content:""}.icon.tachometer.alternate::before{content:""}.icon.tag::before{content:""}.icon.tags::before{content:""}.icon.tasks::before{content:""}.icon.taxi::before{content:""}.icon.telegram::before{content:""}.icon.telegram.plane::before{content:""}.icon.terminal::before{content:""}.icon.text.height::before{content:""}.icon.text.width::before{content:""}.icon.th::before{content:""}.icon.th.large::before{content:""}.icon.th.list::before{content:""}.icon.thermometer::before{content:""}.icon.thermometer.empty::before{content:""}.icon.thermometer.full::before{content:""}.icon.thermometer.half::before{content:""}.icon.thermometer.quarter::before{content:""}.icon.thermometer.three.quarters::before{content:""}.icon.thumbs.down::before{content:""}.icon.thumbs.up::before{content:""}.icon.thumbtack::before{content:""}.icon.ticket.alternate::before{content:""}.icon.tiktok::before{content:""}.icon.times::before,.icon.remove::before::before{content:""}.icon.times.circle::before,.icon.remove.circle::before{content:""}.icon.tint::before{content:""}.icon.toggle.off::before{content:""}.icon.toggle.on::before{content:""}.icon.trademark::before{content:""}.icon.train::before{content:""}.icon.transgender::before{content:""}.icon.transgender.alternate::before{content:""}.icon.trash::before{content:""}.icon.trash.alternate::before{content:""}.icon.tree::before{content:""}.icon.trello::before{content:""}.icon.trophy::before{content:""}.icon.truck::before{content:""}.icon.tty::before{content:""}.icon.tumblr::before{content:""}.icon.tumblr.square::before{content:""}.icon.tv::before{content:""}.icon.twitch::before{content:""}.icon.twitter::before{content:""}.icon.twitter.square::before{content:""}.icon.ubuntu::before{content:""}.icon.umbrella::before{content:""}.icon.underline::before{content:""}.icon.undo::before{content:""}.icon.undo.alternate::before{content:""}.icon.universal.access::before{content:""}.icon.university::before{content:""}.icon.unlink::before{content:""}.icon.unlock::before{content:""}.icon.unlock.alternate::before{content:""}.icon.upload::before{content:""}.icon.usb::before{content:""}.icon.user::before{content:""}.icon.user.circle::before{content:""}.icon.user.md::before{content:""}.icon.user.plus::before{content:""}.icon.user.secret::before{content:""}.icon.user.times::before{content:""}.icon.users::before{content:""}.icon.usps::before{content:""}.icon.utensil.spoon::before{content:""}.icon.utensils::before{content:""}.icon.venus::before{content:""}.icon.venus.double::before{content:""}.icon.venus.mars::before{content:""}.icon.video::before{content:""}.icon.vimeo::before{content:""}.icon.vimeo.square::before{content:""}.icon.vimeo.v::before{content:""}.icon.volleyball.ball::before{content:""}.icon.volume.down::before{content:""}.icon.volume.off::before{content:""}.icon.volume.up::before{content:""}.icon.vuejs::before{content:""}.icon.warehouse::before{content:""}.icon.weibo::before{content:""}.icon.weight::before{content:""}.icon.weixin::before{content:""}.icon.whatsapp::before{content:""}.icon.whatsapp.square::before{content:""}.icon.wheelchair::before{content:""}.icon.wifi::before{content:""}.icon.wikipedia.w::before{content:""}.icon.window.close::before{content:""}.icon.window.maximize::before{content:""}.icon.window.minimize::before{content:""}.icon.window.restore::before{content:""}.icon.windows::before{content:""}.icon.won.sign::before{content:""}.icon.wordpress::before{content:""}.icon.wordpress.simple::before{content:""}.icon.wpforms::before{content:""}.icon.wrench::before{content:""}.icon.yammer::before{content:""}.icon.yarn::before{content:""}.icon.yen.sign::before{content:""}.icon.yoast::before{content:""}.icon.youtube::before{content:""}.icon.youtube.square::before{content:""}/*! + * # Semantic UI - Input + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.input{position:relative;font-weight:normal;font-style:normal;display:inline-flex;color:#2a2a2a}.ui.input>input{margin:0em;max-width:100%;flex:1 0 auto;outline:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:1.0625em;font-family:var(--wp--preset--font-family--sans-serif);padding:.7544642857em 1em;background:#fff;border:1px solid rgba(34,36,38,.15);color:#2a2a2a;border-radius:5px;transition:box-shadow .1s ease,border-color .1s ease;box-shadow:none}.ui.input>input::-webkit-input-placeholder{color:#999;font-size:15px}.ui.input>input::-moz-placeholder{color:#999;font-size:15px}.ui.input>input:-ms-input-placeholder{color:#999;font-size:15px}.ui.disabled.input,.ui.input:not(.disabled) input[disabled]{opacity:.45}.ui.disabled.input>input,.ui.input:not(.disabled) input[disabled]{pointer-events:none}.ui.input>input:active,.ui.input.down input{border-color:rgba(0,0,0,.3);background:#fafafa;color:#2a2a2a;box-shadow:none}.ui.loading.loading.input>i.icon:before{position:absolute;content:"";top:50%;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:1.2857142857em;height:1.2857142857em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.loading.input>i.icon:after{position:absolute;content:"";top:50%;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:1.2857142857em;height:1.2857142857em;animation:button-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:.2em;box-shadow:0px 0px 0px 1px rgba(0,0,0,0)}.ui.input.focus>input,.ui.input>input:focus{border-color:#818181;background:#fff;color:rgba(0,0,0,.8);box-shadow:none}.ui.input.focus>input::-webkit-input-placeholder,.ui.input>input:focus::-webkit-input-placeholder{color:#9d9d9d}.ui.input.focus>input::-moz-placeholder,.ui.input>input:focus::-moz-placeholder{color:#9d9d9d}.ui.input.focus>input:-ms-input-placeholder,.ui.input>input:focus:-ms-input-placeholder{color:#9d9d9d}.ui.input.error>input{background-color:#fff6f6;border-color:#e0b4b4;color:#9f3a38;box-shadow:none}.ui.input.error>input::-webkit-input-placeholder{color:#e7bdbc}.ui.input.error>input::-moz-placeholder{color:#e7bdbc}.ui.input.error>input:-ms-input-placeholder{color:#e7bdbc !important}.ui.input.error>input:focus::-webkit-input-placeholder{color:#da9796}.ui.input.error>input:focus::-moz-placeholder{color:#da9796}.ui.input.error>input:focus:-ms-input-placeholder{color:#da9796 !important}.ui.transparent.input>input{border-color:rgba(0,0,0,0) !important;background-color:rgba(0,0,0,0) !important;padding:0em !important;box-shadow:none !important;border-radius:0px !important}.ui.transparent.icon.input>i.icon{width:1.1em}.ui.transparent.icon.input>input{padding-left:0em !important;padding-right:2em !important}.ui.transparent[class*="left icon"].input>input{padding-left:2em !important;padding-right:0em !important}.ui.transparent.inverted.input{color:#fff}.ui.transparent.inverted.input>input{color:inherit}.ui.transparent.inverted.input>input::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input>input::-moz-placeholder{color:rgba(255,255,255,.5)}.ui.transparent.inverted.input>input:-ms-input-placeholder{color:rgba(255,255,255,.5)}.ui.icon.input>i.icon{cursor:default;position:absolute;line-height:1;text-align:center;top:0px;right:0px;margin:0em;height:100%;width:2.6714285714em;opacity:.5;border-radius:0em 5px 5px 0em;transition:opacity .3s ease}.ui.icon.input>i.icon:not(.link){pointer-events:none}.ui.icon.input>input{padding-right:2.6714285714em !important}.ui.icon.input>i.icon:before,.ui.icon.input>i.icon:after{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-0.5em}.ui.icon.input>i.link.icon{cursor:pointer}.ui.icon.input>i.circular.icon{top:.35em;right:.5em}.ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:5px 0em 0em 5px}.ui[class*="left icon"].input>i.circular.icon{right:auto;left:.5em}.ui[class*="left icon"].input>input{padding-left:2.6714285714em !important;padding-right:1em !important}.ui.icon.input>input:focus~i.icon{opacity:1}.ui.labeled.input>.label{flex:0 0 auto;margin:0;font-size:1em}.ui.labeled.input>.label:not(.corner){padding-top:.7857142857em;padding-bottom:.7857142857em}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child{border-top-right-radius:0px;border-bottom-right-radius:0px}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input{border-top-left-radius:0px;border-bottom-left-radius:0px;border-left-color:rgba(0,0,0,0)}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input:focus{border-left-color:#818181}.ui[class*="right labeled"].input>input{border-top-right-radius:0px !important;border-bottom-right-radius:0px !important;border-right-color:rgba(0,0,0,0) !important}.ui[class*="right labeled"].input>input+.label{border-top-left-radius:0px;border-bottom-left-radius:0px}.ui[class*="right labeled"].input>input:focus{border-right-color:#818181 !important}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.6428571429em;border-radius:0em 5px 0em 0em}.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input>input{padding-right:2.5em !important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>input{padding-right:3.25em !important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>.icon{margin-right:1.25em}.ui[class*="left corner labeled"].labeled.input>input{padding-left:2.5em !important}.ui[class*="left corner labeled"].icon.input>input{padding-left:3.25em !important}.ui[class*="left corner labeled"].icon.input>.icon{margin-left:1.25em}.ui.input>.ui.corner.label{top:1px;right:1px}.ui.input>.ui.left.corner.label{right:auto;left:1px}.ui.action.input>.button,.ui.action.input>.buttons{display:flex;align-items:center;flex:0 0 auto}.ui.action.input>.button,.ui.action.input>.buttons>.button{padding-top:.7857142857em;padding-bottom:.7857142857em;margin:0}.ui.action.input:not([class*="left action"])>input{border-radius:0;border-right-color:rgba(0,0,0,0) !important}.ui.action.input:not([class*="left action"])>.dropdown:not(:first-child),.ui.action.input:not([class*="left action"])>.button:not(:first-child),.ui.action.input:not([class*="left action"])>.buttons:not(:first-child)>.button{border-radius:0px}.ui.action.input:not([class*="left action"])>.dropdown:last-child,.ui.action.input:not([class*="left action"])>.button:last-child,.ui.action.input:not([class*="left action"])>.buttons:last-child>.button{border-radius:0px}.ui.action.input:not([class*="left action"])>input:focus{border-right-color:#818181 !important}.ui[class*="left action"].input>input{border-radius:0px;border-left-color:rgba(0,0,0,0) !important}.ui[class*="left action"].input>.dropdown,.ui[class*="left action"].input>.button,.ui[class*="left action"].input>.buttons>.button{border-radius:0px}.ui[class*="left action"].input>.dropdown:first-child,.ui[class*="left action"].input>.button:first-child,.ui[class*="left action"].input>.buttons:first-child>.button{border-radius:0px}.ui[class*="left action"].input>input:focus{border-left-color:#818181 !important}.ui.inverted.input>input{border:none}.ui.fluid.input{display:flex}.ui.mini.input{font-size:.7857142857rem}.ui.small.input{font-size:.8571428571rem}.ui.input{font-size:.9285714286rem}.ui.large.input{font-size:1rem}.ui.big.input{font-size:1.1428571429rem}.ui.huge.input{font-size:1.2857142857rem}.ui.massive.input{font-size:1.4285714286rem}/*! + * # Semantic UI - Label + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.label{display:inline-block;line-height:1;vertical-align:baseline;margin:0em .1428571429em;background-color:#e8e8e8;background-image:none;padding:.5833em .833em;color:rgba(0,0,0,.6);text-transform:none;font-weight:bold;font-family:var(--wp--preset--font-family--sans-serif);border:0px solid rgba(0,0,0,0);border-radius:.2857142857rem;transition:background .1s ease}.ui.label:first-child{margin-left:0em}.ui.label:last-child{margin-right:0em}a.ui.label{cursor:pointer}.ui.label>a{cursor:pointer;color:inherit;opacity:.5;transition:.1s opacity ease}.ui.label>a:hover{opacity:1}.ui.label>img{width:auto !important;vertical-align:middle;height:2.1666em !important}.ui.label>.icon{width:auto;margin:0em .75em 0em 0em}.ui.label>.detail{display:inline-block;vertical-align:top;font-weight:bold;margin-left:1em;opacity:.8}.ui.label>.detail .icon{margin:0em .25em 0em 0em}.ui.label>.close.icon,.ui.label>.delete.icon{cursor:pointer;margin-right:0em;margin-left:.5em;font-size:.9285714286em;opacity:.5;transition:background .1s ease}.ui.label>.delete.icon:hover{opacity:1}.ui.labels>.label{margin:0em .5em .5em 0em}.ui.header>.ui.label{margin-top:-0.29165em}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label:first-child+:not(.attached),.ui.top.attached.label+[class*="right floated"]+*{margin-top:2rem !important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-top:0em;margin-bottom:2rem !important}.ui.image.label{width:auto !important;margin-top:0em;margin-bottom:0em;max-width:9999px;vertical-align:baseline;text-transform:none;background:#e8e8e8;padding:.5833em .833em .5833em .5em;border-radius:.2857142857rem;box-shadow:none}.ui.image.label img{display:inline-block;vertical-align:top;height:2.1666em;margin:-0.5833em -0.5833em;border-radius:.2857142857rem 0em 0em .2857142857rem}.ui.image.label .detail{background:rgba(0,0,0,.1);margin:-1.9996em .5em;padding:.5833em .833em;border-radius:0em .2857142857rem .2857142857rem 0em}.ui.tag.labels .label,.ui.tag.label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0em .2857142857rem .2857142857rem 0em;transition:none}.ui.tag.labels .label:before,.ui.tag.label:before{position:absolute;transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:"";background-color:inherit;background-image:none;width:1.56em;height:1.56em;transition:none}.ui.tag.labels .label:after,.ui.tag.label:after{position:absolute;content:"";top:50%;left:-0.25em;margin-top:-0.25em;background-color:#fff !important;width:.5em;height:.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);border-radius:500rem}.ui.corner.label{position:absolute;top:0em;right:0em;margin:0em;padding:0em;text-align:center;border-color:#e8e8e8;width:4em;height:4em;z-index:1;transition:border-color .1s ease}.ui.corner.label{background-color:rgba(0,0,0,0) !important}.ui.corner.label:after{position:absolute;content:"";right:0em;top:0em;z-index:-1;width:0em;height:0em;background-color:rgba(0,0,0,0) !important;border-top:0em solid rgba(0,0,0,0);border-right:4em solid rgba(0,0,0,0);border-bottom:4em solid rgba(0,0,0,0);border-left:0em solid rgba(0,0,0,0);border-right-color:inherit;transition:border-color .1s ease}.ui.corner.label .icon{cursor:default;position:relative;top:.6428571429em;left:.7857142857em;font-size:1.1428571429em;margin:0em}.ui.left.corner.label,.ui.left.corner.label:after{right:auto;left:0em}.ui.left.corner.label:after{border-top:4em solid rgba(0,0,0,0);border-right:4em solid rgba(0,0,0,0);border-bottom:0em solid rgba(0,0,0,0);border-left:0em solid rgba(0,0,0,0);border-top-color:inherit}.ui.left.corner.label .icon{left:-.7857142857em}.ui.segment>.ui.corner.label{top:-1px;right:-1px}.ui.segment>.ui.left.corner.label{right:auto;left:-1px}.ui.ribbon.label{position:relative;margin:0em;min-width:max-content;border-radius:0em .2857142857rem .2857142857rem 0em;border-color:rgba(0,0,0,.15)}.ui.ribbon.label:after{position:absolute;content:"";top:100%;left:0%;background-color:rgba(0,0,0,0) !important;border-style:solid;border-width:0em 1.2em 1.2em 0em;border-color:rgba(0,0,0,0);border-right-color:inherit;width:0em;height:0em}.ui.ribbon.label{left:-1rem-strip-unit(1.2em);margin-right:-1.2em;padding-left:1remstrip-unit(1.2em);padding-right:1.2em}.ui[class*="right ribbon"].label{left:calc(100% + 1rem + 1.2em);padding-left:1.2em;padding-right:1remstrip-unit(1.2em)}.ui[class*="right ribbon"].label{text-align:left;transform:translateX(-100%);border-radius:.2857142857rem 0em 0em .2857142857rem}.ui[class*="right ribbon"].label:after{left:auto;right:0%;border-style:solid;border-width:1.2em 1.2em 0em 0em;border-color:rgba(0,0,0,0);border-top-color:inherit}.ui.image>.ribbon.label,.ui.card .image>.ribbon.label{position:absolute;top:1rem}.ui.card .image>.ui.ribbon.label,.ui.image>.ui.ribbon.label{left:0.05rem-strip-unit(1.2em)}.ui.card .image>.ui[class*="right ribbon"].label,.ui.image>.ui[class*="right ribbon"].label{left:calc(100% + -0.05rem + 1.2em);padding-left:.833em}.ui.table td>.ui.ribbon.label{left:-1.9857142857em}.ui.table td>.ui[class*="right ribbon"].label{left:calc(100% + 0.7857142857em + 1.2em);padding-left:.833em}.ui[class*="top attached"].label,.ui.attached.label{width:100%;position:absolute;margin:0em;top:0em;left:0em;padding:.75em 1em;border-radius:.2142857143rem .2142857143rem 0em 0em}.ui[class*="bottom attached"].label{top:auto;bottom:0em;border-radius:0em 0em .2142857143rem .2142857143rem}.ui[class*="top left attached"].label{width:auto;margin-top:0em !important;border-radius:.2142857143rem 0em .2857142857rem 0em}.ui[class*="top right attached"].label{width:auto;left:auto;right:0em;border-radius:0em .2142857143rem 0em .2857142857rem}.ui[class*="bottom left attached"].label{width:auto;top:auto;bottom:0em;border-radius:0em .2857142857rem 0em .2142857143rem}.ui[class*="bottom right attached"].label{top:auto;bottom:0em;left:auto;right:0em;width:auto;border-radius:.2857142857rem 0em .2142857143rem 0em}.ui.label.disabled{opacity:.5}a.ui.labels .label:hover,a.ui.label:hover{background-color:#e0e0e0;border-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{color:rgba(0,0,0,.8)}.ui.active.label{background-color:#d0d0d0;border-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.95)}.ui.active.label:before{background-color:#d0d0d0;background-image:none;color:rgba(0,0,0,.95)}a.ui.labels .active.label:hover,a.ui.active.label:hover{background-color:#c8c8c8;border-color:#c8c8c8;background-image:none;color:rgba(0,0,0,.95)}.ui.labels a.active.label:activehover:before,a.ui.active.label:activehover:before{background-color:#c8c8c8;background-image:none;color:rgba(0,0,0,.95)}.ui.labels.visible .label,.ui.label.visible:not(.dropdown){display:inline-block !important}.ui.labels.hidden .label,.ui.label.hidden{display:none !important}.ui.red.labels .label,.ui.red.label{background-color:#db2828 !important;border-color:#db2828 !important;color:#fff !important}.ui.red.labels .label:hover,a.ui.red.label:hover{background-color:#d41616 !important;border-color:#d41616 !important;color:#fff !important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.red.ribbon.label{border-color:#b21e1e !important}.ui.basic.red.label{background:none #fff !important;color:#db2828 !important;border-color:#db2828 !important}.ui.basic.red.labels a.label:hover,a.ui.basic.red.label:hover{background-color:#fff !important;color:#d41616 !important;border-color:#d41616 !important}.ui.orange.labels .label,.ui.orange.label{background-color:#f2711c !important;border-color:#f2711c !important;color:#fff !important}.ui.orange.labels .label:hover,a.ui.orange.label:hover{background-color:#f36101 !important;border-color:#f36101 !important;color:#fff !important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.orange.ribbon.label{border-color:#cf590c !important}.ui.basic.orange.label{background:none #fff !important;color:#f2711c !important;border-color:#f2711c !important}.ui.basic.orange.labels a.label:hover,a.ui.basic.orange.label:hover{background-color:#fff !important;color:#f36101 !important;border-color:#f36101 !important}.ui.yellow.labels .label,.ui.yellow.label{background-color:#fbbd08 !important;border-color:#fbbd08 !important;color:#fff !important}.ui.yellow.labels .label:hover,a.ui.yellow.label:hover{background-color:#eaae00 !important;border-color:#eaae00 !important;color:#fff !important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.yellow.ribbon.label{border-color:#cd9903 !important}.ui.basic.yellow.label{background:none #fff !important;color:#fbbd08 !important;border-color:#fbbd08 !important}.ui.basic.yellow.labels a.label:hover,a.ui.basic.yellow.label:hover{background-color:#fff !important;color:#eaae00 !important;border-color:#eaae00 !important}.ui.olive.labels .label,.ui.olive.label{background-color:#b5cc18 !important;border-color:#b5cc18 !important;color:#fff !important}.ui.olive.labels .label:hover,a.ui.olive.label:hover{background-color:#a8bf0b !important;border-color:#a8bf0b !important;color:#fff !important}.ui.olive.corner.label,.ui.olive.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.olive.ribbon.label{border-color:#198f35 !important}.ui.basic.olive.label{background:none #fff !important;color:#b5cc18 !important;border-color:#b5cc18 !important}.ui.basic.olive.labels a.label:hover,a.ui.basic.olive.label:hover{background-color:#fff !important;color:#a8bf0b !important;border-color:#a8bf0b !important}.ui.green.labels .label,.ui.green.label{background-color:#21ba45 !important;border-color:#21ba45 !important;color:#fff !important}.ui.green.labels .label:hover,a.ui.green.label:hover{background-color:#13ae38 !important;border-color:#13ae38 !important;color:#fff !important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.green.ribbon.label{border-color:#198f35 !important}.ui.basic.green.label{background:none #fff !important;color:#21ba45 !important;border-color:#21ba45 !important}.ui.basic.green.labels a.label:hover,a.ui.basic.green.label:hover{background-color:#fff !important;color:#13ae38 !important;border-color:#13ae38 !important}.ui.teal.labels .label,.ui.teal.label{background-color:#00b5ad !important;border-color:#00b5ad !important;color:#fff !important}.ui.teal.labels .label:hover,a.ui.teal.label:hover{background-color:#009c95 !important;border-color:#009c95 !important;color:#fff !important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.teal.ribbon.label{border-color:#00827c !important}.ui.basic.teal.label{background:none #fff !important;color:#00b5ad !important;border-color:#00b5ad !important}.ui.basic.teal.labels a.label:hover,a.ui.basic.teal.label:hover{background-color:#fff !important;color:#009c95 !important;border-color:#009c95 !important}.ui.blue.labels .label,.ui.blue.label{background-color:#2185d0 !important;border-color:#2185d0 !important;color:#fff !important}.ui.blue.labels .label:hover,a.ui.blue.label:hover{background-color:#1378c5 !important;border-color:#1378c5 !important;color:#fff !important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.blue.ribbon.label{border-color:#1a69a4 !important}.ui.basic.blue.label{background:none #fff !important;color:#2185d0 !important;border-color:#2185d0 !important}.ui.basic.blue.labels a.label:hover,a.ui.basic.blue.label:hover{background-color:#fff !important;color:#1378c5 !important;border-color:#1378c5 !important}.ui.violet.labels .label,.ui.violet.label{background-color:#6435c9 !important;border-color:#6435c9 !important;color:#fff !important}.ui.violet.labels .label:hover,a.ui.violet.label:hover{background-color:#5624c0 !important;border-color:#5624c0 !important;color:#fff !important}.ui.violet.corner.label,.ui.violet.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.violet.ribbon.label{border-color:#502aa1 !important}.ui.basic.violet.label{background:none #fff !important;color:#6435c9 !important;border-color:#6435c9 !important}.ui.basic.violet.labels a.label:hover,a.ui.basic.violet.label:hover{background-color:#fff !important;color:#5624c0 !important;border-color:#5624c0 !important}.ui.purple.labels .label,.ui.purple.label{background-color:#a333c8 !important;border-color:#a333c8 !important;color:#fff !important}.ui.purple.labels .label:hover,a.ui.purple.label:hover{background-color:#9823bf !important;border-color:#9823bf !important;color:#fff !important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.purple.ribbon.label{border-color:#82299f !important}.ui.basic.purple.label{background:none #fff !important;color:#a333c8 !important;border-color:#a333c8 !important}.ui.basic.purple.labels a.label:hover,a.ui.basic.purple.label:hover{background-color:#fff !important;color:#9823bf !important;border-color:#9823bf !important}.ui.pink.labels .label,.ui.pink.label{background-color:#e03997 !important;border-color:#e03997 !important;color:#fff !important}.ui.pink.labels .label:hover,a.ui.pink.label:hover{background-color:#e9168d !important;border-color:#e9168d !important;color:#fff !important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.pink.ribbon.label{border-color:#c71f7e !important}.ui.basic.pink.label{background:none #fff !important;color:#e03997 !important;border-color:#e03997 !important}.ui.basic.pink.labels a.label:hover,a.ui.basic.pink.label:hover{background-color:#fff !important;color:#e9168d !important;border-color:#e9168d !important}.ui.brown.labels .label,.ui.brown.label{background-color:#a5673f !important;border-color:#a5673f !important;color:#fff !important}.ui.brown.labels .label:hover,a.ui.brown.label:hover{background-color:#9d592e !important;border-color:#9d592e !important;color:#fff !important}.ui.brown.corner.label,.ui.brown.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.brown.ribbon.label{border-color:#805031 !important}.ui.basic.brown.label{background:none #fff !important;color:#a5673f !important;border-color:#a5673f !important}.ui.basic.brown.labels a.label:hover,a.ui.basic.brown.label:hover{background-color:#fff !important;color:#9d592e !important;border-color:#9d592e !important}.ui.grey.labels .label:not(.flat),.ui.grey.label:not(.flat){background-color:#767676 !important;border-color:#767676 !important;color:#fff !important}.ui.grey.labels .label:not(.flat):hover,.ui.grey.label:not(.flat):hover{background-color:#838383 !important;border-color:#838383 !important;color:#fff !important}.ui.grey.corner.label,.ui.grey.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.grey.ribbon.label{border-color:#805031 !important}.ui.basic.grey.label{background:none #fff !important;color:#767676 !important;border-color:#767676 !important}.ui.basic.grey.labels a.label:hover,a.ui.basic.grey.label:hover{background-color:#fff !important;color:#838383 !important;border-color:#838383 !important}.ui.flat.grey.labels .label,.ui.flat.grey.label{color:#767676 !important}.ui.black.labels .label,.ui.black.label{background-color:#1b1c1d !important;border-color:#1b1c1d !important;color:#fff !important}.ui.black.labels .label:hover,a.ui.black.label:hover{background-color:#27292a !important;border-color:#27292a !important;color:#fff !important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:rgba(0,0,0,0) !important}.ui.black.ribbon.label{border-color:#805031 !important}.ui.basic.black.label{background:none #fff !important;color:#1b1c1d !important;border-color:#1b1c1d !important}.ui.basic.black.labels a.label:hover,a.ui.basic.black.label:hover{background-color:#fff !important;color:#27292a !important;border-color:#27292a !important}.label.pewresearch{color:#282828}.label.politics,.label.u-s-politics{color:#d1a730}.label.journalism,.label.media-news{color:#733d47}.label.religion{color:#0090bf}.label.hispanic{color:#a55a26}.label.social-trends{color:#377668}.label.internet,.label.internet-tech{color:#069}.label.science{color:#ea9e2c}.label.global{color:#949d48}.label .methodology-report,.label .research-methodology{color:#d1a730}.ui.basic.label.pewresearch{color:#282828;border-color:#282828;font-weight:lighter}.ui.basic.label.politics,.ui.basic.label.u-s-politics{color:#d1a730;border-color:#d1a730;font-weight:lighter}.ui.basic.label.journalism,.ui.basic.label.media-news{color:#733d47;border-color:#733d47;font-weight:lighter}.ui.basic.label.religion{color:#0090bf;border-color:#0090bf;font-weight:lighter}.ui.basic.label.hispanic{color:#a55a26;border-color:#a55a26;font-weight:lighter}.ui.basic.label.social-trends{color:#377668;border-color:#377668;font-weight:lighter}.ui.basic.label.internet,.ui.basic.label.internet-tech{color:#069;border-color:#069;font-weight:lighter}.ui.basic.label.science{color:#ea9e2c;border-color:#ea9e2c;font-weight:lighter}.ui.basic.label.global{color:#949d48;border-color:#949d48;font-weight:lighter}.ui.basic.label .methodology-report,.ui.basic.label .research-methodology{color:#d1a730;border-color:#d1a730;font-weight:lighter}.ui.label:not(.basic).pewresearch{background-color:#282828;border-color:#282828;color:#fff;font-weight:lighter}.ui.label:not(.basic).politics,.ui.label:not(.basic).u-s-politics{background-color:#d1a730;border-color:#d1a730;color:#fff;font-weight:lighter}.ui.label:not(.basic).journalism,.ui.label:not(.basic).media-news{background-color:#733d47;border-color:#733d47;color:#fff;font-weight:lighter}.ui.label:not(.basic).religion{background-color:#0090bf;border-color:#0090bf;color:#fff;font-weight:lighter}.ui.label:not(.basic).hispanic{background-color:#a55a26;border-color:#a55a26;color:#fff;font-weight:lighter}.ui.label:not(.basic).social-trends{background-color:#377668;border-color:#377668;color:#fff;font-weight:lighter}.ui.label:not(.basic).internet,.ui.label:not(.basic).internet-tech{background-color:#069;border-color:#069;color:#fff;font-weight:lighter}.ui.label:not(.basic).science{background-color:#ea9e2c;border-color:#ea9e2c;color:#fff;font-weight:lighter}.ui.label:not(.basic).global{background-color:#949d48;border-color:#949d48;color:#fff;font-weight:lighter}.ui.label:not(.basic) .methodology-report,.ui.label:not(.basic) .research-methodology{background-color:#d1a730;border-color:#d1a730;color:#fff;font-weight:lighter}.ui.basic.label{background:none #fff;border:1px solid rgba(34,36,38,.15);color:#2a2a2a;box-shadow:none}a.ui.basic.label:hover{text-decoration:none;background:none #fff;color:#5f94cf;box-shadow:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.pointing.label:before{border-color:inherit}.ui.flat.label{background:none;border:none;color:#2a2a2a;box-shadow:none;padding:0;margin:0;font-weight:normal}a.ui.flat.label:hover{text-decoration:underline;background:none;color:#5f94cf;box-shadow:none;box-shadow:none;padding:0;margin:0;font-weight:normal}.ui.label.fluid,.ui.fluid.labels>.label{width:100%;box-sizing:border-box}.ui.inverted.labels .label,.ui.inverted.label{color:rgba(255,255,255,.9) !important}.ui.horizontal.labels .label,.ui.horizontal.label{margin:0em .5em 0em 0em;padding:.4em .833em;min-width:3em;text-align:center}.ui.circular.labels .label,.ui.circular.label{min-width:2em;min-height:2em;padding:.5em !important;line-height:1em;text-align:center;border-radius:500rem}.ui.empty.circular.labels .label,.ui.empty.circular.label{min-width:0em;min-height:0em;overflow:hidden;width:.5em;height:.5em;vertical-align:baseline}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{background-color:inherit;background-image:inherit;border-width:none;border-style:solid;border-color:inherit}.ui.pointing.label:before{position:absolute;content:"";transform:rotate(45deg);background-image:none;z-index:2;width:.6666em;height:.6666em;transition:background .1s ease}.ui.pointing.label,.ui[class*="pointing above"].label{margin-top:1em}.ui.pointing.label:before,.ui[class*="pointing above"].label:before{border-width:1px 0px 0px 1px;transform:translateX(-50%) translateY(-50%) rotate(45deg);top:0%;left:50%}.ui[class*="bottom pointing"].label,.ui[class*="pointing below"].label{margin-top:0em;margin-bottom:1em}.ui[class*="bottom pointing"].label:before,.ui[class*="pointing below"].label:before{border-width:0px 1px 1px 0px;top:auto;right:auto;transform:translateX(-50%) translateY(-50%) rotate(45deg);top:100%;left:50%}.ui[class*="left pointing"].label{margin-top:0em;margin-left:.6666em}.ui[class*="left pointing"].label:before{border-width:0px 0px 1px 1px;transform:translateX(-50%) translateY(-50%) rotate(45deg);bottom:auto;right:auto;top:50%;left:0em}.ui[class*="right pointing"].label{margin-top:0em;margin-right:.6666em}.ui[class*="right pointing"].label:before{border-width:1px 1px 0px 0px;transform:translateX(50%) translateY(-50%) rotate(45deg);top:50%;right:0%;bottom:auto;left:auto}.ui.basic.pointing.label:before,.ui.basic[class*="pointing above"].label:before{margin-top:-1px}.ui.basic[class*="bottom pointing"].label:before,.ui.basic[class*="pointing below"].label:before{bottom:auto;top:100%;margin-top:1px}.ui.basic[class*="left pointing"].label:before{top:50%;left:-1px}.ui.basic[class*="right pointing"].label:before{top:50%;right:-1px}.ui.floating.label{position:absolute;z-index:100;top:-1em;left:100%;margin:0em 0em 0em -1.5em !important}.ui.mini.labels .label,.ui.mini.label{font-size:.6428571429rem}.ui.tiny.labels .label,.ui.tiny.label{font-size:.7142857143rem}.ui.small.labels .label,.ui.small.label{font-size:.7857142857rem}.ui.labels .label,.ui.label{font-size:.8571428571rem}.ui.large.labels .label,.ui.large.label{font-size:1rem}.ui.big.labels .label,.ui.big.label{font-size:1.2857142857rem}.ui.huge.labels .label,.ui.huge.label{font-size:1.4285714286rem}.ui.massive.labels .label,.ui.massive.label{font-size:1.7142857143rem}/*! + * # Semantic UI - List + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ul.ui.list,ol.ui.list,.ui.list{list-style-type:none;margin:1em 0em;padding:0em 0em;font-family:var(--wp--preset--font-family--sans-serif)}ul.ui.list:first-child,ol.ui.list:first-child,.ui.list:first-child{margin-top:0em;padding-top:0em}ul.ui.list:last-child,ol.ui.list:last-child,.ui.list:last-child{margin-bottom:0em;padding-bottom:0em}ul.ui.list li,ol.ui.list li,.ui.list>.item,.ui.list .list>.item{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.2142857143em 0em;line-height:1.1428571429em}div.ui.flex.list{flex-direction:column}div.ui.flex.list>.item{display:flex;table-layout:inherit;width:100%}ul.ui.list>li:first-child:after,ol.ui.list>li:first-child:after,.ui.list>.list>.item,.ui.list>.item:after{content:"";display:block;height:0;clear:both;visibility:hidden}ul.ui.list li:first-child,ol.ui.list li:first-child,.ui.list .list>.item:first-child,.ui.list>.item:first-child{padding-top:0em}ul.ui.list li:last-child,ol.ui.list li:last-child,.ui.list .list>.item:last-child,.ui.list>.item:last-child{padding-bottom:0em}ul.ui.list ul,ol.ui.list ol,.ui.list .list{clear:both;margin:0em;padding:.75em 0em .25em 1em}ul.ui.list ul li,ol.ui.list ol li,.ui.list .list>.item{padding:.1428571429em 0em;line-height:inherit}ul.ui.list ul li:first-child,ol.ui.list ol li:first-child,.ui.list .list>.item:first-child{padding-top:0 !important}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{margin:0em;padding-top:0em;padding-left:0;vertical-align:top;transition:color .1s ease;color:#565656}.ui.list .list>.item>:nth-of-type(1).icon{padding-right:.2857142857em;padding-left:0}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{margin:0em}.ui.list .list>.item>.image:not(:only-child):not(img),.ui.list>.item>.image:not(:only-child):not(img){padding-right:.5em}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:top}.ui.list .list>.item>img.image,.ui.list .list>.item>.image:only-child,.ui.list>.item>img.image,.ui.list>.item>.image:only-child{display:inline-block}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.1428571429em}.ui.list .list>.item>.image+.content,.ui.list .list>.item>.icon+.content,.ui.list>.item>.image+.content,.ui.list>.item>.icon+.content{display:table-cell;width:100%;padding:0em 0em 0em .5em;vertical-align:top}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block;width:auto}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0em;padding-left:0em}.ui.list .list>.item .header,.ui.list>.item .header{display:block;margin:0em;font-family:var(--wp--preset--font-family--sans-serif);font-weight:bold;color:#2a2a2a}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.7)}.ui.list>.item a,.ui.list .list>.item a,.ui.list>a.item{cursor:pointer}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:#000}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#5f94cf}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(0,0,0,.4)}.ui.list .list>.item a.header,.ui.list>.item a.header{cursor:pointer;color:#000 !important}.ui.list .list>.item a.header:hover,.ui.list>.item a.header:hover{color:#5f94cf !important}.ui[class*="left floated"].list{float:left}.ui[class*="right floated"].list{float:right}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0em 1em 0em 0em}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0em 0em 0em 1em}.ui.menu .ui.list>.item,.ui.menu .ui.list .list>.item{display:list-item;table-layout:fixed;background-color:rgba(0,0,0,0);list-style-type:none;list-style-position:outside;padding:.2142857143em 0em;line-height:1.1428571429em}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{border:none;background:none}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0em}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0em}.ui.horizontal.list{display:inline-block;font-size:0em}.ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}.ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0em !important;padding-left:0em !important}.ui.horizontal.list .list{padding-left:0em;padding-bottom:0em}.ui.horizontal.list>.item>.image,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.icon,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list>.item>.content,.ui.horizontal.list .list>.item>.content{vertical-align:middle}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.2142857143em;padding-bottom:.2142857143em}.ui.horizontal.list>.item>i.icon{margin:0em;padding:0em .25em 0em 0em}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}.ui.list.comma-seperated{padding:0}.ui.list.comma-seperated div.item{color:#818181}.ui.list.comma-seperated a.item{color:#346ead}.ui.list.comma-seperated .item{margin-left:0em;margin-right:.4em !important}.ui.list.comma-seperated a.item:after{content:",";display:inline-block;height:inherit;visibility:visible}.ui.list.comma-seperated a.item:last-of-type:after{content:""}.ui.columns.list{display:flex;flex-wrap:wrap}.ui.columns.list.relaxed .item:first-child{padding-top:.70028571em}.ui.columns.list .item:first-child{padding-top:.2142857143em}.ui.columns.list.four .item{width:25%}.ui.columns.list.three .item{width:25%}.ui.list .list>.disabled.item,.ui.list>.disabled.item{pointer-events:none;color:rgba(0,0,0,.2) !important}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:rgba(255,255,255,.2) !important}.ui.list>.item>.hidden,.ui.list .list>.hidden.item,.ui.list>.hidden.item,.ui.list>.hidden{display:none}.ui.list>.item>.hidden.visible,.ui.list .list>.hidden.item.visible,.ui.list>.hidden.item.visible,.ui.list>.hidden.visible{display:list-item}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:#2a2a2a}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(255,255,255,.7)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:rgba(255,255,255,.9)}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(255,255,255,.7)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:rgba(255,255,255,.9)}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#5f94cf}.ui.inverted.list .item a:not(.ui){color:rgba(255,255,255,.9) !important}.ui.inverted.list .item a:not(.ui):hover{color:#5f94cf !important}.ui.list[class*="top aligned"] .image,.ui.list[class*="top aligned"] .content,.ui.list [class*="top aligned"]{vertical-align:top !important}.ui.list[class*="middle aligned"] .image,.ui.list[class*="middle aligned"] .content,.ui.list [class*="middle aligned"]{vertical-align:middle !important}.ui.list[class*="bottom aligned"] .image,.ui.list[class*="bottom aligned"] .content,.ui.list [class*="bottom aligned"]{vertical-align:bottom !important}.ui.link.list .item,.ui.link.list a.item,.ui.link.list .item a:not(.ui){color:#000;transition:.1s color ease;text-decoration:none}.ui.link.list .item .meta,.ui.link.list a.item .meta,.ui.link.list .item a:not(.ui) .meta{display:block;padding-bottom:.5rem}.ui.link.list a.item:hover,.ui.link.list .item>a:hover{text-decoration:underline !important}.ui.link.list .blue.item{color:#346ead}.ui.link.list .active.item{font-weight:bold}.ui.link.list .active.item .list{font-weight:normal}.ui.link.list.list a.item:hover,.ui.link.list.list .item a:not(.ui):hover{color:rgba(0,0,0,.8)}.ui.link.list.list a.item:active,.ui.link.list.list .item a:not(.ui):active{color:rgba(0,0,0,.9)}.ui.link.list.list .active.item,.ui.link.list.list .active.item a:not(.ui){color:rgba(0,0,0,.95)}.ui.inverted.link.list .item,.ui.inverted.link.list a.item,.ui.inverted.link.list .item a:not(.ui){color:rgba(255,255,255,.5)}.ui.inverted.link.list.list a.item:hover,.ui.inverted.link.list.list .item a:not(.ui):hover{color:#fff}.ui.inverted.link.list.list a.item:active,.ui.inverted.link.list.list .item a:not(.ui):active{color:#fff}.ui.inverted.link.list.list a.active.item,.ui.inverted.link.list.list .active.item a:not(.ui){color:#fff}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background-color:rgba(0,0,0,0);padding:.5em .5em;margin:0em;color:rgba(0,0,0,.4);border-radius:0;transition:.1s color ease,.1s padding-left ease,.1s background-color ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0em}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background-color:#f0f0e6;color:rgba(0,0,0,.8)}.ui.selection.list .list>.item:active,.ui.selection.list>.item:active{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.9)}.ui.selection.list .list>.item.active,.ui.selection.list>.item.active{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.selection.list>.item,.ui.inverted.selection.list>.item{background-color:rgba(0,0,0,0);color:rgba(255,255,255,.5)}.ui.inverted.selection.list>.item:hover,.ui.inverted.selection.list>.item:hover{background-color:rgba(255,255,255,.02);color:#fff}.ui.inverted.selection.list>.item:active,.ui.inverted.selection.list>.item:active{background-color:rgba(255,255,255,.08);color:#fff}.ui.inverted.selection.list>.item.active,.ui.inverted.selection.list>.item.active{background-color:rgba(255,255,255,.08);color:#fff}.ui.celled.selection.list .list>.item,.ui.divided.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list>.item{border-radius:0em}.ui.animated.list>.item{transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0em;padding-right:0em}.ui.fitted.list:not(.selection).horizontal{margin:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-0.5em;margin-right:-0.5em}.ui.attached.list.bottom{margin-bottom:0 !important}.ui.attached.list.top{margin-top:0 !important}.ui.bulleted.list{margin-left:1.25rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before{user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;font-weight:normal;margin-left:-1.25rem;content:"•";opacity:1;color:inherit;vertical-align:top}.ui.bulleted.list .list>a.item:before,.ui.bulleted.list>a.item:before{color:#2a2a2a}.ui.bulleted.list .list{padding-left:1.25rem}.ui.horizontal.bulleted.list{margin-left:0em}.ui.horizontal.bulleted.list>.item{margin-left:1.25remstrip-unit(0.5em)}.ui.horizontal.bulleted.list>.item:first-child{margin-left:0em}.ui.horizontal.bulleted.list>.item::before{color:#2a2a2a}.ui.horizontal.bulleted.list>.item:first-child::before{display:none}ol.ui.list,.ui.ordered.list,.ui.ordered.list .list,ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}ol.ui.list li,.ui.ordered.list .list>.item,.ui.ordered.list>.item{list-style-type:none;position:relative}ol.ui.list li:before,.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before{position:absolute;top:auto;left:auto;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered, ".") " ";text-align:right;color:#2a2a2a;vertical-align:middle;opacity:.8}ol.ui.inverted.list li:before,.ui.ordered.inverted.list .list>.item:before,.ui.ordered.inverted.list>.item:before{color:rgba(255,255,255,.7)}.ui.ordered.list>.list>.item[data-value],.ui.ordered.list>.item[data-value]{content:attr(data-value)}ol.ui.list li[value]:before{content:attr(value)}ol.ui.list ol,.ui.ordered.list .list{margin-left:1em}ol.ui.list ol li:before,.ui.ordered.list .list>.item:before{margin-left:-2em}ol.ui.horizontal.list,.ui.ordered.horizontal.list{margin-left:0em}ol.ui.horizontal.list li:before,.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before{position:static;margin:0em .5em 0em 0em}.ui.tree.list,.ui.tree.list:last-child{padding-bottom:.3em}.ui.tree.list .list,.ui.tree.list:last-child .list{list-style-type:none}.ui.tree.list .list:not(.hidden-list),.ui.tree.list:last-child .list:not(.hidden-list){padding-top:0em}.ui.tree.list .item>.header,.ui.tree.list:last-child .item>.header{font-weight:lighter !important;opacity:.7 !important}.ui.tree.list .item>.read-more,.ui.tree.list:last-child .item>.read-more{padding-left:1.2em}.ui.tree.list .hidden-list,.ui.tree.list:last-child .hidden-list{display:none}.ui.divided.list>.item{border-top:1px solid rgba(34,36,38,.15)}.ui.divided.list .list>.item{border-top:none}.ui.divided.list .item .list>.item{border-top:none}.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list:not(.horizontal),.ui.divided.bulleted.list .list{margin-left:0em;padding-left:0em}.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}.ui.divided.ordered.list{margin-left:0em}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0em;margin-right:0em;padding-bottom:.2142857143em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{margin:0em;border-radius:0em}.ui.divided.horizontal.list{margin-left:0em}.ui.divided.horizontal.list>.item:not(:first-child){padding-left:.5em}.ui.divided.horizontal.list>.item:not(:last-child){padding-right:.5em}.ui.divided.horizontal.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0em;line-height:.6}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list,.ui.divided.inverted.horizontal.list>.item{border-color:rgba(255,255,255,.1)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(34,36,38,.15);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(34,36,38,.15)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.2142857143em;padding-bottom:.2142857143em}.ui.celled.list .item .list>.item{border-width:0px}.ui.celled.list .list>.item:first-child{border-top-width:0px}.ui.celled.bulleted.list{margin-left:0em}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1.25rem}.ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:.2142857143em}.ui.celled.ordered.list{margin-left:0em}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0em;margin-right:0em;padding-bottom:.2142857143em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0em}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-top:none;border-left:1px solid rgba(34,36,38,.15);margin:0em;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.celled.list .list>.item:first-child,.ui.horizontal.celled.list>.item:first-child{border-bottom:none;border-left:none;padding-left:0}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none}.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(255,255,255,.1)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item{border-color:1px solid rgba(255,255,255,.1)}.ui.relaxed.list:not(.horizontal)>.item:not(:first-child),.ui.relaxed.list:not(.horizontal)>li:not(:first-child),.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>li:not(:first-child),.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>.item:not(:first-child){padding-top:.817em}.ui.relaxed.list:not(.horizontal)>.item:not(:last-child),.ui.relaxed.list:not(.horizontal)>li:not(:last-child),.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>li:not(:last-child),.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>.item:not(:last-child){padding-bottom:.5em}.ui.horizontal.relaxed.list .list>.item:not(:first-child),.ui.horizontal.relaxed.list>.item:not(:first-child){padding-left:1rem}.ui.horizontal.relaxed.list .list>.item:not(:last-child),.ui.horizontal.relaxed.list>.item:not(:last-child){padding-right:1rem}.ui.relaxed.list>.item.view-more{cursor:pointer}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:first-child){padding-top:.9285714286em}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:last-child){padding-bottom:.9285714286em}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:first-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:first-child){padding-left:1.5rem}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:last-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:last-child){padding-right:1.5rem}.ui.mini.list{font-size:.7857142857rem}.ui.tiny.list{font-size:.8571428571rem}.ui.small.list{font-size:.9285714286rem}.ui.medium.list{font-size:1rem}.ui.list{font-size:1.0714285714rem}.ui.list .ui.checkbox>label{font-size:1.0714285714rem !important}.ui.large.list{font-size:1.1428571429rem}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.7857142857rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.8571428571rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.9285714286rem}.ui.medium.horizontal.list .list>.item,.ui.medium.horizontal.list>.item{font-size:1rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1.0714285714rem}.ui.horizontal.list .list>.item .ui.checkbox>label,.ui.horizontal.list>.item .ui.checkbox>label{font-size:1.0714285714rem !important}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.1428571429rem}/*! + * # Semantic UI - Loader + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0px;text-align:center;z-index:1000;transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:"";top:0%;left:50%;width:100%;height:100%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:"";top:0%;left:50%;width:100%;height:100%;animation:loader .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:.2em;box-shadow:0px 0px 0px 1px rgba(0,0,0,0)}@keyframes loader{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.ui.mini.loader:before,.ui.mini.loader:after{width:1rem;height:1rem;margin:0em 0em 0em -0.5rem}.ui.tiny.loader:before,.ui.tiny.loader:after{width:1.1428571429rem;height:1.1428571429rem;margin:0em 0em 0em -.5714285714rem}.ui.small.loader:before,.ui.small.loader:after{width:1.7142857143rem;height:1.7142857143rem;margin:0em 0em 0em -.8571428571rem}.ui.loader:before,.ui.loader:after{width:2.2857142857rem;height:2.2857142857rem;margin:0em 0em 0em -1.1428571429rem}.ui.large.loader:before,.ui.large.loader:after{width:3.4285714286rem;height:3.4285714286rem;margin:0em 0em 0em -1.7142857143rem}.ui.big.loader:before,.ui.big.loader:after{width:3.7142857143rem;height:3.7142857143rem;margin:0em 0em 0em -1.8571428571rem}.ui.huge.loader:before,.ui.huge.loader:after{width:4.1428571429rem;height:4.1428571429rem;margin:0em 0em 0em -2.0714285714rem}.ui.massive.loader:before,.ui.massive.loader:after{width:4.5714285714rem;height:4.5714285714rem;margin:0em 0em 0em -2.2857142857rem}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(255,255,255,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0)}.ui.inverted.dimmer .ui.loader{color:#2a2a2a}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 rgba(0,0,0,0) rgba(0,0,0,0)}.ui.text.loader{width:auto !important;height:auto !important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{animation-direction:reverse;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1rem;height:1rem;font-size:.7857142857em}.ui.inverted.dimmer .ui.tiny.loader,.ui.tiny.loader{width:1.1428571429rem;height:1.1428571429rem;font-size:.8571428571em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.7142857143rem;height:1.7142857143rem;font-size:.9285714286em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.2857142857rem;height:2.2857142857rem;font-size:1em}.ui.inverted.dimmer .ui.large.loader,.ui.large.loader{width:3.4285714286rem;height:3.4285714286rem;font-size:1.1428571429em}.ui.inverted.dimmer .ui.big.loader,.ui.big.loader{width:3.7142857143rem;height:3.7142857143rem;font-size:1.2857142857em}.ui.inverted.dimmer .ui.huge.loader,.ui.huge.loader{width:4.1428571429rem;height:4.1428571429rem;font-size:1.4285714286em}.ui.inverted.dimmer .ui.massive.loader,.ui.massive.loader{width:4.5714285714rem;height:4.5714285714rem;font-size:1.7142857143em}.ui.mini.text.loader{min-width:1rem;padding-top:1.7857142857rem}.ui.tiny.text.loader{min-width:1.1428571429rem;padding-top:1.9285714286rem}.ui.small.text.loader{min-width:1.7142857143rem;padding-top:2.5rem}.ui.text.loader{min-width:2.2857142857rem;padding-top:3.0714285714rem}.ui.large.text.loader{min-width:3.4285714286rem;padding-top:4.2142857143rem}.ui.big.text.loader{min-width:3.7142857143rem;padding-top:4.5rem}.ui.huge.text.loader{min-width:4.1428571429rem;padding-top:4.9285714286rem}.ui.massive.text.loader{min-width:4.5714285714rem;padding-top:5.3571428571rem}.ui.inverted.loader{color:rgba(255,255,255,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#fff}.ui.inline.loader{position:relative;vertical-align:middle;margin:0em;left:0em;top:0em;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}.ui.menu{display:flex;margin:1rem 0em;font-family:var(--wp--preset--font-family--sans-serif);background:#fff;font-weight:normal;border:1px solid rgba(34,36,38,.15);box-shadow:0px 1px 2px 0 rgba(34,36,38,.15);border-radius:0;min-height:2.8571428571em}.ui.menu:after{content:"";display:block;height:0px;clear:both;visibility:hidden}.ui.menu:first-child{margin-top:0rem}.ui.menu:last-child{margin-bottom:0rem}.ui.menu .menu{margin:0em}.ui.menu:not(.vertical)>.menu{display:flex}.ui.menu:not(.vertical) .item,.ui.menu:not(.vertical) .block-list-appender.wp-block{display:flex;align-items:center}.ui.menu .item{text-transform:capitalize}.ui.menu .block-list-appender.wp-block,.ui.menu .item,.ui.menu .wp-block-navigation-link{position:relative;vertical-align:middle;line-height:1;text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);flex:0 0 auto;user-select:none;background:none;padding:.9285714286em 1.1428571429em;color:#2a2a2a;font-weight:normal;transition:background .1s ease,box-shadow .1s ease,color .1s ease}.ui.menu .block-list-appender.wp-block:before,.ui.menu .item:before,.ui.menu .wp-block-navigation-link:before{position:absolute;content:"";top:0%;right:0px;height:100%;width:1px;background:rgba(34,36,38,.1)}.ui.menu .wp-block-navigation-link a{color:#000;text-decoration:none}.ui.menu .wp-block-navigation-link a:visited{color:#000}.ui.menu>.item:first-child,.ui.menu>.wp-block-navigation__container>.wp-block-navigation-link:first-child{border-radius:0 0px 0px 0}.ui.menu .text.item>*,.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child{user-select:text;line-height:1.3}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{opacity:.9;float:none;margin:0em .3571428571em 0em 0em}.ui.menu:not(.vertical) .item>.button{position:relative;top:0em;margin:-0.5em 0em;padding-bottom:.7857142857em;padding-top:.7857142857em;font-size:1em}.ui.menu>.grid,.ui.menu>.container{display:flex;align-items:inherit;flex-direction:inherit}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{position:relative;top:0em;margin:-0.5em 0em}.ui.menu .item>.input input{font-size:1em;padding-top:.5714285714em;padding-bottom:.5714285714em}.ui.menu .header.item,.ui.vertical.menu .header.item{margin:0em;background:"";text-transform:normal;font-weight:bold}.ui.vertical.menu .item>.header:not(.ui){margin:0em 0em .5em;font-size:1em;font-weight:bold}.ui.menu .item>i.dropdown.icon{padding:0em;float:right;margin:0em 0em 0em 1em}.ui.menu .dropdown.item .menu{min-width:calc(100% - 1px);border-radius:0em 0em 0 0;background:#fff;margin:0em 0px 0px;box-shadow:0px 1px 3px 0px rgba(0,0,0,.08);flex-direction:column !important}.ui.menu .ui.dropdown .menu>.item{margin:0;text-align:left;font-size:1em !important;padding:.7857142857em 1.1428571429em !important;background:rgba(0,0,0,0) !important;color:#2a2a2a !important;text-transform:none !important;font-weight:normal !important;box-shadow:none !important;transition:none !important}.ui.menu .ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05) !important;color:rgba(0,0,0,.95) !important}.ui.menu .ui.dropdown .menu>.selected.item{background:rgba(0,0,0,.05) !important;color:rgba(0,0,0,.95) !important}.ui.menu .ui.dropdown .menu>.active.item{background:rgba(0,0,0,.03) !important;font-weight:bold !important;color:rgba(0,0,0,.95) !important}.ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}.ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;font-size:1em !important;float:none;margin:0em .75em 0em 0em !important}.ui.secondary.menu .dropdown.item>.menu,.ui.text.menu .dropdown.item>.menu{border-radius:0;margin-top:.3571428571em}.ui.menu .pointing.dropdown.item .menu{margin-top:.75em}.ui.inverted.menu .search.dropdown.item>.search,.ui.inverted.menu .search.dropdown.item>.text{color:rgba(255,255,255,.9)}.ui.vertical.menu .dropdown.item>.icon{float:right;content:"";margin-left:1em}.ui.vertical.menu .dropdown.item .menu{left:100%;min-width:0;margin:0em 0em 0em 0em;box-shadow:0 1px 3px 0px rgba(0,0,0,.08);border-radius:0em 0 0 0}.ui.vertical.menu .dropdown.item.upward .menu{bottom:0}.ui.vertical.menu .dropdown.item:not(.upward) .menu{top:0}.ui.vertical.menu .active.dropdown.item{border-top-right-radius:0em;border-bottom-right-radius:0em}.ui.vertical.menu .dropdown.active.item{box-shadow:none}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{background:#999;color:#fff;margin-left:1em;padding:.3em .7857142857em}.ui.vertical.menu .item>.label{background:#999;color:#fff;margin-top:-0.15em;margin-bottom:-0.15em;padding:.3em .7857142857em}.ui.menu .item>.floating.label{padding:.3em .7857142857em}.ui.menu .item>img:not(.ui){display:inline-block;vertical-align:middle;margin:-0.3em 0em;width:2.5em}.ui.vertical.menu .item>img:not(.ui):only-child{display:block;max-width:100%;width:auto}.ui.menu .list .item:before{background:none !important}.ui.vertical.sidebar.menu>.item:first-child:before{display:block !important}.ui.vertical.sidebar.menu>.item::before{top:auto;bottom:0px}@media only screen and (max-width: 767px){.ui.menu>.ui.container{width:100% !important;margin-left:0em !important;margin-right:0em !important}}@media only screen and (min-width: 768px){.ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless)>.container>.item:not(.right):not(.borderless):first-child{border-left:1px solid rgba(34,36,38,.1)}}.ui.link.menu .item:hover,.ui.menu .dropdown.item:hover,.ui.menu .link.item:hover,.ui.menu a.item:hover{cursor:pointer;background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.menu .active.item,.wp-block-navigation .wp-block-navigation-link.current-menu-item{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);font-weight:normal;box-shadow:none}.ui.menu .active.item>i.icon,.wp-block-navigation .wp-block-navigation-link.current-menu-item>i.icon{opacity:1}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover,.wp-block-navigation .wp-block-navigation-link.current-menu-item:hover{background-color:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{cursor:default !important;background-color:rgba(0,0,0,0) !important;color:rgba(0,0,0,.2) !important}.ui.relaxed.menu{margin-top:24px;margin-bottom:24px}.ui.menu:not(.vertical) .left.item,.ui.menu:not(.vertical) :not(.dropdown)>.left.menu{display:flex;margin-right:auto !important}.ui.menu:not(.vertical) .right.item,.ui.menu:not(.vertical) .right.menu{display:flex;margin-left:auto !important}.ui.menu .right.item::before,.ui.menu .right.menu>.item::before{right:auto;left:0}.ui.vertical.menu{display:block;flex-direction:column;background:#fff;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15)}.ui.vertical.menu .item{display:block;background:none;border-top:none;border-right:none}.ui.vertical.menu>.item:first-child{border-radius:0 0 0px 0px}.ui.vertical.menu>.item:last-child{border-radius:0px 0px 0 0}.ui.vertical.menu .item>.label{float:right;text-align:center}.ui.vertical.menu .item>i.icon{width:1.18em;float:right;margin:0em 0em 0em .5em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0em .5em 0em 0em}.ui.vertical.menu .item:before{position:absolute;content:"";top:0%;left:0px;width:100%;height:1px;background:rgba(34,36,38,.1)}.ui.vertical.menu .item:first-child:before{display:none !important}.ui.vertical.menu .item>.menu{margin:-.6428571429em 0em}.ui.vertical.menu .menu .item{background:none;padding:.5em 1.3333333333em;font-size:.8571428571em;color:rgba(0,0,0,.5)}.ui.vertical.menu .item .menu a.item:hover,.ui.vertical.menu .item .menu .link.item:hover{color:rgba(0,0,0,.85)}.ui.vertical.menu .menu .item:before{display:none}.ui.vertical.menu .active.item{background:rgba(0,0,0,.05);border-radius:0em;box-shadow:none}.ui.vertical.menu>.active.item:first-child{border-radius:0 0 0em 0em}.ui.vertical.menu>.active.item:last-child{border-radius:0em 0em 0 0}.ui.vertical.menu>.active.item:only-child{border-radius:0}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:rgba(0,0,0,0);font-weight:bold;color:rgba(0,0,0,.95)}.ui.tabular.menu{border-radius:0em;box-shadow:none !important;border:none;background:none rgba(0,0,0,0);border-bottom:1px solid #d4d4d5}.ui.tabular.fluid.menu{width:calc(100% + 2px) !important}.ui.tabular.menu .item{background:rgba(0,0,0,0);border-bottom:none;border-left:1px solid rgba(0,0,0,0);border-right:1px solid rgba(0,0,0,0);border-top:2px solid rgba(0,0,0,0);padding:.9285714286em 1.4285714286em;color:#2a2a2a}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:rgba(0,0,0,0);color:rgba(0,0,0,.8)}.ui.tabular.menu .active.item{background:none #fff;color:rgba(0,0,0,.95);border-top-width:1px;border-color:#d4d4d5;font-weight:bold;margin-bottom:-1px;box-shadow:none;border-radius:0 0 0px 0px !important}.ui.tabular.menu+.attached:not(.top).segment,.ui.tabular.menu+.attached:not(.top).segment+.attached:not(.top).segment{border-top:none;margin-left:0px;margin-top:0px;margin-right:0px;width:100%}.top.attached.segment+.ui.bottom.tabular.menu{position:relative;width:calc(100% + 2px);left:-1px}.ui.bottom.tabular.menu{background:none rgba(0,0,0,0);border-radius:0em;box-shadow:none !important;border-bottom:none;border-top:1px solid #d4d4d5}.ui.bottom.tabular.menu .item{background:none;border-left:1px solid rgba(0,0,0,0);border-right:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);border-top:none}.ui.bottom.tabular.menu .active.item{background:none #fff;color:rgba(0,0,0,.95);border-color:#d4d4d5;margin:-1px 0px 0px 0px;border-radius:0px 0px 0 0 !important}.ui.vertical.tabular.menu{background:none rgba(0,0,0,0);border-radius:0em;box-shadow:none !important;border-bottom:none;border-right:1px solid #d4d4d5}.ui.vertical.tabular.menu[data-borderHidden=true]{border-right:1px solid rgba(0,0,0,0)}.ui.vertical.tabular.menu .item{background:none;border-left:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);border-top:1px solid rgba(0,0,0,0);border-right:none;padding:1.8571428571em 1.4285714286em;font-weight:500}.ui.vertical.tabular.menu .active.item{background:#efefef;color:rgba(0,0,0,.95);border-color:#d4d4d5;margin:-1px 0px 0px;border-radius:0 0px 0px 0 !important}.ui.vertical.right.tabular.menu{background:none rgba(0,0,0,0);border-radius:0em;box-shadow:none !important;border-bottom:none;border-right:none;border-left:1px solid #d4d4d5}.ui.vertical.right.tabular.menu .item{background:none;border-right:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);border-top:1px solid rgba(0,0,0,0);border-left:none}.ui.vertical.right.tabular.menu .active.item{background:#efefef;color:rgba(0,0,0,.95);border-color:#d4d4d5;margin:0px 0px -1px;border-radius:0px 0 0 0px !important}.ui.tabular.menu .active.dropdown.item{margin-bottom:0px;border-left:1px solid rgba(0,0,0,0);border-right:1px solid rgba(0,0,0,0);border-top:2px solid rgba(0,0,0,0);border-bottom:none}.ui.pagination.menu{margin:0em;display:inline-flex;vertical-align:middle;box-shadow:none;border:none;min-height:1rem;padding-top:0}.ui.pagination.menu .item:last-child{border-radius:0em 0 0 0em;margin-right:0}.ui.compact.menu .item:last-child{border-radius:0em 0 0 0em}.ui.pagination.menu .item:last-child:before{display:none}.ui.pagination.menu .item:before,.ui.pagination.menu .item:last-child:before{display:none}.ui.pagination.menu .item{min-width:1rem;text-align:center;border:1px solid #d3d3d3;margin-right:.25rem;padding:.25rem .5rem;border-radius:0}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu .active.item{background-color:#fff;font-weight:500;box-shadow:none;border:none;padding-top:.25rem;cursor:default}#js-pagination{margin-top:3.5714285714rem}#js-pagination a{cursor:pointer}#js-pagination>div{display:flex;padding-top:25px}#js-pagination>div>div:nth-of-type(2){display:flex;justify-content:center;flex-grow:1}@media only screen and (max-width: 767px){#js-pagination>div{flex-wrap:wrap}#js-pagination>div>div:nth-of-type(1){order:1;width:50%}#js-pagination>div>div:nth-of-type(2){order:3;padding-top:1rem;width:100%}#js-pagination>div>div:nth-of-type(3){order:2;width:50%;text-align:right}}#js-pagination .next,#js-pagination .previous{text-transform:uppercase;font-weight:500;letter-spacing:.1em;font-size:1rem;font-family:var(--wp--preset--font-family--sans-serif);color:#000}#js-pagination .disabled{color:#ccc}.ui.secondary.menu,.wp-block-navigation.is-style-secondary,.wp-block-navigation.is-style-secondary-pointing{background:none;margin-left:-.3571428571em;margin-right:-.3571428571em;border-radius:0em;border:none;box-shadow:none}.ui.secondary.menu .item,.wp-block-navigation.is-style-secondary .wp-block-navigation-link,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link{align-self:center;box-shadow:none;border:none;padding:.7857142857em .9285714286em;margin:0em .3571428571em;transition:color .1s ease;border-radius:.2857142857rem}.ui.secondary.menu .item:before,.wp-block-navigation.is-style-secondary .wp-block-navigation-link:before,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:before{display:none !important}.ui.secondary.menu .item.header,.wp-block-navigation.is-style-secondary .wp-block-navigation-link.header,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.header{border-radius:0em;border-right:none;background:none rgba(0,0,0,0)}.ui.secondary.menu .item>img:not(.ui),.wp-block-navigation.is-style-secondary .wp-block-navigation-link>img:not(.ui),.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link>img:not(.ui){margin:0em}.ui.secondary.menu .item .ui.secondary.menu .item.active,.wp-block-navigation.is-style-secondary .wp-block-navigation-link .ui.secondary.menu .item.active,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link .ui.secondary.menu .item.active{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);border-radius:.2857142857rem}.ui.secondary.menu .item .ui.secondary.menu .item.active:hover,.wp-block-navigation.is-style-secondary .wp-block-navigation-link .ui.secondary.menu .item.active:hover,.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link .ui.secondary.menu .item.active:hover{box-shadow:none;background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.menu .dropdown.item:hover,.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:rgba(255,255,255,.7) !important}.ui.secondary.inverted.menu .dropdown.item:hover,.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{background:rgba(255,255,255,.08);color:#fff !important}.ui.secondary.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff !important}.ui.secondary.item.menu{margin-left:0em;margin-right:0em}.ui.secondary.item.menu .item:last-child{margin-right:0em}.ui.secondary.attached.menu{box-shadow:none}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu{margin:-.9285714286em}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item{margin:0em;padding:.5em 1.3333333333em}.ui.secondary.vertical.menu>.item{border:none;margin:0em 0em .3571428571em;border-radius:.2857142857rem !important}.ui.secondary.vertical.menu>.header.item{border-radius:0em}.ui.vertical.secondary.menu .item>.menu .item{background-color:rgba(0,0,0,0)}.ui.secondary.inverted.menu{background-color:rgba(0,0,0,0)}.ui.secondary.pointing.menu,nav.wp-block-navigation.is-style-secondary-pointing{margin-left:0em;margin-right:0em;border-bottom:2px solid rgba(34,36,38,.15)}.ui.secondary.pointing.menu .item,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link{border-bottom-color:rgba(0,0,0,0);border-bottom-style:solid;border-radius:0em;align-self:flex-end;margin:0em 0em -2px;padding:.8571428571em 1.1428571429em;border-bottom-width:2px;transition:color .1s ease}.ui.secondary.pointing.menu .item.header,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.header{color:rgba(0,0,0,.85) !important}.ui.secondary.pointing.menu .item.text,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.text{box-shadow:none !important}.ui.secondary.pointing.menu .item:after,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:after{display:none}.ui.secondary.pointing.menu .item.active,.ui.secondary.pointing.menu .item.current-menu-item,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.active,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.current-menu-item{background-color:rgba(0,0,0,0);box-shadow:none;border-color:#1b1c1d;font-weight:bold;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .item.active:hover,.ui.secondary.pointing.menu .item.current-menu-item:hover,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.active:hover,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.current-menu-item:hover{border-color:#1b1c1d;color:rgba(0,0,0,.95)}.ui.secondary.pointing.menu .item.active.dropdown,.ui.secondary.pointing.menu .item.current-menu-item.dropdown,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.active.dropdown,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link.current-menu-item.dropdown{border-color:rgba(0,0,0,0)}.ui.secondary.pointing.menu .dropdown.item:hover,.ui.secondary.pointing.menu .link.item:hover,.ui.secondary.pointing.menu a.item:hover,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:hover{background-color:rgba(0,0,0,0);color:#2a2a2a}.ui.secondary.pointing.menu .dropdown.item:active,.ui.secondary.pointing.menu .link.item:active,.ui.secondary.pointing.menu a.item:active,nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:active{background-color:rgba(0,0,0,0);border-color:rgba(34,36,38,.15)}.ui.secondary.vertical.pointing.menu{border-bottom-width:0px;border-right-width:2px;border-right-style:solid;border-right-color:rgba(34,36,38,.15)}.ui.secondary.vertical.pointing.menu .item{border-bottom:none;border-right-style:solid;border-right-color:rgba(0,0,0,0);border-radius:0em !important;margin:0em -2px 0em 0em;border-right-width:2px}.ui.secondary.vertical.pointing.menu .active.item{border-color:#1b1c1d}.ui.secondary.inverted.pointing.menu{border-color:rgba(255,255,255,.1)}.ui.secondary.inverted.pointing.menu{border-width:2px;border-color:rgba(34,36,38,.15)}.ui.secondary.inverted.pointing.menu .item{color:rgba(255,255,255,.9)}.ui.secondary.inverted.pointing.menu .header.item{color:#fff !important}.ui.secondary.inverted.pointing.menu .link.item:hover,.ui.secondary.inverted.pointing.menu a.item:hover{color:rgba(0,0,0,.95)}.ui.secondary.inverted.pointing.menu .active.item{border-color:#fff;color:#fff}.ui.text.menu{background:none rgba(0,0,0,0);border-radius:0px;box-shadow:none;border:none;margin:.5em}.ui.text.menu .item{border-radius:0px;box-shadow:none;align-self:center;margin:0em 0em;padding:.3571428571em .5em;font-weight:normal;color:rgba(0,0,0,.6);transition:opacity .1s ease}.ui.text.menu .item:before,.ui.text.menu .menu .item:before{display:none !important}.ui.text.menu .header.item{background-color:rgba(0,0,0,0);opacity:1;color:rgba(0,0,0,.85);font-size:.9285714286em;text-transform:uppercase;font-weight:bold}.ui.text.menu .item>img:not(.ui){margin:0em}.ui.text.item.menu .item{margin:0em}.ui.vertical.text.menu{margin:1em 0em}.ui.vertical.text.menu:first-child{margin-top:0rem}.ui.vertical.text.menu:last-child{margin-bottom:0rem}.ui.vertical.text.menu .item{margin:.5714285714em 0em;padding-left:0em;padding-right:0em}.ui.vertical.text.menu .item>i.icon{float:none;margin:0em .3571428571em 0em 0em}.ui.vertical.text.menu .header.item{margin:.5714285714em 0em .7142857143em}.ui.vertical.text.menu .item:not(.dropdown)>.menu{margin:0em}.ui.vertical.text.menu .item:not(.dropdown)>.menu>.item{margin:0em;padding:.5em 0em}.ui.text.menu .item:hover{opacity:1;background-color:rgba(0,0,0,0)}.ui.text.menu .active.item{background-color:rgba(0,0,0,0);border:none;box-shadow:none;font-weight:normal;color:rgba(0,0,0,.95)}.ui.text.menu .active.item:hover{background-color:rgba(0,0,0,0)}.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.text.attached.menu{box-shadow:none}.ui.inverted.text.menu{border:0px solid rgba(0,0,0,0) !important;background:#1b1c1d !important;box-shadow:none !important}.ui.inverted.text.menu .item,.ui.inverted.text.menu .item:hover,.ui.inverted.text.menu .active.item{background-color:rgba(0,0,0,0) !important}.ui.fluid.text.menu{margin-left:0em;margin-right:0em}.ui.vertical.icon.menu{display:inline-block;width:auto}.ui.icon.menu .item{height:auto;text-align:center;color:#1b1c1d}.ui.icon.menu .item>.icon:not(.dropdown){margin:0;opacity:1}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item>.icon{width:auto;margin:0em auto}.ui.vertical.icon.menu .item>.icon:not(.dropdown){display:block;opacity:1;margin:0em auto;float:none}.ui.inverted.icon.menu .item{color:#fff}.ui.labeled.icon.menu{text-align:center}.ui.labeled.icon.menu .item{min-width:6em;flex-direction:column}.ui.labeled.icon.menu .item>.icon:not(.dropdown){height:1em;display:block;font-size:1.7142857143em !important;margin:0em auto .5rem !important}.ui.fluid.labeled.icon.menu>.item{min-width:0em}@media only screen and (max-width: 767px){.ui.stackable.menu{flex-direction:column}.ui.stackable.menu .item{width:100% !important}.ui.stackable.menu .item:before{position:absolute;content:"";top:auto;bottom:0px;left:0px;width:100%;height:1px;background:rgba(34,36,38,.1)}.ui.stackable.menu .left.menu,.ui.stackable.menu .left.item{margin-right:0 !important}.ui.stackable.menu .right.menu,.ui.stackable.menu .right.item{margin-left:0 !important}.ui.stackable.menu .right.menu,.ui.stackable.menu .left.menu{flex-direction:column}}.ui.inverted.menu{border:0px solid rgba(0,0,0,0);background:#1b1c1d;box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){background:rgba(0,0,0,0);color:rgba(255,255,255,.9)}.ui.inverted.menu .item.menu{background:rgba(0,0,0,0)}.ui.inverted.menu .item:before{background:rgba(255,255,255,.08)}.ui.vertical.inverted.menu .item:before{background:rgba(255,255,255,.08)}.ui.vertical.inverted.menu .menu .item,.ui.vertical.inverted.menu .menu .item a:not(.ui){color:rgba(255,255,255,.5)}.ui.inverted.menu .header.item{margin:0em;background:rgba(0,0,0,0);box-shadow:none}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:rgba(255,255,255,.2)}.ui.link.inverted.menu .item:hover,.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover{background:rgba(255,255,255,.08);color:#fff}.ui.vertical.inverted.menu .item .menu a.item:hover,.ui.vertical.inverted.menu .item .menu .link.item:hover{background:rgba(0,0,0,0);color:#fff}.ui.inverted.menu a.item:active,.ui.inverted.menu .link.item:active{background:rgba(255,255,255,.08);color:#fff}.ui.inverted.menu .active.item{background:rgba(255,255,255,.15);color:#fff !important}.ui.inverted.vertical.menu .item .menu .active.item{background:rgba(0,0,0,0);color:#fff}.ui.inverted.pointing.menu .active.item:after{background:#3d3e3f !important;margin:0em !important;box-shadow:none !important;border:none !important}.ui.inverted.menu .active.item:hover{background:rgba(255,255,255,.15);color:#fff !important}.ui.inverted.pointing.menu .active.item:hover:after{background:#3d3e3f !important}.ui.floated.menu{float:left;margin:0rem .5rem 0rem 0rem}.ui.floated.menu .item:last-child:before{display:none}.ui.right.floated.menu{float:right;margin:0rem 0rem 0rem .5rem}.ui.inverted.beige.menu{background:none;min-height:inherit;border-radius:0}.ui.inverted.beige.menu .item{background-color:#b7b8af;color:#58585a !important;padding:.5rem 1rem;border-radius:0 !important;border:0;border-right:1px solid #fff;font-size:.7857142857rem;letter-spacing:.078rem}.ui.inverted.beige.menu .item:last-of-type{border-right:none}.ui.inverted.beige.menu .item:hover{color:#58585a;background-color:#b7b8af}.ui.inverted.beige.menu .active.item{background-color:#f7f7f1 !important;font-weight:normal !important;border-color:none !important}.ui.inverted.beige.menu .active.item:hover{color:#58585a !important}.ui.inverted.oatmeal.menu{background:none;min-height:inherit;border-radius:0}.ui.inverted.oatmeal.menu .item{background-color:#b2b3a5;color:#58585a !important;padding:.5rem 1rem;border-radius:0 !important;border:0;border-right:1px solid #fff;font-size:.7857142857rem;letter-spacing:.078rem}.ui.inverted.oatmeal.menu .item:last-of-type{border-right:none}.ui.inverted.oatmeal.menu .item:hover{color:#58585a;background-color:#b2b3a5}.ui.inverted.oatmeal.menu .active.item{background-color:#ecece3 !important;font-weight:normal !important;border-color:none !important}.ui.inverted.oatmeal.menu .active.item:hover{color:#58585a !important}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0em}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-top:.9285714286em;padding-bottom:.9285714286em}.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item,.ui.menu .vertically.fitted.item{padding-left:1.1428571429em;padding-right:1.1428571429em}.ui.menu.attached.borderless{border:none !important}.ui.borderless.menu .item:before,.ui.borderless.menu .item .menu .item:before,.ui.menu .borderless.item:before{background:none !important}.ui.compact.menu{display:inline-flex;margin:0em;vertical-align:middle}.ui.compact.menu .item:last-child{border-radius:0em 0 0 0em}.ui.compact.menu .item:last-child:before{display:none}.ui.compact.vertical.menu{display:inline-block;width:auto !important}.ui.compact.vertical.menu .item:last-child::before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{width:100% !important}.ui.item.menu,.ui.item.menu .item{width:100%;padding-left:0em !important;padding-right:0em !important;margin-left:0em !important;margin-right:0em !important;text-align:center;justify-content:center}.ui.attached.item.menu{margin:0em -1px !important}.ui.item.menu .item:last-child:before{display:none}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{position:fixed;z-index:101;margin:0em;width:100%}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0px !important}.ui.fixed.menu,.ui[class*="top fixed"].menu{top:0px;left:0px;right:auto;bottom:auto}.ui[class*="top fixed"].menu{border-top:none;border-left:none;border-right:none}.ui[class*="right fixed"].menu{border-top:none;border-bottom:none;border-right:none;top:0px;right:0px;left:auto;bottom:auto;width:auto;height:100%}.ui[class*="bottom fixed"].menu{border-bottom:none;border-left:none;border-right:none;bottom:0px;left:0px;top:auto;right:auto}.ui[class*="left fixed"].menu{border-top:none;border-bottom:none;border-left:none;top:0px;left:0px;right:auto;bottom:auto;width:auto;height:100%}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .item.active:after,.ui.pointing.menu .item.current-menu-item:after,.ui.pointing.menu .wp-block-navigation-link.active:after,.ui.pointing.menu .wp-block-navigation-link.current-menu-item:after,.wp-block-navigation.is-style-pointing .item.active:after,.wp-block-navigation.is-style-pointing .item.current-menu-item:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.active:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.current-menu-item:after{visibility:visible;background-color:#f2f2f2}.ui.pointing.menu .item.active.dropdown:after,.ui.pointing.menu .item.current-menu-item.dropdown:after,.ui.pointing.menu .wp-block-navigation-link.active.dropdown:after,.ui.pointing.menu .wp-block-navigation-link.current-menu-item.dropdown:after,.wp-block-navigation.is-style-pointing .item.active.dropdown:after,.wp-block-navigation.is-style-pointing .item.current-menu-item.dropdown:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.active.dropdown:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.current-menu-item.dropdown:after{visibility:hidden}.ui.pointing.menu .item.active:hover:after,.ui.pointing.menu .item.current-menu-item:hover:after,.ui.pointing.menu .wp-block-navigation-link.active:hover:after,.ui.pointing.menu .wp-block-navigation-link.current-menu-item:hover:after,.wp-block-navigation.is-style-pointing .item.active:hover:after,.wp-block-navigation.is-style-pointing .item.current-menu-item:hover:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.active:hover:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.current-menu-item:hover:after{background-color:#f2f2f2}.ui.pointing.menu .item.active:hover:after,.ui.pointing.menu .item.current-menu-item:hover:after,.ui.pointing.menu .wp-block-navigation-link.active:hover:after,.ui.pointing.menu .wp-block-navigation-link.current-menu-item:hover:after,.wp-block-navigation.is-style-pointing .item.active:hover:after,.wp-block-navigation.is-style-pointing .item.current-menu-item:hover:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.active:hover:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link.current-menu-item:hover:after{background-color:#f2f2f2}.ui.pointing.menu .item:after,.ui.pointing.menu .wp-block-navigation-link:after,.wp-block-navigation.is-style-pointing .item:after,.wp-block-navigation.is-style-pointing .wp-block-navigation-link:after{visibility:hidden;position:absolute;content:"";top:100%;left:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);background:none;margin:.5px 0em 0em;width:.5714285714em;height:.5714285714em;border:none;border-bottom:1px solid #d4d4d5;border-right:1px solid #d4d4d5;z-index:2;transition:background .1s ease}.ui.pointing.menu .dropdown.active.item:after,.ui.pointing.menu .active.item .menu .active.item:after,.wp-block-navigation.is-style-pointing .dropdown.active.item:after,.wp-block-navigation.is-style-pointing .active.item .menu .active.item:after{display:none}.ui.pointing.vertical.menu .menu .active.item:after{background-color:#fff}.ui.pointing.vertical.menu .item.active:hover:after{background-color:#f2f2f2}.ui.pointing.vertical.menu .item.active:after{background-color:#f2f2f2}.ui.pointing.vertical.menu .item:after{position:absolute;top:50%;right:0%;bottom:auto;left:auto;transform:translateX(50%) translateY(-50%) rotate(45deg);margin:0em -0.5px 0em 0em;border:none;border-top:1px solid #d4d4d5;border-right:1px solid #d4d4d5}.ui.attached.menu{top:0px;bottom:0px;border-radius:0px;margin:0em -1px;width:calc(100% - -2px);max-width:calc(100% - -2px);box-shadow:none}.ui.attached+.ui.attached.menu:not(.top){border-top:none}.ui[class*="top attached"].menu{bottom:0px;margin-bottom:0em;top:0px;margin-top:1rem;border-radius:0 0 0em 0em}.ui.menu[class*="top attached"]:first-child{margin-top:0em}.ui[class*="bottom attached"].menu{bottom:0px;margin-top:0em;top:0px;margin-bottom:1rem;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0em 0em 0 0}.ui[class*="bottom attached"].menu:last-child{margin-bottom:0em}.ui.top.attached.menu>.item:first-child{border-radius:0 0em 0em 0em}.ui.bottom.attached.menu>.item:first-child{border-radius:0em 0em 0em 0}.ui.attached.menu:not(.tabular){border:1px solid #d4d4d5}.ui.attached.inverted.menu{border:none}.ui.attached.tabular.menu{margin-left:0;margin-right:0;width:100%}.ui.mini.menu{font-size:.7857142857rem}.ui.mini.vertical.menu{width:9rem}.ui.tiny.menu{font-size:.8571428571rem}.ui.tiny.vertical.menu{width:11rem}.ui.small.menu{font-size:.9285714286rem}.ui.small.vertical.menu{width:13rem}.ui.menu,.wp-block-navigation{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu{font-size:1.0714285714rem}.ui.large.vertical.menu{width:18rem}.ui.huge.menu{font-size:1.2142857143rem}.ui.huge.vertical.menu{width:22rem}.ui.big.menu{font-size:1.1428571429rem}.ui.big.vertical.menu{width:20rem}.ui.massive.menu{font-size:1.2857142857rem}.ui.massive.vertical.menu{width:25rem}.wp-block-prc-block-menu>.menu{padding-top:0}.wp-block-prc-block-menu.items-justified-center:not(.vertical)>.menu{justify-content:center}.wp-block-prc-block-menu.items-justified-right:not(.vertical)>.menu{justify-content:flex-end}.wp-block-prc-block-menu.items-justified-center.vertical>.menu{text-align:center}.wp-block-prc-block-menu.items-justified-right.vertical>.menu{text-align:right}.wp-block-prc-block-menu .block-list-appender{display:flex;align-items:center;max-width:inherit !important;margin:inherit !important}.ui.menu.block-editor-block-list__layout>.item{max-width:inherit !important;margin:0 !important}.wp-block-prc-block-menu .wp-block-prc-block-menu{margin:0 !important}.wp-block-prc-block-menu>.ui.menu>.wp-block-prc-block-post-publish-date{flex-grow:1}/*! + * # Semantic UI - Message + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.message{position:relative;min-height:1em;margin:1em 0em;background:#f8f8f9;padding:1em 1.5em;line-height:1.4285em;color:#2a2a2a;transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;border-radius:.2857142857rem;box-shadow:0px 0px 0px 1px rgba(34,36,38,.22) inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.message:first-child{margin-top:0em}.ui.message:last-child{margin-bottom:0em}.ui.message .header{display:block;font-family:var(--wp--preset--font-family--sans-serif);font-weight:bold;margin:-.1428571429em 0em 0rem 0em}.ui.message .header:not(.ui){font-size:1.1428571429em}.ui.message p{opacity:.85;margin:.75em 0em;font-family:var(--wp--preset--font-family--sans-serif)}.ui.message p:first-child{margin-top:0em}.ui.message p:last-child{margin-bottom:0em}.ui.message .header+p{margin-top:.25em}.ui.message .list:not(.ui){text-align:left;padding:0em;opacity:.85;list-style-position:inside;margin:.5em 0em 0em}.ui.message .list:not(.ui):first-child{margin-top:0em}.ui.message .list:not(.ui):last-child{margin-bottom:0em}.ui.message .list:not(.ui) li{position:relative;list-style-type:none;margin:0em 0em .3em 1em;padding:0em}.ui.message .list:not(.ui) li:before{position:absolute;content:"•";left:-1em;height:100%;vertical-align:baseline}.ui.message .list:not(.ui) li:last-child{margin-bottom:0em}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0em;top:.78575em;right:.5em;opacity:.7;transition:opacity .1s ease}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0em}.ui.message>:last-child{margin-bottom:0em}.ui.dropdown .menu>.message{margin:-1px}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:flex}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.compact.icon.message{display:inline-flex}.ui.attached.message{margin-bottom:-1px;border-radius:.2857142857rem .2857142857rem 0em 0em;box-shadow:0em 0em 0em 1px rgba(34,36,38,.15) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0em}.ui.bottom.attached.message{margin-top:-1px;border-radius:0em 0em .2857142857rem .2857142857rem;box-shadow:0em 0em 0em 1px rgba(34,36,38,.15) inset,0px 1px 2px 0 rgba(34,36,38,.15)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{width:auto}.ui.icon.message{display:flex;width:100%;align-items:center}.ui.icon.message>.icon:not(.close){display:block;flex:0 0 auto;width:auto;line-height:1;vertical-align:middle;font-size:3em;opacity:.8}.ui.icon.message>.content{display:block;flex:1 1 auto;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:0rem}.ui.icon.message .circular.icon{width:1em}.ui.floating.message{box-shadow:0px 0px 0px 1px rgba(34,36,38,.22) inset,0px 2px 4px 0px rgba(34,36,38,.12),0px 2px 10px 0px rgba(34,36,38,.15)}.ui.black.message{background-color:#1b1c1d;color:rgba(255,255,255,.9)}.ui.positive.message{background-color:#fcfff5;color:#2c662d}.ui.positive.message,.ui.attached.positive.message{box-shadow:0px 0px 0px 1px #a3c293 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.positive.message .header{color:#1a531b}.ui.negative.message{background-color:#fff6f6;color:#9f3a38}.ui.negative.message,.ui.attached.negative.message{box-shadow:0px 0px 0px 1px #e0b4b4 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.negative.message .header{color:#912d2b}.ui.info.message{background-color:#f8ffff;color:#276f86}.ui.info.message,.ui.attached.info.message{box-shadow:0px 0px 0px 1px #a9d5de inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.info.message .header{color:#0e566c}.ui.warning.message{background-color:#fffaf3;color:#573a08}.ui.warning.message,.ui.attached.warning.message{box-shadow:0px 0px 0px 1px #c9ba9b inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.warning.message .header{color:#794b02}.ui.error.message{background-color:#fff6f6;color:#9f3a38}.ui.error.message,.ui.attached.error.message{box-shadow:0px 0px 0px 1px #e0b4b4 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.error.message .header{color:#912d2b}.ui.success.message{background-color:#fcfff5;color:#2c662d}.ui.success.message,.ui.attached.success.message{box-shadow:0px 0px 0px 1px #a3c293 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.success.message .header{color:#1a531b}.ui.inverted.message,.ui.black.message{background-color:#1b1c1d;color:rgba(255,255,255,.9)}.ui.red.message{background-color:#ffe8e6;color:#db2828;box-shadow:0px 0px 0px 1px #db2828 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.red.message .header{color:#c82121}.ui.orange.message{background-color:#ffedde;color:#f2711c;box-shadow:0px 0px 0px 1px #f2711c inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.orange.message .header{color:#e7640d}.ui.yellow.message{background-color:#fff8db;color:#b58105;box-shadow:0px 0px 0px 1px #b58105 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.yellow.message .header{color:#9c6f04}.ui.olive.message{background-color:#fbfdef;color:#8abc1e;box-shadow:0px 0px 0px 1px #8abc1e inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.olive.message .header{color:#7aa61a}.ui.green.message{background-color:#e5f9e7;color:#1ebc30;box-shadow:0px 0px 0px 1px #1ebc30 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.green.message .header{color:#1aa62a}.ui.teal.message{background-color:#e1f7f7;color:#10a3a3;box-shadow:0px 0px 0px 1px #10a3a3 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.teal.message .header{color:#0e8c8c}.ui.blue.message{background-color:#dff0ff;color:#2185d0;box-shadow:0px 0px 0px 1px #2185d0 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.blue.message .header{color:#1e77ba}.ui.violet.message{background-color:#eae7ff;color:#6435c9;box-shadow:0px 0px 0px 1px #6435c9 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.violet.message .header{color:#5a30b5}.ui.purple.message{background-color:#f6e7ff;color:#a333c8;box-shadow:0px 0px 0px 1px #a333c8 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.purple.message .header{color:#922eb4}.ui.pink.message{background-color:#ffe3fb;color:#e03997;box-shadow:0px 0px 0px 1px #e03997 inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.pink.message .header{color:#dd238b}.ui.brown.message{background-color:#f1e2d3;color:#a5673f;box-shadow:0px 0px 0px 1px #a5673f inset,0px 0px 0px 0px rgba(0,0,0,0)}.ui.brown.message .header{color:#935b38}.ui.mini.message{font-size:.7857142857em}.ui.tiny.message{font-size:.8571428571em}.ui.small.message{font-size:.9285714286em}.ui.message{font-size:1em}.ui.large.message{font-size:1.1428571429em}.ui.big.message{font-size:1.2857142857em}.ui.huge.message{font-size:1.4285714286em}.ui.massive.message{font-size:1.7142857143em}/*! + * # Semantic UI - Modal + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.modal{position:absolute;display:none;z-index:1001;text-align:left;background:#fff;border:none;box-shadow:1px 3px 3px 0px rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);transform-origin:50% 25%;flex:0 0 auto;border-radius:.2857142857rem;user-select:text;will-change:top,left,margin,transform,opacity}.ui.modal>:first-child:not(.icon),.ui.modal>.icon:first-child+*{border-top-left-radius:.2857142857rem;border-top-right-radius:.2857142857rem}.ui.modal>:last-child{border-bottom-left-radius:.2857142857rem;border-bottom-right-radius:.2857142857rem}.ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:.8;font-size:1.25em;color:var(--wp--preset--color--light-gray, white);width:2.25rem;height:2.25rem;padding:.625rem 0rem 0rem 0rem}.ui.modal>.close:hover{opacity:1}.ui.modal>.header{display:block;font-family:var(--wp--preset--font-family--sans-serif);background:#fff;margin:0em;padding:1.25rem 1.5rem;box-shadow:none;color:rgba(0,0,0,.85);border-bottom:1px solid rgba(34,36,38,.15)}.ui.modal>.header:not(.ui){font-size:1.4285714286rem;line-height:1.2857142857em;font-weight:bold}.ui.modal>.content{display:block;width:100%;font-size:1em;line-height:1.4;padding:1.5rem;background:#fff}.ui.modal>.image.content{display:flex;flex-direction:row}.ui.modal>.content>.image{display:block;flex:0 1 auto;width:"";align-self:top}.ui.modal>[class*="top aligned"]{align-self:top}.ui.modal>[class*="middle aligned"]{align-self:middle}.ui.modal>[class*=stretched]{align-self:stretch}.ui.modal>.content>.description{display:block;flex:1 0 auto;min-width:0px;align-self:top}.ui.modal>.content>.icon+.description,.ui.modal>.content>.image+.description{flex:0 1 auto;min-width:"";width:auto;padding-left:2em}.ui.modal>.content>.image>i.icon{margin:0em;opacity:1;width:auto;line-height:1;font-size:8rem}.ui.modal>.actions{background:#f9fafb;padding:1rem 1rem;border-top:1px solid rgba(34,36,38,.15);text-align:right}.ui.modal .actions>.button{margin-left:.75em}@media only screen and (max-width: 767px){.ui.modal{width:95%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 768px){.ui.modal{width:88%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 992px){.ui.modal{width:850px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1200px){.ui.modal{width:900px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1920px){.ui.modal{width:950px;margin:0em 0em 0em 0em}}@media only screen and (max-width: 991px){.ui.modal>.header{padding-right:2.25rem}.ui.modal>.close{top:1.0535rem;right:1rem}}@media only screen and (max-width: 767px){.ui.modal>.header{padding:.75rem 1rem !important;padding-right:2.25rem !important}.ui.modal>.content{display:block;padding:1rem !important}.ui.modal>.close{top:.5rem !important;right:.5rem !important}.ui.modal .image.content{flex-direction:column}.ui.modal .content>.image{display:block;max-width:100%;margin:0em auto !important;text-align:center;padding:0rem 0rem 1rem !important}.ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}.ui.modal .content>.description{display:block;width:100% !important;margin:0em !important;padding:1rem 0rem !important;box-shadow:none}.ui.modal>.actions{padding:1rem 1rem 0rem !important}.ui.modal .actions>.buttons,.ui.modal .actions>.button{margin-bottom:1rem}}.ui.inverted.dimmer>.ui.modal{box-shadow:1px 3px 10px 2px rgba(0,0,0,.2)}.ui.basic.modal{background-color:rgba(0,0,0,0);border:none;border-radius:0em;box-shadow:none !important;color:#fff}.ui.basic.modal>.header,.ui.basic.modal>.content,.ui.basic.modal>.actions{background-color:rgba(0,0,0,0)}.ui.basic.modal>.header{color:#fff}.ui.basic.modal>.close{color:var(--wp--preset--color--slate, black)}.ui.inverted.dimmer>.basic.modal{color:#2a2a2a}.ui.inverted.dimmer>.ui.basic.modal>.header{color:rgba(0,0,0,.85)}.ui.legacy.modal,.ui.legacy.page.dimmer>.ui.modal{top:50%;left:50%}.ui.legacy.page.dimmer>.ui.scrolling.modal,.ui.page.dimmer>.ui.scrolling.legacy.modal,.ui.top.aligned.legacy.page.dimmer>.ui.modal,.ui.top.aligned.dimmer>.ui.legacy.modal{top:auto}.ui.loading.modal{display:block;visibility:hidden;z-index:-1}.ui.active.modal{display:block}.modals.dimmer[class*="top aligned"] .modal{margin:5vh auto}@media only screen and (max-width: 767px){.modals.dimmer[class*="top aligned"] .modal{margin:1rem auto}}.legacy.modals.dimmer[class*="top aligned"]{padding-top:5vh}@media only screen and (max-width: 767px){.legacy.modals.dimmer[class*="top aligned"]{padding-top:1rem}}.scrolling.dimmable.dimmed{overflow:hidden}.scrolling.dimmable>.dimmer{justify-content:flex-start}.scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.dimmable>.dimmer{position:fixed}.modals.dimmer .ui.scrolling.modal{margin:1rem auto}.scrolling.undetached.dimmable.dimmed{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}.scrolling.undetached.dimmable .ui.scrolling.modal{position:absolute;left:50%;margin-top:1rem !important}.ui.modal .scrolling.content{max-height:calc(80vh - 10em);overflow:auto}.ui.fullscreen.modal{width:95% !important;margin:1em auto}.ui.fullscreen.modal>.header{padding-right:2.25rem}.ui.fullscreen.modal>.close{top:1.0535rem;right:1rem}.ui.modal{font-size:1rem}.ui.mini.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width: 767px){.ui.mini.modal{width:95%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 768px){.ui.mini.modal{width:35.2%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 992px){.ui.mini.modal{width:340px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1200px){.ui.mini.modal{width:360px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1920px){.ui.mini.modal{width:380px;margin:0em 0em 0em 0em}}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width: 767px){.ui.tiny.modal{width:95%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 768px){.ui.tiny.modal{width:52.8%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 992px){.ui.tiny.modal{width:510px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1200px){.ui.tiny.modal{width:540px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1920px){.ui.tiny.modal{width:570px;margin:0em 0em 0em 0em}}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width: 767px){.ui.small.modal{width:95%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 768px){.ui.small.modal{width:70.4%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 992px){.ui.small.modal{width:680px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1200px){.ui.small.modal{width:720px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1920px){.ui.small.modal{width:760px;margin:0em 0em 0em 0em}}.ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width: 767px){.ui.large.modal{width:95%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 768px){.ui.large.modal{width:88%;margin:0em 0em 0em 0em}}@media only screen and (min-width: 992px){.ui.large.modal{width:1020px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1200px){.ui.large.modal{width:1080px;margin:0em 0em 0em 0em}}@media only screen and (min-width: 1920px){.ui.large.modal{width:1140px;margin:0em 0em 0em 0em}}/*! + * # Semantic UI - Loader + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.placeholder{position:static;overflow:hidden;animation:placeholderShimmer 2s linear;animation-iteration-count:infinite;background-color:#fff;background-image:linear-gradient(to right, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.08) 30%);background-size:1200px 100%;max-width:30rem}@keyframes placeholderShimmer{0%{background-position:-1200px 0}100%{background-position:1200px 0}}.ui.placeholder+.ui.placeholder{margin-top:2rem}.ui.placeholder+.ui.placeholder{animation-delay:.15s}.ui.placeholder+.ui.placeholder+.ui.placeholder{animation-delay:.3s}.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder{animation-delay:.45s}.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder{animation-delay:.6s}.ui.placeholder,.ui.placeholder>:before,.ui.placeholder .image.header:after,.ui.placeholder .line,.ui.placeholder .line:after{background-color:#fff}.ui.placeholder .image:not(.header):not(.ui){height:100px}.ui.placeholder .square.image:not(.header){height:0px;overflow:hidden;padding-top:100%}.ui.placeholder .rectangular.image:not(.header){height:0px;overflow:hidden;padding-top:75%}.ui.placeholder .line{position:relative;height:.8571428571em}.ui.placeholder .line:before,.ui.placeholder .line:after{top:100%;position:absolute;content:"";background-color:inherit}.ui.placeholder .line:before{left:0px}.ui.placeholder .line:after{right:0px}.ui.placeholder .line{margin-bottom:.5em}.ui.placeholder .line:before,.ui.placeholder .line:after{height:.5em}.ui.placeholder .line:not(:first-child){margin-top:.5em}.ui.placeholder .header{position:relative;overflow:hidden}.ui.placeholder .line:nth-child(1):after{width:0%}.ui.placeholder .line:nth-child(2):after{width:50%}.ui.placeholder .line:nth-child(3):after{width:10%}.ui.placeholder .line:nth-child(4):after{width:35%}.ui.placeholder .line:nth-child(5):after{width:65%}.ui.placeholder .header .line{margin-bottom:.6428571429em}.ui.placeholder .header .line:before,.ui.placeholder .header .line:after{height:.6428571429em}.ui.placeholder .header .line:not(:first-child){margin-top:.6428571429em}.ui.placeholder .header .line:after{width:20%}.ui.placeholder .header .line:nth-child(2):after{width:60%}.ui.placeholder .image.header .line{margin-left:3em}.ui.placeholder .image.header .line:before{width:.7142857143rem}.ui.placeholder .image.header:after{display:block;height:.8571428571em;content:"";margin-left:3em}.ui.placeholder .image .line:first-child,.ui.placeholder .paragraph .line:first-child,.ui.placeholder .header .line:first-child{height:.01px}.ui.placeholder .image:not(:first-child):before,.ui.placeholder .paragraph:not(:first-child):before,.ui.placeholder .header:not(:first-child):before{height:1.4285714286em;content:"";display:block}.ui.inverted.placeholder{background-image:linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.08) 30%)}.ui.inverted.placeholder,.ui.inverted.placeholder>:before,.ui.inverted.placeholder .image.header:after,.ui.inverted.placeholder .line,.ui.inverted.placeholder .line:after{background-color:#1b1c1d}.ui.placeholder .full.line.line.line:after{width:0%}.ui.placeholder .very.long.line.line.line:after{width:10%}.ui.placeholder .long.line.line.line:after{width:35%}.ui.placeholder .medium.line.line.line:after{width:50%}.ui.placeholder .short.line.line.line:after{width:65%}.ui.placeholder .very.short.line.line.line:after{width:80%}.ui.fluid.placeholder{max-width:none}/*! + * # Semantic UI - Popup + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.popup{display:none;position:absolute;top:0px;right:0px;min-width:min-content;z-index:1900;border:1px solid #d4d4d5;line-height:1.4285em;max-width:250px;background:#fff;padding:.833em 1em;font-weight:normal;font-style:normal;color:#2a2a2a;border-radius:.2857142857rem;box-shadow:0px 2px 4px 0px rgba(34,36,38,.12),0px 2px 10px 0px rgba(34,36,38,.15)}.ui.popup>.header{padding:0em;font-family:var(--wp--preset--font-family--sans-serif);font-size:1.1428571429em;line-height:1.2;font-weight:bold}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:"";width:.7142857143em;height:.7142857143em;background:#fff;transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0px 0px #bababc}[data-tooltip]{position:relative}[data-tooltip]:before{pointer-events:none;position:absolute;content:"";font-size:1rem;width:.7142857143em;height:.7142857143em;background:#fff;transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0px 0px #bababc}[data-tooltip]:after{pointer-events:none;content:attr(data-tooltip);position:absolute;text-transform:none;text-align:left;white-space:nowrap;font-size:1rem;border:1px solid #d4d4d5;line-height:1.4285em;max-width:none;background:#fff;padding:.833em 1em;font-weight:normal;font-style:normal;color:#2a2a2a;border-radius:.2857142857rem;box-shadow:0px 2px 4px 0px rgba(34,36,38,.12),0px 2px 10px 0px rgba(34,36,38,.15);z-index:1}[data-tooltip]:not([data-position]):before{top:auto;right:auto;bottom:100%;left:50%;background:#fff;margin-left:-.0714285714rem;margin-bottom:.1428571429rem}[data-tooltip]:not([data-position]):after{left:50%;transform:translateX(-50%);bottom:100%;margin-bottom:.5em}[data-tooltip]:before,[data-tooltip]:after{pointer-events:none;visibility:hidden}[data-tooltip]:before{opacity:0;transform:rotate(45deg) scale(0) !important;transform-origin:center top;transition:all .1s ease}[data-tooltip]:after{opacity:1;transform-origin:center bottom;transition:all .1s ease}[data-tooltip]:hover:before,[data-tooltip]:hover:after{visibility:visible;pointer-events:auto}[data-tooltip]:hover:before{transform:rotate(45deg) scale(1) !important;opacity:1}[data-tooltip]:after,[data-tooltip][data-position="top center"]:after,[data-tooltip][data-position="bottom center"]:after{transform:translateX(-50%) scale(0) !important}[data-tooltip]:hover:after,[data-tooltip][data-position="bottom center"]:hover:after{transform:translateX(-50%) scale(1) !important}[data-tooltip][data-position="left center"]:after,[data-tooltip][data-position="right center"]:after{transform:translateY(-50%) scale(0) !important}[data-tooltip][data-position="left center"]:hover:after,[data-tooltip][data-position="right center"]:hover:after{transform:translateY(-50%) scale(1) !important}[data-tooltip][data-position="top left"]:after,[data-tooltip][data-position="top right"]:after,[data-tooltip][data-position="bottom left"]:after,[data-tooltip][data-position="bottom right"]:after{transform:scale(0) !important}[data-tooltip][data-position="top left"]:hover:after,[data-tooltip][data-position="top right"]:hover:after,[data-tooltip][data-position="bottom left"]:hover:after,[data-tooltip][data-position="bottom right"]:hover:after{transform:scale(1) !important}[data-tooltip][data-inverted]:before{box-shadow:none !important}[data-tooltip][data-inverted]:before{background:#1b1c1d}[data-tooltip][data-inverted]:after{background:#1b1c1d;color:#fff;border:none;box-shadow:none}[data-tooltip][data-inverted]:after .header{background-color:none;color:#fff}[data-position="top center"][data-tooltip]:after{top:auto;right:auto;left:50%;bottom:100%;transform:translateX(-50%);margin-bottom:.5em}[data-position="top center"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:50%;background:#fff;margin-left:-.0714285714rem;margin-bottom:.1428571429rem}[data-position="top left"][data-tooltip]:after{top:auto;right:auto;left:0;bottom:100%;margin-bottom:.5em}[data-position="top left"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:1em;margin-left:-.0714285714rem;margin-bottom:.1428571429rem}[data-position="top right"][data-tooltip]:after{top:auto;left:auto;right:0;bottom:100%;margin-bottom:.5em}[data-position="top right"][data-tooltip]:before{top:auto;left:auto;bottom:100%;right:1em;margin-left:-.0714285714rem;margin-bottom:.1428571429rem}[data-position="bottom center"][data-tooltip]:after{bottom:auto;right:auto;left:50%;top:100%;transform:translateX(-50%);margin-top:.5em}[data-position="bottom center"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:50%;margin-left:-.0714285714rem;margin-top:.1428571429rem}[data-position="bottom left"][data-tooltip]:after{left:0;top:100%;margin-top:.5em}[data-position="bottom left"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:1em;margin-left:-.0714285714rem;margin-top:.1428571429rem}[data-position="bottom right"][data-tooltip]:after{right:0;top:100%;margin-top:.5em}[data-position="bottom right"][data-tooltip]:before{bottom:auto;left:auto;top:100%;right:1em;margin-left:-.1428571429rem;margin-top:.0714285714rem}[data-position="left center"][data-tooltip]:after{right:100%;top:50%;margin-right:.5em;transform:translateY(-50%)}[data-position="left center"][data-tooltip]:before{right:100%;top:50%;margin-top:-.1428571429rem;margin-right:-.0714285714rem}[data-position="right center"][data-tooltip]:after{left:100%;top:50%;margin-left:.5em;transform:translateY(-50%)}[data-position="right center"][data-tooltip]:before{left:100%;top:50%;margin-top:-.0714285714rem;margin-left:.1428571429rem}[data-position~=bottom][data-tooltip]:before{background:#fff;box-shadow:-2px 0px 0px #bababc}[data-position="left center"][data-tooltip]:before{background:#fff;box-shadow:0px 0px 0px #bababc}[data-position="right center"][data-tooltip]:before{background:#fff;box-shadow:-1px 1px 0px 0px #bababc}[data-position~=top][data-tooltip]:before{background:#fff}[data-inverted][data-position~=bottom][data-tooltip]:before{background:#1b1c1d;box-shadow:-2px 0px 0px #bababc}[data-inverted][data-position="left center"][data-tooltip]:before{background:#1b1c1d;box-shadow:0px 0px 0px #bababc}[data-inverted][data-position="right center"][data-tooltip]:before{background:#1b1c1d;box-shadow:-1px 1px 0px 0px #bababc}[data-inverted][data-position~=top][data-tooltip]:before{background:#1b1c1d}[data-position~=bottom][data-tooltip]:before{transform-origin:center bottom}[data-position~=bottom][data-tooltip]:after{transform-origin:center top}[data-position="left center"][data-tooltip]:before{transform-origin:top center}[data-position="left center"][data-tooltip]:after{transform-origin:right center}[data-position="right center"][data-tooltip]:before{transform-origin:right center}[data-position="right center"][data-tooltip]:after{transform-origin:left center}.ui.popup{margin:0em}.ui.top.popup{margin:0em 0em .7142857143em}.ui.top.left.popup{transform-origin:left bottom}.ui.top.center.popup{transform-origin:center bottom}.ui.top.right.popup{transform-origin:right bottom}.ui.left.center.popup{margin:0em .7142857143em 0em 0em;transform-origin:right 50%}.ui.right.center.popup{margin:0em 0em 0em .7142857143em;transform-origin:left 50%}.ui.bottom.popup{margin:.7142857143em 0em 0em}.ui.bottom.left.popup{transform-origin:left top}.ui.bottom.center.popup{transform-origin:center top}.ui.bottom.right.popup{transform-origin:right top}.ui.bottom.center.popup:before{margin-left:-.3071428571em;top:-.3071428571em;left:50%;right:auto;bottom:auto;box-shadow:-2px 0px 0px #bababc}.ui.bottom.left.popup{margin-left:0em}.ui.bottom.left.popup:before{top:-.3071428571em;left:1em;right:auto;bottom:auto;margin-left:0em;box-shadow:-2px 0px 0px #bababc}.ui.bottom.right.popup{margin-right:0em}.ui.bottom.right.popup:before{top:-.3071428571em;right:1em;bottom:auto;left:auto;margin-left:0em;box-shadow:-2px 0px 0px #bababc}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.3071428571em;left:50%;margin-left:-.3071428571em}.ui.top.left.popup{margin-left:0em}.ui.top.left.popup:before{bottom:-.3071428571em;left:1em;top:auto;right:auto;margin-left:0em}.ui.top.right.popup{margin-right:0em}.ui.top.right.popup:before{bottom:-.3071428571em;right:1em;top:auto;left:auto;margin-left:0em}.ui.left.center.popup:before{top:50%;right:-.3071428571em;bottom:auto;left:auto;margin-top:-.3071428571em;box-shadow:0px 0px 0px #bababc}.ui.right.center.popup:before{top:50%;left:-.3071428571em;bottom:auto;right:auto;margin-top:-.3071428571em;box-shadow:-1px 1px 0px 0px #bababc}.ui.bottom.popup:before{background:#fff}.ui.right.center.popup:before,.ui.left.center.popup:before{background:#fff}.ui.top.popup:before{background:#fff}.ui.inverted.bottom.popup:before{background:#1b1c1d}.ui.inverted.right.center.popup:before,.ui.inverted.left.center.popup:before{background:#1b1c1d}.ui.inverted.top.popup:before{background:#1b1c1d}.ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-0.7rem -0.875rem}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.visible.popup{transform:translateZ(0px);backface-visibility:hidden}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width: 767px){.ui.wide.popup,.ui[class*="very wide"].popup{max-width:250px}}.ui.fluid.popup{width:100%;max-width:none}.ui.inverted.popup{background:#1b1c1d;color:#fff;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#fff}.ui.inverted.popup:before{background-color:#1b1c1d;box-shadow:none !important}.ui.flowing.popup{max-width:none}.ui.mini.popup{font-size:.7857142857rem}.ui.tiny.popup{font-size:.8571428571rem}.ui.small.popup{font-size:.9285714286rem}.ui.popup{font-size:1rem}.ui.large.popup{font-size:1.1428571429rem}.ui.huge.popup{font-size:1.4285714286rem}/*! + * # Semantic UI - Progress Bar + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em 0em 2.5em;box-shadow:none;background:#f0f0e7;padding:0em;border-radius:0}.ui.progress:first-child{margin:0em 0em 2.5em}.ui.progress:last-child{margin:0em 0em 1.5em}.ui.progress .bar{display:block;line-height:1;position:relative;width:0%;min-width:2em;background:#888;border-radius:0;transition:width .1s ease,background-color .1s ease}.ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:.9285714286em;top:50%;right:.5em;left:auto;bottom:auto;color:rgba(255,255,255,.7);text-shadow:none;margin-top:-0.5em;font-weight:normal;text-align:left}.ui.progress>.percentage{float:right;font-size:.8rem;margin-top:-3.5px;margin-right:5px}.ui.progress>.label{position:absolute;width:100%;font-size:1em;top:100%;right:auto;left:0%;bottom:auto;color:#2a2a2a;font-weight:bold;text-shadow:none;margin-top:.2em;text-align:center;transition:color .4s ease}.ui.indicating.progress[data-percent^="1"] .bar,.ui.indicating.progress[data-percent^="2"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent^="3"] .bar{background-color:#efbc72}.ui.indicating.progress[data-percent^="4"] .bar,.ui.indicating.progress[data-percent^="5"] .bar{background-color:#e6bb48}.ui.indicating.progress[data-percent^="6"] .bar{background-color:#ddc928}.ui.indicating.progress[data-percent^="7"] .bar,.ui.indicating.progress[data-percent^="8"] .bar{background-color:#b4d95c}.ui.indicating.progress[data-percent^="9"] .bar,.ui.indicating.progress[data-percent^="100"] .bar{background-color:#66da81}.ui.indicating.progress[data-percent^="1"] .label,.ui.indicating.progress[data-percent^="2"] .label{color:#2a2a2a}.ui.indicating.progress[data-percent^="3"] .label{color:#2a2a2a}.ui.indicating.progress[data-percent^="4"] .label,.ui.indicating.progress[data-percent^="5"] .label{color:#2a2a2a}.ui.indicating.progress[data-percent^="6"] .label{color:#2a2a2a}.ui.indicating.progress[data-percent^="7"] .label,.ui.indicating.progress[data-percent^="8"] .label{color:#2a2a2a}.ui.indicating.progress[data-percent^="9"] .label,.ui.indicating.progress[data-percent^="100"] .label{color:#2a2a2a}.ui.indicating.progress[data-percent="1"] .bar,.ui.indicating.progress[data-percent="2"] .bar,.ui.indicating.progress[data-percent="3"] .bar,.ui.indicating.progress[data-percent="4"] .bar,.ui.indicating.progress[data-percent="5"] .bar,.ui.indicating.progress[data-percent="6"] .bar,.ui.indicating.progress[data-percent="7"] .bar,.ui.indicating.progress[data-percent="8"] .bar,.ui.indicating.progress[data-percent="9"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent="1"] .label,.ui.indicating.progress[data-percent="2"] .label,.ui.indicating.progress[data-percent="3"] .label,.ui.indicating.progress[data-percent="4"] .label,.ui.indicating.progress[data-percent="5"] .label,.ui.indicating.progress[data-percent="6"] .label,.ui.indicating.progress[data-percent="7"] .label,.ui.indicating.progress[data-percent="8"] .label,.ui.indicating.progress[data-percent="9"] .label{color:#2a2a2a}.ui.indicating.progress.success .label{color:#1a531b}.ui.progress.success .bar{background-color:#21ba45 !important}.ui.progress.success .bar,.ui.progress.success .bar::after{animation:none !important}.ui.progress.success>.label{color:#1a531b}.ui.progress.warning .bar{background-color:#f2c037 !important}.ui.progress.warning .bar,.ui.progress.warning .bar::after{animation:none !important}.ui.progress.warning>.label{color:#794b02}.ui.progress.error .bar{background-color:#db2828 !important}.ui.progress.error .bar,.ui.progress.error .bar::after{animation:none !important}.ui.progress.error>.label{color:#912d2b}.ui.active.progress .bar{position:relative;min-width:2em}.ui.active.progress .bar::after{content:"";opacity:0;position:absolute;top:0px;left:0px;right:0px;bottom:0px;background:#fff;border-radius:0;animation:progress-active 2s ease infinite}@keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{animation:none !important}.ui.inverted.progress{background:rgba(255,255,255,.08);border:none}.ui.inverted.progress .bar{background:#888}.ui.inverted.progress .bar>.progress{color:#f9fafb}.ui.inverted.progress>.label{color:#fff}.ui.inverted.progress.success>.label{color:#21ba45}.ui.inverted.progress.warning>.label{color:#f2c037}.ui.inverted.progress.error>.label{color:#db2828}.ui.progress.attached{background:rgba(0,0,0,0);position:relative;border:none;margin:0em}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:.2rem;padding:0px;overflow:hidden;border-radius:0em 0em 0 0}.ui.progress.attached .bar{border-radius:0em}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0px;border-radius:0 0 0em 0em}.ui.progress.top.attached .bar{border-radius:0em}.ui.segment>.ui.attached.progress,.ui.card>.ui.attached.progress{position:absolute;top:auto;left:0;bottom:100%;width:100%}.ui.segment>.ui.bottom.attached.progress,.ui.card>.ui.bottom.attached.progress{top:100%;bottom:auto}.ui.red.progress .bar{background-color:#db2828}.ui.red.inverted.progress .bar{background-color:#ff695e}.ui.orange.progress .bar{background-color:#f2711c}.ui.orange.inverted.progress .bar{background-color:#ff851b}.ui.yellow.progress .bar{background-color:#fbbd08}.ui.yellow.inverted.progress .bar{background-color:#ffe21f}.ui.olive.progress .bar{background-color:#b5cc18}.ui.olive.inverted.progress .bar{background-color:#d9e778}.ui.green.progress .bar{background-color:#21ba45}.ui.green.inverted.progress .bar{background-color:#2ecc40}.ui.teal.progress .bar{background-color:#00b5ad}.ui.teal.inverted.progress .bar{background-color:#6dffff}.ui.blue.progress .bar{background-color:#2185d0}.ui.blue.inverted.progress .bar{background-color:#54c8ff}.ui.violet.progress .bar{background-color:#6435c9}.ui.violet.inverted.progress .bar{background-color:#a291fb}.ui.purple.progress .bar{background-color:#a333c8}.ui.purple.inverted.progress .bar{background-color:#dc73ff}.ui.pink.progress .bar{background-color:#e03997}.ui.pink.inverted.progress .bar{background-color:#ff8edf}.ui.brown.progress .bar{background-color:#a5673f}.ui.brown.inverted.progress .bar{background-color:#d67c1c}.ui.grey.progress .bar{background-color:#767676}.ui.grey.inverted.progress .bar{background-color:#dcddde}.ui.black.progress .bar{background-color:#1b1c1d}.ui.black.inverted.progress .bar{background-color:#545454}.ui.tiny.progress{font-size:.8571428571rem}.ui.tiny.progress .bar{height:.5em}.ui.small.progress{font-size:.9285714286rem}.ui.small.progress .bar{height:1em}.ui.progress{font-size:1rem}.ui.progress .bar{height:1.75em}.ui.large.progress{font-size:1.1428571429rem}.ui.large.progress .bar{height:2.5em}.ui.big.progress{font-size:1.2857142857rem}.ui.big.progress .bar{height:3.5em}/*! + * # Semantic UI - Reveal + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.reveal{display:inherit;position:relative !important;font-size:0em !important}.ui.reveal>.visible.content{position:absolute !important;top:0em !important;left:0em !important;z-index:3 !important;transition:all .5s ease .1s}.ui.reveal>.hidden.content{position:relative !important;z-index:2 !important}.ui.active.reveal .visible.content,.ui.reveal:hover .visible.content{z-index:4 !important}.ui.slide.reveal{position:relative !important;overflow:hidden !important;white-space:nowrap}.ui.slide.reveal>.content{display:block;width:100%;white-space:normal;float:left;margin:0em;transition:transform .5s ease .1s}.ui.slide.reveal>.visible.content{position:relative !important}.ui.slide.reveal>.hidden.content{position:absolute !important;left:0% !important;width:100% !important;transform:translateX(100%) !important}.ui.slide.active.reveal>.visible.content,.ui.slide.reveal:hover>.visible.content{transform:translateX(-100%) !important}.ui.slide.active.reveal>.hidden.content,.ui.slide.reveal:hover>.hidden.content{transform:translateX(0%) !important}.ui.slide.right.reveal>.visible.content{transform:translateX(0%) !important}.ui.slide.right.reveal>.hidden.content{transform:translateX(-100%) !important}.ui.slide.right.active.reveal>.visible.content,.ui.slide.right.reveal:hover>.visible.content{transform:translateX(100%) !important}.ui.slide.right.active.reveal>.hidden.content,.ui.slide.right.reveal:hover>.hidden.content{transform:translateX(0%) !important}.ui.slide.up.reveal>.hidden.content{transform:translateY(100%) !important}.ui.slide.up.active.reveal>.visible.content,.ui.slide.up.reveal:hover>.visible.content{transform:translateY(-100%) !important}.ui.slide.up.active.reveal>.hidden.content,.ui.slide.up.reveal:hover>.hidden.content{transform:translateY(0%) !important}.ui.slide.down.reveal>.hidden.content{transform:translateY(-100%) !important}.ui.slide.down.active.reveal>.visible.content,.ui.slide.down.reveal:hover>.visible.content{transform:translateY(100%) !important}.ui.slide.down.active.reveal>.hidden.content,.ui.slide.down.reveal:hover>.hidden.content{transform:translateY(0%) !important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.active.reveal>.visible.content,.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.reveal{position:relative !important;overflow:hidden !important;white-space:nowrap}.ui.move.reveal>.content{display:block;float:left;white-space:normal;margin:0em;transition:transform .5s cubic-bezier(0.175, 0.885, 0.32, 1) .1s}.ui.move.reveal>.visible.content{position:relative !important}.ui.move.reveal>.hidden.content{position:absolute !important;left:0% !important;width:100% !important}.ui.move.active.reveal>.visible.content,.ui.move.reveal:hover>.visible.content{transform:translateX(-100%) !important}.ui.move.right.active.reveal>.visible.content,.ui.move.right.reveal:hover>.visible.content{transform:translateX(100%) !important}.ui.move.up.active.reveal>.visible.content,.ui.move.up.reveal:hover>.visible.content{transform:translateY(-100%) !important}.ui.move.down.active.reveal>.visible.content,.ui.move.down.reveal:hover>.visible.content{transform:translateY(100%) !important}.ui.rotate.reveal>.visible.content{transition-duration:.5s;transform:rotate(0deg)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{transform-origin:bottom right}.ui.rotate.active.reveal>.visible.content,.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.active.reveal>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{transform-origin:bottom left}.ui.rotate.left.active.reveal>.visible.content,.ui.rotate.left.reveal:hover>.visible.content{transform:rotate(-110deg)}.ui.disabled.reveal:hover>.visible.visible.content{position:static !important;display:block !important;opacity:1 !important;top:0 !important;left:0 !important;right:auto !important;bottom:auto !important;transform:none !important}.ui.disabled.reveal:hover>.hidden.hidden.content{display:none !important}.ui.reveal>.ui.ribbon.label{z-index:5}.ui.visible.reveal{overflow:visible}.ui.instant.reveal>.content{transition-delay:0s !important}.ui.reveal>.content{font-size:1rem !important}/*! + * # Semantic UI - Segment + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.segment{position:relative;background:#fff;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0em;padding:1em 1em;border-radius:0;border:1px solid rgba(34,36,38,.15);font-family:var(--wp--preset--font-family--sans-serif);min-width:250px}.ui.segment:first-child{margin-top:0em}.ui.segment:last-child{margin-bottom:0em}.ui.segment:not(.alignright),.ui.segment:not(.alignleft),.ui.segment:not(.aligncenter),.ui.segment:not(.alignwide){clear:both}.ui.segment .embedded_chart{border-top:0;border-bottom:0;margin-bottom:0;padding:0}.ui.vertical.segment{margin:0em;padding-left:0em;padding-right:0em;background:none rgba(0,0,0,0);border-radius:0px;box-shadow:none;border:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.segment:last-child{border-bottom:none}.ui.inverted.segment:not(.beige)>.ui.header{color:#fff}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0em;border-top-right-radius:0em}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0em;border-bottom-right-radius:0em}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0em;border-top-right-radius:0em}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0em;border-bottom-right-radius:0em}.ui.page.grid.segment,.ui.grid>.row>.ui.segment.column,.ui.grid>.ui.segment.column{padding-top:2em;padding-bottom:2em}.ui.grid.segment{margin:1rem 0em;border-radius:0}.ui.basic.table.segment{background:#fff;border:1px solid rgba(34,36,38,.15);box-shadow:0px 1px 2px 0 rgba(34,36,38,.15)}.ui[class*="very basic"].table.segment{padding:1em 1em}.ui.placeholder.segment{display:flex;flex-direction:column;justify-content:center;align-items:stretch;max-width:initial;animation:none;overflow:visible;padding:1em 1em;min-height:18rem;background:#f9fafb;border-color:rgba(34,36,38,.15);box-shadow:0px 2px 25px 0 rgba(34,36,38,.05) inset}.ui.placeholder.segment .button,.ui.placeholder.segment textarea{display:block}.ui.placeholder.segment .field,.ui.placeholder.segment textarea,.ui.placeholder.segment>.ui.input,.ui.placeholder.segment .button{max-width:15rem;margin-left:auto;margin-right:auto}.ui.placeholder.segment .column .button,.ui.placeholder.segment .column .field,.ui.placeholder.segment .column textarea,.ui.placeholder.segment .column>.ui.input{max-width:15rem;margin-left:auto;margin-right:auto}.ui.placeholder.segment>.inline{align-self:center}.ui.placeholder.segment>.inline>.button{display:inline-block;width:auto;margin:0px .3571428571rem 0px 0px}.ui.placeholder.segment>.inline>.button:last-child{margin-right:0px}.ui.piled.segments,.ui.piled.segment{margin:3em 0em;box-shadow:"";z-index:auto}.ui.piled.segment:first-child{margin-top:0em}.ui.piled.segment:last-child{margin-bottom:0em}.ui.piled.segments:after,.ui.piled.segments:before,.ui.piled.segment:after,.ui.piled.segment:before{background-color:#fff;visibility:visible;content:"";display:block;height:100%;left:0px;position:absolute;width:100%;border:1px solid rgba(34,36,38,.15);box-shadow:""}.ui.piled.segments:before,.ui.piled.segment:before{transform:rotate(-1.2deg);top:0;z-index:-2}.ui.piled.segments:after,.ui.piled.segment:after{transform:rotate(1.2deg);top:0;z-index:-1}.ui[class*="top attached"].piled.segment{margin-top:3em;margin-bottom:0em}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0em}.ui.piled.segment[class*="bottom attached"]{margin-top:0em;margin-bottom:3em}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0em}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segments:before,.ui.stacked.segments:after,.ui.stacked.segment:before,.ui.stacked.segment:after{content:"";position:absolute;bottom:-3px;left:0%;border-top:1px solid rgba(34,36,38,.15);background:rgba(0,0,0,.03);width:100%;height:6px;visibility:visible}.ui.stacked.segments:before,.ui.stacked.segment:before{display:none}.ui.tall.stacked.segments:before,.ui.tall.stacked.segment:before{display:block;bottom:0px}.ui.stacked.inverted.segments:before,.ui.stacked.inverted.segments:after,.ui.stacked.inverted.segment:before,.ui.stacked.inverted.segment:after{background-color:rgba(0,0,0,.03);border-top:1px solid rgba(34,36,38,.35)}.ui.padded.segment{padding:1.5em}.ui[class*="very padded"].segment{padding:3em}.ui.padded.segment.vertical.segment,.ui[class*="very padded"].vertical.segment{padding-left:0px;padding-right:0px}.ui.compact.segment{display:table}.ui.compact.segments{display:inline-flex}.ui.compact.segments .segment,.ui.segments .compact.segment{display:block;flex:0 1 auto}.ui.circular.segment{display:table-cell;padding:2em;text-align:center;vertical-align:middle;border-radius:500em}.ui.raised.segments,.ui.raised.segment{box-shadow:0px 2px 4px 0px rgba(34,36,38,.12),0px 2px 10px 0px rgba(34,36,38,.15)}.ui.inset-arrow.segment{background:#e7e8e9;box-shadow:0 6px 10px -8px inset;padding:2rem;text-align:center}.ui.inset-arrow.segment:before{display:block;content:"";width:26px;height:26px;background:#fff;position:absolute;left:50%;transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);margin-left:-13px;margin-top:-3rem;box-shadow:2px 2px 0px 0px #bbb}.ui.segments{flex-direction:column;position:relative;margin:1rem 0em;border:1px solid rgba(34,36,38,.15);box-shadow:0px 1px 2px 0 rgba(34,36,38,.15);border-radius:0}.ui.segments:first-child{margin-top:0em}.ui.segments:last-child{margin-bottom:0em}.ui.segments>.segment{top:0px;bottom:0px;border-radius:0px;margin:0em;width:auto;box-shadow:none;border:none;border-top:1px solid rgba(34,36,38,.15)}.ui.segments:not(.horizontal)>.segment:first-child{top:0px;bottom:0px;border-top:none;margin-top:0em;bottom:0px;margin-bottom:0em;top:0px;border-radius:0 0 0em 0em}.ui.segments:not(.horizontal)>.segment:last-child{top:0px;bottom:0px;margin-top:0em;margin-bottom:0em;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0em 0em 0 0}.ui.segments:not(.horizontal)>.segment:only-child{border-radius:0}.ui.segments>.ui.segments{border-top:1px solid rgba(34,36,38,.15);margin:1rem 1rem}.ui.segments>.segments:first-child{border-top:none}.ui.segments>.segment+.segments:not(.horizontal){margin-top:0em}.ui.horizontal.segments{display:flex;flex-direction:row;background-color:rgba(0,0,0,0);border-radius:0px;padding:0em;background-color:#fff;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0em;border-radius:0;border:1px solid rgba(34,36,38,.15)}.ui.segments>.horizontal.segments{margin:0em;background-color:rgba(0,0,0,0);border-radius:0px;border:none;box-shadow:none;border-top:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments>.segment{flex:1 1 auto;-ms-flex:1 1 0px;margin:0em;min-width:0px;background-color:rgba(0,0,0,0);border-radius:0px;border:none;box-shadow:none;border-left:1px solid rgba(34,36,38,.15)}.ui.segments>.horizontal.segments:first-child{border-top:none}.ui.horizontal.segments>.segment:first-child{border-left:none}.ui.disabled.segment{opacity:.45;color:rgba(0,0,0,.2)}.ui.loading.segment{position:relative;cursor:default;pointer-events:none;text-shadow:none !important;color:rgba(0,0,0,0) !important;transition:all 0s linear}.ui.loading.segment:before{position:absolute;content:"";top:0%;left:0%;background:rgba(255,255,255,.8);width:100%;height:100%;border-radius:0;z-index:100}.ui.loading.segment:after{position:absolute;content:"";top:50%;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:1.2857142857em;height:1.2857142857em;animation:segment-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0px 0px 0px 1px rgba(0,0,0,0);visibility:visible;z-index:101}@keyframes segment-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.ui.basic.segment{background:none rgba(0,0,0,0);box-shadow:none;border:none;border-radius:0px}.ui.very.basic.segment{padding:0}.ui.clearing.segment:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.red.segment:not(.inverted){border-top:2px solid #db2828 !important}.ui.inverted.red.segment{background-color:#db2828 !important;color:#fff !important}.ui.orange.segment:not(.inverted){border-top:2px solid #f2711c !important}.ui.inverted.orange.segment{background-color:#f2711c !important;color:#fff !important}.ui.yellow.segment:not(.inverted){border-top:2px solid #fbbd08 !important}.ui.inverted.yellow.segment{background-color:#fbbd08 !important;color:#fff !important}.ui.olive.segment:not(.inverted){border-top:2px solid #b5cc18 !important}.ui.inverted.olive.segment{background-color:#b5cc18 !important;color:#fff !important}.ui.green.segment:not(.inverted){border-top:2px solid #21ba45 !important}.ui.inverted.green.segment{background-color:#21ba45 !important;color:#fff !important}.ui.teal.segment:not(.inverted){border-top:2px solid #00b5ad !important}.ui.inverted.teal.segment{background-color:#00b5ad !important;color:#fff !important}.ui.blue.segment:not(.inverted){border-top:2px solid #2185d0 !important}.ui.inverted.blue.segment{background-color:#2185d0 !important;color:#fff !important}.ui.violet.segment:not(.inverted){border-top:2px solid #6435c9 !important}.ui.inverted.violet.segment{background-color:#6435c9 !important;color:#fff !important}.ui.purple.segment:not(.inverted){border-top:2px solid #a333c8 !important}.ui.inverted.purple.segment{background-color:#a333c8 !important;color:#fff !important}.ui.pink.segment:not(.inverted){border-top:2px solid #e03997 !important}.ui.inverted.pink.segment{background-color:#e03997 !important;color:#fff !important}.ui.brown.segment:not(.inverted){border-top:2px solid #a5673f !important}.ui.inverted.brown.segment{background-color:#a5673f !important;color:#fff !important}.ui.grey.segment:not(.inverted){border-top:2px solid #767676 !important}.ui.inverted.grey.segment{background-color:#efefef !important;border:1px solid #dadbdb;color:#1b1c1d !important}.ui.black.segment:not(.inverted){border-top:2px solid #1b1c1d !important}.ui.inverted.black.segment{background-color:#1b1c1d !important;color:#fff !important}.ui.oatmeal.segment:not(.inverted){border-top:2px solid #ecece3 !important}.ui.inverted.oatmeal.segment{color:#1b1c1d;background:#ecece3 !important;border:0px !important}.ui.beige.segment:not(.inverted){border-top:2px solid #b7b8af !important}.ui.inverted.beige.segment{color:#1b1c1d;background:#f7f7f1 !important;border-left:none !important;border-right:none !important;border-bottom:none !important}.ui.inverted.beige.segment .header{color:inherit !important}.ui.inverted.beige.segment .content{color:#6b6b6b}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1em}.ui[class*="right floated"].segment{float:right;margin-left:1em}div[data-align=left]>.ui.segment,div[data-align=right]>.ui.segment{max-width:270px}.ui.inverted.segment:not(.inverted.beige){border:none}.ui.inverted.segment{box-shadow:none}.ui.inverted.segment,.ui.primary.inverted.segment{background:#1b1c1d;color:rgba(255,255,255,.9)}.ui.inverted.segment .segment{color:#2a2a2a}.ui.inverted.segment .inverted.segment{color:rgba(255,255,255,.9)}.ui.inverted.attached.segment{border-color:#555}.ui.secondary.segment{background:#f3f4f5;color:rgba(0,0,0,.6)}.ui.secondary.inverted.segment{background:#4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);color:rgba(255,255,255,.8)}.ui.tertiary.segment{background:#dcddde;color:rgba(0,0,0,.6)}.ui.tertiary.inverted.segment{background:#717579 linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%);color:rgba(255,255,255,.8)}.ui.attached.segment{top:0px;bottom:0px;border-radius:0px;margin:0em -1px;width:calc(100% - -1px*2);max-width:calc(100% - -1px*2);box-shadow:none;border:1px solid #d4d4d5}.ui.attached:not(.message)+.ui.attached.segment:not(.top){border-top:none}.ui[class*="top attached"].segment{bottom:0px;margin-bottom:0em;top:0px;margin-top:1rem;border-radius:0 0 0em 0em}.ui.segment[class*="top attached"]:first-child{margin-top:0em}.ui.segment[class*="bottom attached"]{bottom:0px;margin-top:0em;top:0px;margin-bottom:1rem;box-shadow:0px 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0em 0em 0 0}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:0em}.ui.segment.size-200,.ui.segment.size-310,.ui.segment.size-420,.ui.segment.size-640{width:100%}.ui.segment.size-200{max-width:200px !important}.ui.segment.size-310{max-width:310px !important}.ui.segment.size-420{max-width:420px !important}.ui.segment.size-640{max-width:640px !important}.ui.mini.segments .segment,.ui.mini.segment{font-size:.7857142857rem}.ui.tiny.segments .segment,.ui.tiny.segment{font-size:.8571428571rem}.ui.small.segments .segment,.ui.small.segment{font-size:.9285714286rem}.ui.segments .segment,.ui.segment{font-size:1rem}.ui.large.segments .segment,.ui.large.segment{font-size:1.1428571429rem}.ui.big.segments .segment,.ui.big.segment{font-size:1.2857142857rem}.ui.huge.segments .segment,.ui.huge.segment{font-size:1.4285714286rem}.ui.massive.segments .segment,.ui.massive.segment{font-size:1.7142857143rem}/*! + * # Semantic UI - Shape + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.shape{position:relative;vertical-align:top;display:inline-block;perspective:2000px;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape .sides{transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0em !important;backface-visibility:hidden}.ui.shape .side{display:none}.ui.shape .side *{backface-visibility:visible !important}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:#2a2a2a;box-shadow:0px 0px 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0px;left:0px;display:block;z-index:100}.ui.shape .hidden.side{opacity:.6}.ui.shape.animating .sides{position:absolute}.ui.shape.animating .sides{transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape.animating .side{transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}.sides>.side>.ui.card{width:100%}/*! + * # Semantic UI - Sticky + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.sticky{position:static;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0px;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0px}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}/*! + * # Semantic UI - Tab + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative !important;left:-10000px !important}.ui.tab.loading:before,.ui.tab.loading.segment:before{position:absolute;content:"";top:100px;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid #767676}.ui.tab.loading:after,.ui.tab.loading.segment:after{position:absolute;content:"";top:100px;left:50%;margin:-.6428571429em 0em 0em -.6428571429em;width:2.5em;height:2.5em;animation:button-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:.2em;box-shadow:0px 0px 0px 1px rgba(0,0,0,0)}/*! + * # Semantic UI - Table + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.ui.table{width:100%;background:#fff;margin:1em 0em;border:1px solid rgba(34,36,38,.15);box-shadow:none;border-radius:0;text-align:left;color:#2a2a2a;border-collapse:separate;border-spacing:0px;font-family:var(--wp--preset--font-family--sans-serif)}.ui.table:first-child{margin-top:0em}.ui.table:last-child{margin-bottom:0em}.ui.table th,.ui.table td{transition:background .1s ease,color .1s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#f9fafb;text-align:inherit;color:#2a2a2a;padding:.9285714286em .7857142857em;vertical-align:bottom;font-style:none;font-weight:bold;text-transform:none;border-bottom:none;border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:0 0em 0em 0em}.ui.table thead tr:first-child>th:last-child{border-radius:0em 0 0em 0em}.ui.table thead tr:first-child>th:only-child{border-radius:0 0 0em 0em}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:#2a2a2a;padding:.7857142857em .7857142857em;vertical-align:middle;font-style:normal;font-weight:normal;text-transform:none}.ui.table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child{border-radius:0em 0em 0em 0}.ui.table tfoot tr:first-child>th:last-child{border-radius:0em 0em 0 0em}.ui.table tfoot tr:first-child>th:only-child{border-radius:0em 0em 0 0}.ui.table tr td{border-top:1px dotted #dadbdb}.ui.table tr:first-child td{border-top:none}.ui.table tbody+tbody tr:first-child td{border-top:1px dotted #dadbdb}.ui.table td{padding:.7857142857em .7857142857em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0em}.ui.table.segment{padding:0em}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width: 767px){.ui.table:not(.unstackable){width:100%}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>th,.ui.table:not(.unstackable) tr>td{display:block !important;width:auto !important;display:block !important}.ui.table:not(.unstackable){padding:0em}.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tfoot{display:block}.ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0px -1px 0px 0px rgba(0,0,0,.1) inset !important}.ui.table:not(.unstackable) tr>th,.ui.table:not(.unstackable) tr>td{background:none;border:none !important;padding:.25em .75em !important;box-shadow:none !important}.ui.table:not(.unstackable) th:first-child,.ui.table:not(.unstackable) td:first-child{font-weight:bold}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none !important}}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr th,.ui.structured.celled.table tr td{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:rgba(0,0,0,0);font-weight:normal;color:rgba(0,0,0,.4);box-shadow:-2px 0px 1px #fff}.ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:rgba(0,0,0,0);font-weight:rgba(0,0,0,.4);color:normal;box-shadow:1px 1px 0px 1px #fff}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:-1px 0px 1px #fff}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0px 1px 0px 1px #fff}.ui.definition.table tr td:first-child:not(.ignored),.ui.definition.table tr td.definition{background:rgba(0,0,0,.03);font-weight:bold;color:rgba(0,0,0,.95);text-transform:"";box-shadow:"";text-align:"";font-size:1em;padding-left:"";padding-right:""}.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table tfoot:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table td:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.table tr.positive,.ui.table td.positive{box-shadow:0px 0px 0px #a3c293 inset}.ui.table tr.positive,.ui.table td.positive{background:#fcfff5 !important;color:#2c662d !important}.ui.table tr.negative,.ui.table td.negative{box-shadow:0px 0px 0px #e0b4b4 inset}.ui.table tr.negative,.ui.table td.negative{background:#fff6f6 !important;color:#9f3a38 !important}.ui.table tr.error,.ui.table td.error{box-shadow:0px 0px 0px #e0b4b4 inset}.ui.table tr.error,.ui.table td.error{background:#fff6f6 !important;color:#9f3a38 !important}.ui.table tr.warning,.ui.table td.warning{box-shadow:0px 0px 0px #c9ba9b inset}.ui.table tr.warning,.ui.table td.warning{background:#fffaf3 !important;color:#573a08 !important}.ui.table tr.active,.ui.table td.active{box-shadow:0px 0px 0px #2a2a2a inset}.ui.table tr.active,.ui.table td.active{background:#e0e0e0 !important;color:#2a2a2a !important}.ui.table tr.disabled td,.ui.table tr td.disabled,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(0,0,0,.2)}@media only screen and (max-width: 991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>th,.ui[class*="tablet stackable"].table tr>td{display:block !important;width:100% !important;display:block !important}.ui[class*="tablet stackable"].table{padding:0em}.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tfoot{display:block}.ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0px -1px 0px 0px rgba(0,0,0,.1) inset !important}.ui[class*="tablet stackable"].table tr>th,.ui[class*="tablet stackable"].table tr>td{background:none;border:none !important;padding:.25em .75em;box-shadow:none !important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none !important}}.ui.table[class*="left aligned"],.ui.table [class*="left aligned"]{text-align:left}.ui.table[class*="center aligned"],.ui.table [class*="center aligned"]{text-align:center}.ui.table[class*="right aligned"],.ui.table [class*="right aligned"]{text-align:right}.ui.table[class*="top aligned"],.ui.table [class*="top aligned"]{vertical-align:top}.ui.table[class*="middle aligned"],.ui.table [class*="middle aligned"]{vertical-align:middle}.ui.table[class*="bottom aligned"],.ui.table [class*="bottom aligned"]{vertical-align:bottom}.ui.table th.collapsing,.ui.table td.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table th,.ui.fixed.table td{overflow:hidden;text-overflow:ellipsis}.ui.selectable.table tbody tr:hover,.ui.table tbody tr td.selectable:hover{background:#ecece3 !important;color:rgba(0,0,0,.95) !important}.ui.selectable.inverted.table tbody tr:hover,.ui.inverted.table tbody tr td.selectable:hover{background:rgba(255,255,255,.08) !important;color:#fff !important}.ui.table tbody tr td.selectable{padding:0em}.ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.7857142857em .7857142857em}.ui.selectable.table tr.error:hover,.ui.table tr td.selectable.error:hover,.ui.selectable.table tr:hover td.error{background:#ffe7e7 !important;color:#943634 !important}.ui.selectable.table tr.warning:hover,.ui.table tr td.selectable.warning:hover,.ui.selectable.table tr:hover td.warning{background:#fff4e4 !important;color:#493107 !important}.ui.selectable.table tr.active:hover,.ui.table tr td.selectable.active:hover,.ui.selectable.table tr:hover td.active{background:#e0e0e0 !important;color:#2a2a2a !important}.ui.selectable.table tr.positive:hover,.ui.table tr td.selectable.positive:hover,.ui.selectable.table tr:hover td.positive{background:#f7ffe6 !important;color:#275b28 !important}.ui.selectable.table tr.negative:hover,.ui.table tr td.selectable.negative:hover,.ui.selectable.table tr:hover td.negative{background:#ffe7e7 !important;color:#943634 !important}.ui.attached.table{top:0px;bottom:0px;border-radius:0px;margin:0em -1px;width:calc(100% - -1px*2);max-width:calc(100% - -1px*2);box-shadow:none;border:1px solid #d4d4d5}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0px;margin-bottom:0em;top:0px;margin-top:1em;border-radius:0 0 0em 0em}.ui.table[class*="top attached"]:first-child{margin-top:0em}.ui[class*="bottom attached"].table{bottom:0px;margin-top:0em;top:0px;margin-bottom:1em;box-shadow:none,none;border-radius:0em 0em 0 0}.ui[class*="bottom attached"].table:last-child{margin-bottom:0em}.ui.striped.table>tr:nth-child(2n),.ui.striped.table tbody tr:nth-child(2n){background-color:#f8f9f5}.ui.inverted.striped.table>tr:nth-child(2n),.ui.inverted.striped.table tbody tr:nth-child(2n){background-color:rgba(255,255,255,.05)}.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef !important;color:rgba(0,0,0,.95) !important}.ui.basic.striped.table tbody tr.negative:nth-child(2n){background-color:#fff6f6 !important}.ui.basic.striped.table tbody tr.positive:nth-child(2n){background-color:#fcfff5 !important}.ui.table[class*="single line"],.ui.table [class*="single line"]{white-space:nowrap}.ui.table[class*="single line"],.ui.table [class*="single line"]{white-space:nowrap}.ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:#2a2a2a}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{user-select:none}.ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:normal;text-decoration:inherit;content:"";height:1em;width:auto;opacity:.8;margin:0em 0em 0em .5em;font-family:"Icons"}.ui.sortable.table thead th.ascending:after{content:""}.ui.sortable.table thead th.descending:after{content:""}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(0,0,0,.2)}.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.sortable.table thead th.sorted{background:rgba(255,255,255,.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));color:#fff}.ui.inverted.sortable.table thead th:hover{background:rgba(255,255,255,.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));color:#fff}.ui.inverted.sortable.table thead th{border-left-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0)}.ui.inverted.table{background:#333;color:rgba(255,255,255,.9);border:none}.ui.inverted.table th{background-color:rgba(0,0,0,.15);border-color:rgba(255,255,255,.1) !important;color:rgba(255,255,255,.9) !important}.ui.inverted.table tr td{border-color:rgba(255,255,255,.1) !important}.ui.inverted.table tr.disabled td,.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(255,255,255,.2)}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.ui.inverted.definition.table tr td:first-child{background:rgba(255,255,255,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:rgba(0,0,0,0);border:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.table thead,.ui.basic.table tfoot{box-shadow:none}.ui.basic.table th{background:rgba(0,0,0,0);border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:rgba(0,0,0,0)}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:#f8f9f5 !important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) th,.ui[class*="very basic"].table:not(.sortable):not(.striped) td{padding:""}.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child{padding-left:0em}.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child{padding-right:0em}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0em}.ui.celled.table tr th,.ui.celled.table tr td{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table tr th:first-child,.ui.celled.table tr td:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table th,.ui.padded.table td{padding:1em 1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em 1.5em}.ui.compact.table th{padding-left:.7em;padding-right:.7em;padding-top:.5rem;padding-bottom:.5rem}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.8571428571rem}.ui.table{font-size:.9285714286rem}.ui.large.table{font-size:1rem}.ui.table.dataTable{width:100% !important}.ui.table.dataTable th.sorting,.ui.table.dataTable th.sorting_asc,.ui.table.dataTable th.sorting_desc{cursor:pointer}.ui.table.dataTable th:after{top:0px !important}.ui.table.dataTable thead.ui.sticky.fixed{background:#fff}.ui.table.dataTable thead th{line-height:1rem}table.dataTable.table{margin:0}table.dataTable.table thead th,table.dataTable.table thead td{position:relative}table.dataTable.table thead th.sorting:after,table.dataTable.table thead th.sorting_asc:after,table.dataTable.table thead th.sorting_desc:after,table.dataTable.table thead td.sorting:after,table.dataTable.table thead td.sorting_asc:after,table.dataTable.table thead td.sorting_desc:after{display:inline-block;margin-left:5px;float:right;font-family:Icons}table.dataTable.table thead th.sorting:after,table.dataTable.table thead td.sorting:after{content:"";color:#ddd;font-size:.8em}table.dataTable.table thead th.sorting_asc:after,table.dataTable.table thead td.sorting_asc:after{content:""}table.dataTable.table thead th.sorting_desc:after,table.dataTable.table thead td.sorting_desc:after{content:""}table.dataTable.table td,table.dataTable.table th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable.table td.dataTables_empty,table.dataTable.table th.dataTables_empty{text-align:center}table.dataTable.table.nowrap th,table.dataTable.table.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{vertical-align:middle;min-height:2.7142em}div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown{min-width:0}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em}div.dataTables_wrapper div.dataTables_info{padding-top:13px;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;text-align:center}div.dataTables_wrapper div.row.dt-table{padding:0}div.dataTables_wrapper div.dataTables_scrollHead table.dataTable{border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom:none}div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after,div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after,div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after{display:none}div.dataTables_wrapper div.dataTables_scrollBody table.dataTable{border-radius:0;border-top:none;border-bottom-width:0}div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer{border-bottom-width:1px}div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable{border-top-right-radius:0;border-top-left-radius:0;border-top:none}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty{cursor:default !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before{display:none !important}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child:before{top:9px;left:4px;height:14px;width:14px;margin-right:.5rem;display:inline;color:#000;border:none;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+"}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:"-"}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#21ba45}table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:"-"}table.dataTable>tbody>tr.child{padding:.5em 1em}table.dataTable>tbody>tr.child:hover{background:rgba(0,0,0,0) !important}table.dataTable>tbody>tr.child ul.dtr-details{display:block;list-style-type:none;width:100%;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{list-style:none;margin:0;margin-left:1.3rem;padding:.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:bold}div.dtr-modal{position:fixed;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;box-shadow:0 12px 30px rgba(0,0,0,.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,.6)}@media screen and (max-width: 767px){div.dtr-modal div.dtr-modal-display{width:95%}}div.dtr-bs-modal table.table tr:first-child td{border-top:none}#js-prc-table-dropdown{margin-bottom:1rem}#js-prc-table-dropdown>div:first-of-type{margin-right:1rem}#js-prc-table-dropdown>div{display:flex}#js-prc-table-dropdown>div>.ui.button{display:flex;align-items:center}/*! + * # Semantic UI - Transition + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */.transition{animation-iteration-count:1;animation-duration:300ms;animation-timing-function:ease;animation-fill-mode:both}.animating.transition{backface-visibility:hidden;visibility:visible !important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block !important;visibility:visible !important}.disabled.transition{animation-play-state:paused}.looping.transition{animation-iteration-count:infinite}.transition.browse{animation-duration:500ms}.transition.browse.in{animation-name:browseIn}.transition.browse.out,.transition.browse.left.out{animation-name:browseOutLeft}.transition.browse.right.out{animation-name:browseOutRight}@keyframes browseIn{0%{transform:scale(0.8) translateZ(0px);z-index:-1}10%{transform:scale(0.8) translateZ(0px);z-index:-1;opacity:.7}80%{transform:scale(1.05) translateZ(0px);opacity:1;z-index:999}100%{transform:scale(1) translateZ(0px);z-index:999}}@keyframes browseOutLeft{0%{z-index:999;transform:translateX(0%) rotateY(0deg) rotateX(0deg)}50%{z-index:-1;transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;transform:translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);opacity:0}}@keyframes browseOutRight{0%{z-index:999;transform:translateX(0%) rotateY(0deg) rotateX(0deg)}50%{z-index:1;transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;transform:translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);opacity:0}}.drop.transition{transform-origin:top center;animation-duration:400ms;animation-timing-function:cubic-bezier(0.34, 1.61, 0.7, 1)}.drop.transition.in{animation-name:dropIn}.drop.transition.out{animation-name:dropOut}@keyframes dropIn{0%{opacity:0;transform:scale(0)}100%{opacity:1;transform:scale(1)}}@keyframes dropOut{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0)}}.transition.fade.in{animation-name:fadeIn}.transition[class*="fade up"].in{animation-name:fadeInUp}.transition[class*="fade down"].in{animation-name:fadeInDown}.transition[class*="fade left"].in{animation-name:fadeInLeft}.transition[class*="fade right"].in{animation-name:fadeInRight}.transition.fade.out{animation-name:fadeOut}.transition[class*="fade up"].out{animation-name:fadeOutUp}.transition[class*="fade down"].out{animation-name:fadeOutDown}.transition[class*="fade left"].out{animation-name:fadeOutLeft}.transition[class*="fade right"].out{animation-name:fadeOutRight}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(10%)}100%{opacity:1;transform:translateY(0%)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-10%)}100%{opacity:1;transform:translateY(0%)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(10%)}100%{opacity:1;transform:translateX(0%)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(-10%)}100%{opacity:1;transform:translateX(0%)}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOutUp{0%{opacity:1;transform:translateY(0%)}100%{opacity:0;transform:translateY(5%)}}@keyframes fadeOutDown{0%{opacity:1;transform:translateY(0%)}100%{opacity:0;transform:translateY(-5%)}}@keyframes fadeOutLeft{0%{opacity:1;transform:translateX(0%)}100%{opacity:0;transform:translateX(5%)}}@keyframes fadeOutRight{0%{opacity:1;transform:translateX(0%)}100%{opacity:0;transform:translateX(-5%)}}.flip.transition.in,.flip.transition.out{animation-duration:600ms}.horizontal.flip.transition.in{animation-name:horizontalFlipIn}.horizontal.flip.transition.out{animation-name:horizontalFlipOut}.vertical.flip.transition.in{animation-name:verticalFlipIn}.vertical.flip.transition.out{animation-name:verticalFlipOut}@keyframes horizontalFlipIn{0%{transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{transform:perspective(2000px) rotateY(0deg);opacity:1}}@keyframes verticalFlipIn{0%{transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{transform:perspective(2000px) rotateX(0deg);opacity:1}}@keyframes horizontalFlipOut{0%{transform:perspective(2000px) rotateY(0deg);opacity:1}100%{transform:perspective(2000px) rotateY(90deg);opacity:0}}@keyframes verticalFlipOut{0%{transform:perspective(2000px) rotateX(0deg);opacity:1}100%{transform:perspective(2000px) rotateX(-90deg);opacity:0}}.scale.transition.in{animation-name:scaleIn}.scale.transition.out{animation-name:scaleOut}@keyframes scaleIn{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes scaleOut{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.9)}}.transition.fly{animation-duration:.6s;transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.transition.fly.in{animation-name:flyIn}.transition[class*="fly up"].in{animation-name:flyInUp}.transition[class*="fly down"].in{animation-name:flyInDown}.transition[class*="fly left"].in{animation-name:flyInLeft}.transition[class*="fly right"].in{animation-name:flyInRight}.transition.fly.out{animation-name:flyOut}.transition[class*="fly up"].out{animation-name:flyOutUp}.transition[class*="fly down"].out{animation-name:flyOutDown}.transition[class*="fly left"].out{animation-name:flyOutLeft}.transition[class*="fly right"].out{animation-name:flyOutRight}@keyframes flyIn{0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}20%{transform:scale3d(1.1, 1.1, 1.1)}40%{transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;transform:scale3d(1.03, 1.03, 1.03)}80%{transform:scale3d(0.97, 0.97, 0.97)}100%{opacity:1;transform:scale3d(1, 1, 1)}}@keyframes flyInUp{0%{opacity:0;transform:translate3d(0, 1500px, 0)}60%{opacity:1;transform:translate3d(0, -20px, 0)}75%{transform:translate3d(0, 10px, 0)}90%{transform:translate3d(0, -5px, 0)}100%{transform:translate3d(0, 0, 0)}}@keyframes flyInDown{0%{opacity:0;transform:translate3d(0, -1500px, 0)}60%{opacity:1;transform:translate3d(0, 25px, 0)}75%{transform:translate3d(0, -10px, 0)}90%{transform:translate3d(0, 5px, 0)}100%{transform:none}}@keyframes flyInLeft{0%{opacity:0;transform:translate3d(1500px, 0, 0)}60%{opacity:1;transform:translate3d(-25px, 0, 0)}75%{transform:translate3d(10px, 0, 0)}90%{transform:translate3d(-5px, 0, 0)}100%{transform:none}}@keyframes flyInRight{0%{opacity:0;transform:translate3d(-1500px, 0, 0)}60%{opacity:1;transform:translate3d(25px, 0, 0)}75%{transform:translate3d(-10px, 0, 0)}90%{transform:translate3d(5px, 0, 0)}100%{transform:none}}@keyframes flyOut{20%{transform:scale3d(0.9, 0.9, 0.9)}50%,55%{opacity:1;transform:scale3d(1.1, 1.1, 1.1)}100%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}}@keyframes flyOutUp{20%{transform:translate3d(0, 10px, 0)}40%,45%{opacity:1;transform:translate3d(0, -20px, 0)}100%{opacity:0;transform:translate3d(0, 2000px, 0)}}@keyframes flyOutDown{20%{transform:translate3d(0, -10px, 0)}40%,45%{opacity:1;transform:translate3d(0, 20px, 0)}100%{opacity:0;transform:translate3d(0, -2000px, 0)}}@keyframes flyOutRight{20%{opacity:1;transform:translate3d(20px, 0, 0)}100%{opacity:0;transform:translate3d(-2000px, 0, 0)}}@keyframes flyOutLeft{20%{opacity:1;transform:translate3d(-20px, 0, 0)}100%{opacity:0;transform:translate3d(2000px, 0, 0)}}.transition.slide.in,.transition[class*="slide down"].in{animation-name:slideInY;transform-origin:top center}.transition[class*="slide up"].in{animation-name:slideInY;transform-origin:bottom center}.transition[class*="slide left"].in{animation-name:slideInX;transform-origin:center right}.transition[class*="slide right"].in{animation-name:slideInX;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{animation-name:slideOutY;transform-origin:top center}.transition[class*="slide up"].out{animation-name:slideOutY;transform-origin:bottom center}.transition[class*="slide left"].out{animation-name:slideOutX;transform-origin:center right}.transition[class*="slide right"].out{animation-name:slideOutX;transform-origin:center left}@keyframes slideInY{0%{opacity:0;transform:scaleY(0)}100%{opacity:1;transform:scaleY(1)}}@keyframes slideInX{0%{opacity:0;transform:scaleX(0)}100%{opacity:1;transform:scaleX(1)}}@keyframes slideOutY{0%{opacity:1;transform:scaleY(1)}100%{opacity:0;transform:scaleY(0)}}@keyframes slideOutX{0%{opacity:1;transform:scaleX(1)}100%{opacity:0;transform:scaleX(0)}}.transition.swing{animation-duration:800ms}.transition[class*="swing down"].in{animation-name:swingInX;transform-origin:top center}.transition[class*="swing up"].in{animation-name:swingInX;transform-origin:bottom center}.transition[class*="swing left"].in{animation-name:swingInY;transform-origin:center right}.transition[class*="swing right"].in{animation-name:swingInY;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{animation-name:swingOutX;transform-origin:top center}.transition[class*="swing up"].out{animation-name:swingOutX;transform-origin:bottom center}.transition[class*="swing left"].out{animation-name:swingOutY;transform-origin:center right}.transition[class*="swing right"].out{animation-name:swingOutY;transform-origin:center left}@keyframes swingInX{0%{transform:perspective(1000px) rotateX(90deg);opacity:0}40%{transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{transform:perspective(1000px) rotateX(15deg)}80%{transform:perspective(1000px) rotateX(-7.5deg)}100%{transform:perspective(1000px) rotateX(0deg)}}@keyframes swingInY{0%{transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{transform:perspective(1000px) rotateY(30deg);opacity:1}60%{transform:perspective(1000px) rotateY(-17.5deg)}80%{transform:perspective(1000px) rotateY(7.5deg)}100%{transform:perspective(1000px) rotateY(0deg)}}@keyframes swingOutX{0%{transform:perspective(1000px) rotateX(0deg)}40%{transform:perspective(1000px) rotateX(-7.5deg)}60%{transform:perspective(1000px) rotateX(17.5deg)}80%{transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{transform:perspective(1000px) rotateX(90deg);opacity:0}}@keyframes swingOutY{0%{transform:perspective(1000px) rotateY(0deg)}40%{transform:perspective(1000px) rotateY(7.5deg)}60%{transform:perspective(1000px) rotateY(-10deg)}80%{transform:perspective(1000px) rotateY(30deg);opacity:1}100%{transform:perspective(1000px) rotateY(-90deg);opacity:0}}.transition.zoom.in{animation-name:zoomIn}.transition.zoom.out{animation-name:zoomOut}@keyframes zoomIn{0%{opacity:1;transform:scale(0)}100%{opacity:1;transform:scale(1)}}@keyframes zoomOut{0%{opacity:1;transform:scale(1)}100%{opacity:1;transform:scale(0)}}.flash.transition{animation-duration:750ms;animation-name:flash}.shake.transition{animation-duration:750ms;animation-name:shake}.bounce.transition{animation-duration:750ms;animation-name:bounce}.tada.transition{animation-duration:750ms;animation-name:tada}.pulse.transition{animation-duration:500ms;animation-name:pulse}.jiggle.transition{animation-duration:750ms;animation-name:jiggle}.transition.glow{animation-duration:2000ms;animation-timing-function:cubic-bezier(0.19, 1, 0.22, 1)}.transition.glow{animation-name:glow}@keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@keyframes shake{0%,100%{transform:translateX(0)}10%,30%,50%,70%,90%{transform:translateX(-10px)}20%,40%,60%,80%{transform:translateX(10px)}}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(0)}40%{transform:translateY(-30px)}60%{transform:translateY(-15px)}}@keyframes tada{0%{transform:scale(1)}10%,20%{transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale(1.1) rotate(3deg)}40%,60%,80%{transform:scale(1.1) rotate(-3deg)}100%{transform:scale(1) rotate(0)}}@keyframes pulse{0%{transform:scale(1);opacity:1}50%{transform:scale(0.9);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes jiggle{0%{transform:scale3d(1, 1, 1)}30%{transform:scale3d(1.25, 0.75, 1)}40%{transform:scale3d(0.75, 1.25, 1)}50%{transform:scale3d(1.15, 0.85, 1)}65%{transform:scale3d(0.95, 1.05, 1)}75%{transform:scale3d(1.05, 0.95, 1)}100%{transform:scale3d(1, 1, 1)}}@keyframes glow{0%{background-color:#fcfcfd}30%{background-color:#fff6cd}100%{background-color:#fcfcfd}}.show-on-mobile{display:none !important}@media only screen and (max-width: 767px){.show-on-mobile{display:inline-block !important}} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/main.js b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/dist/main.js new file mode 100644 index 00000000..e69de29b diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/package-lock.json b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/package-lock.json new file mode 100644 index 00000000..12a2de61 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/package-lock.json @@ -0,0 +1,18574 @@ +{ + "name": "@pewresearch/prc-platform-semantic-ui-css-shim", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@pewresearch/prc-platform-semantic-ui-css-shim", + "version": "0.0.1", + "devDependencies": { + "@wordpress/scripts": "^27.1.0", + "mini-css-extract-plugin": "^2.8.0", + "sass": "^1.70.0", + "sass-loader": "^14.1.0", + "style-loader": "^3.3.4", + "webpack": "^5.90.1" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", + "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.23.10", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.10.tgz", + "integrity": "sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw==", + "dev": true, + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.23.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz", + "integrity": "sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", + "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", + "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", + "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz", + "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz", + "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", + "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", + "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz", + "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", + "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", + "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", + "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", + "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz", + "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", + "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", + "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", + "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", + "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", + "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", + "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz", + "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", + "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.9.tgz", + "integrity": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", + "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz", + "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.9", + "@babel/plugin-transform-async-to-generator": "^7.23.3", + "@babel/plugin-transform-block-scoped-functions": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.4", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.4", + "@babel/plugin-transform-classes": "^7.23.8", + "@babel/plugin-transform-computed-properties": "^7.23.3", + "@babel/plugin-transform-destructuring": "^7.23.3", + "@babel/plugin-transform-dotall-regex": "^7.23.3", + "@babel/plugin-transform-duplicate-keys": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.4", + "@babel/plugin-transform-exponentiation-operator": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.4", + "@babel/plugin-transform-for-of": "^7.23.6", + "@babel/plugin-transform-function-name": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.4", + "@babel/plugin-transform-literals": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", + "@babel/plugin-transform-member-expression-literals": "^7.23.3", + "@babel/plugin-transform-modules-amd": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.9", + "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", + "@babel/plugin-transform-numeric-separator": "^7.23.4", + "@babel/plugin-transform-object-rest-spread": "^7.23.4", + "@babel/plugin-transform-object-super": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.4", + "@babel/plugin-transform-optional-chaining": "^7.23.4", + "@babel/plugin-transform-parameters": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.4", + "@babel/plugin-transform-property-literals": "^7.23.3", + "@babel/plugin-transform-regenerator": "^7.23.3", + "@babel/plugin-transform-reserved-words": "^7.23.3", + "@babel/plugin-transform-shorthand-properties": "^7.23.3", + "@babel/plugin-transform-spread": "^7.23.3", + "@babel/plugin-transform-sticky-regex": "^7.23.3", + "@babel/plugin-transform-template-literals": "^7.23.3", + "@babel/plugin-transform-typeof-symbol": "^7.23.3", + "@babel/plugin-transform-unicode-escapes": "^7.23.3", + "@babel/plugin-transform-unicode-property-regex": "^7.23.3", + "@babel/plugin-transform-unicode-regex": "^7.23.3", + "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", + "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-transform-react-display-name": "^7.23.3", + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", + "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@es-joy/jsdoccomment": { + "version": "0.41.0", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.41.0.tgz", + "integrity": "sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==", + "dev": true, + "dependencies": { + "comment-parser": "1.4.1", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@playwright/test": { + "version": "1.41.2", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.41.2.tgz", + "integrity": "sha512-qQB9h7KbibJzrDpkXkYvsmiDJK14FULCCZgEcoe2AvFAS64oCirWTwzTlAYEbKaRxWs5TFesE1Na6izMv3HfGg==", + "dev": true, + "peer": true, + "dependencies": { + "playwright": "1.41.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", + "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", + "dev": true, + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.24", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz", + "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==", + "dev": true + }, + "node_modules/@puppeteer/browsers": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.4.6.tgz", + "integrity": "sha512-x4BEjr2SjOPowNeiguzjozQbsc6h437ovD/wu+JpaenxVLm3jkgzHY2xOslMTp50HoTvQreMjiexiGQw1sqZlQ==", + "dev": true, + "dependencies": { + "debug": "4.3.4", + "extract-zip": "2.0.1", + "progress": "2.0.3", + "proxy-agent": "6.3.0", + "tar-fs": "3.0.4", + "unbzip2-stream": "1.4.3", + "yargs": "17.7.1" + }, + "bin": { + "browsers": "lib/cjs/main-cli.js" + }, + "engines": { + "node": ">=16.3.0" + }, + "peerDependencies": { + "typescript": ">= 4.7.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@puppeteer/browsers/node_modules/tar-fs": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", + "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", + "dev": true, + "dependencies": { + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + } + }, + "node_modules/@puppeteer/browsers/node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", + "dev": true, + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/@puppeteer/browsers/node_modules/yargs": { + "version": "17.7.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", + "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@sentry/core": { + "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-6.19.7.tgz", + "integrity": "sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==", + "dev": true, + "dependencies": { + "@sentry/hub": "6.19.7", + "@sentry/minimal": "6.19.7", + "@sentry/types": "6.19.7", + "@sentry/utils": "6.19.7", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/core/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/@sentry/hub": { + "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-6.19.7.tgz", + "integrity": "sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==", + "dev": true, + "dependencies": { + "@sentry/types": "6.19.7", + "@sentry/utils": "6.19.7", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/hub/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/@sentry/minimal": { + "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-6.19.7.tgz", + "integrity": "sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==", + "dev": true, + "dependencies": { + "@sentry/hub": "6.19.7", + "@sentry/types": "6.19.7", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/minimal/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/@sentry/node": { + "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/node/-/node-6.19.7.tgz", + "integrity": "sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==", + "dev": true, + "dependencies": { + "@sentry/core": "6.19.7", + "@sentry/hub": "6.19.7", + "@sentry/types": "6.19.7", + "@sentry/utils": "6.19.7", + "cookie": "^0.4.1", + "https-proxy-agent": "^5.0.0", + "lru_map": "^0.3.3", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/node/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/@sentry/types": { + "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/types/-/types-6.19.7.tgz", + "integrity": "sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/utils": { + "version": "6.19.7", + "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-6.19.7.tgz", + "integrity": "sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==", + "dev": true, + "dependencies": { + "@sentry/types": "6.19.7", + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sentry/utils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", + "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", + "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", + "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", + "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", + "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", + "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", + "dev": true, + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", + "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", + "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", + "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", + "@svgr/babel-plugin-transform-svg-component": "8.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/core": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", + "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^8.1.3", + "snake-case": "^3.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", + "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.21.3", + "entities": "^4.4.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", + "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "@svgr/hast-util-to-babel-ast": "8.0.0", + "svg-parser": "^2.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", + "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", + "dev": true, + "dependencies": { + "cosmiconfig": "^8.1.3", + "deepmerge": "^4.3.1", + "svgo": "^3.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, + "node_modules/@svgr/webpack": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", + "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.21.3", + "@babel/plugin-transform-react-constant-elements": "^7.21.3", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.21.0", + "@svgr/core": "8.1.0", + "@svgr/plugin-jsx": "8.1.0", + "@svgr/plugin-svgo": "8.1.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@tannin/compile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz", + "integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==", + "dev": true, + "dependencies": { + "@tannin/evaluate": "^1.2.0", + "@tannin/postfix": "^1.1.0" + } + }, + "node_modules/@tannin/evaluate": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz", + "integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg==", + "dev": true + }, + "node_modules/@tannin/plural-forms": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz", + "integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==", + "dev": true, + "dependencies": { + "@tannin/compile": "^1.1.0" + } + }, + "node_modules/@tannin/postfix": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz", + "integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw==", + "dev": true + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tootallnate/quickjs-emscripten": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "dev": true + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.56.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz", + "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.43", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz", + "integrity": "sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.11.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.16.tgz", + "integrity": "sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.11", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.11.tgz", + "integrity": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "node_modules/@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "dev": true + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dev": true, + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", + "dev": true, + "dependencies": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/source-list-map": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", + "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true + }, + "node_modules/@types/tapable": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", + "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==", + "dev": true + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true + }, + "node_modules/@types/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-Hm/T0kV3ywpJyMGNbsItdivRhYNCQQf1IIsYsXnoVPES4t+FMLyDe0/K+Ea7ahWtMtSNb22ZdY7MIyoD9rqARg==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/uglify-js/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/webpack": { + "version": "4.41.38", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.38.tgz", + "integrity": "sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/ws": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true + }, + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", + "dev": true, + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@wordpress/api-fetch": { + "version": "6.47.0", + "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.47.0.tgz", + "integrity": "sha512-NA/jWDXoVtJmiVBYhlxts2UrgKJpJM+zTGzLCfRQCZUzpJYm3LonB8x+uCQ78nEyxCY397Esod3jnbquYjOr0Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^4.50.0", + "@wordpress/url": "^3.51.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/babel-plugin-import-jsx-pragma": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-4.33.0.tgz", + "integrity": "sha512-CjzruFKWgzU/mO/nnQJ2l9UlzZQpqS60UC6l2vNdJ9oD2nKHR5Oou6kNic3QhWDVJrBf2JUiJJ0TC280bykXmA==", + "dev": true, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@babel/core": "^7.12.9" + } + }, + "node_modules/@wordpress/babel-preset-default": { + "version": "7.34.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-7.34.0.tgz", + "integrity": "sha512-yjFOllyTktFHtcIEgU3ghXBn8lItzr5mPLf0xdSpe0cHceFYL1hT1oprhgRL+olZweaO96Yfm0qUCCKQfJBWsA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-transform-react-jsx": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.0", + "@babel/preset-env": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.0", + "@wordpress/babel-plugin-import-jsx-pragma": "^4.33.0", + "@wordpress/browserslist-config": "^5.33.0", + "@wordpress/warning": "^2.50.0", + "browserslist": "^4.21.10", + "core-js": "^3.31.0", + "react": "^18.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@wordpress/base-styles": { + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-4.41.0.tgz", + "integrity": "sha512-MjPAZeAqvyskDXDp2wGZ0DjtYOQLOydI1WqVIZS4wnIdhsQWQD//VMeXgLrcmCzNyQg+iKTx3o+BzmXVTOD0+w==", + "dev": true + }, + "node_modules/@wordpress/browserslist-config": { + "version": "5.33.0", + "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.33.0.tgz", + "integrity": "sha512-dv1ZlpqGk8gaSBJPP/Z/1uOuxjtP0EBsHVKInLRu6FWLTJkK8rnCeC3xJT3/2TtJ0rasLC79RoytfhXTOODVwg==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@wordpress/dependency-extraction-webpack-plugin": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-5.1.0.tgz", + "integrity": "sha512-W2W+9JNAaGirAtGDSf83pjEKb63DLhgpJGgvMOpEPoRPtucgO6CCm3uMoNkJTpKoxJQ2tSZEymAhF/YdLm+ScQ==", + "dev": true, + "dependencies": { + "json2php": "^0.0.7" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/@wordpress/e2e-test-utils-playwright": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.18.0.tgz", + "integrity": "sha512-Z8uH1dUzy/STQjOU6eb9nquVK4RC1rUx0gXY/GN1IVNDJvGN/yJxT/gNKmfiL7KpmHvNp2Q5M4bnUT9uiNcM+Q==", + "dev": true, + "dependencies": { + "@wordpress/api-fetch": "^6.47.0", + "@wordpress/keycodes": "^3.50.0", + "@wordpress/url": "^3.51.0", + "change-case": "^4.1.2", + "form-data": "^4.0.0", + "get-port": "^5.1.1", + "lighthouse": "^10.4.0", + "mime": "^3.0.0", + "web-vitals": "^3.5.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "@playwright/test": ">=1" + } + }, + "node_modules/@wordpress/eslint-plugin": { + "version": "17.7.0", + "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-17.7.0.tgz", + "integrity": "sha512-JSFaCogE0WlZpl0SV4q8DK8G6jwDjEzXRzOsgesWilea4OuVp1KxCamkddTorRNM3QAbjrGuPJ4NYaGrNG9QsA==", + "dev": true, + "dependencies": { + "@babel/eslint-parser": "^7.16.0", + "@typescript-eslint/eslint-plugin": "^6.4.1", + "@typescript-eslint/parser": "^6.4.1", + "@wordpress/babel-preset-default": "^7.34.0", + "@wordpress/prettier-config": "^3.7.0", + "cosmiconfig": "^7.0.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-jest": "^27.2.3", + "eslint-plugin-jsdoc": "^46.4.6", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-playwright": "^0.15.3", + "eslint-plugin-prettier": "^5.0.0", + "eslint-plugin-react": "^7.27.0", + "eslint-plugin-react-hooks": "^4.3.0", + "globals": "^13.12.0", + "requireindex": "^1.2.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6.14.4" + }, + "peerDependencies": { + "@babel/core": ">=7", + "eslint": ">=8", + "prettier": ">=3", + "typescript": ">=4" + }, + "peerDependenciesMeta": { + "prettier": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/@wordpress/eslint-plugin/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@wordpress/eslint-plugin/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@wordpress/eslint-plugin/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@wordpress/hooks": { + "version": "3.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.50.0.tgz", + "integrity": "sha512-YIhwT1y0ss7Byfz46NBx08EUmXzWMu+g5DCY7FMuDNhwxSEoZMB8edKMiwNmFk4mFKBCnXM1d5FeONUPIUkJwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/i18n": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.50.0.tgz", + "integrity": "sha512-FkA2se6HMQm4eFC+/kTWvWQqs51VxpZuvY2MlWUp/L1r1d/dMBHXu049x86+/+6yk3ZNqiK5h6j6Z76dvPHZ4w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.50.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/jest-console": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.21.0.tgz", + "integrity": "sha512-o2vZRlwwJ6WoxRwnFFT5iZzfdc2d9MZvrtwB093RWPNcyK5qVtApji4VN/ieHijB4bjEHGalm0UKfKpt0EDlUQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "jest-matcher-utils": "^29.6.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "jest": ">=29" + } + }, + "node_modules/@wordpress/jest-preset-default": { + "version": "11.21.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-11.21.0.tgz", + "integrity": "sha512-XAztKOROu02iBsz+Qosv/RYuPWB1XwwlU+FiA5Y68tRztrqFy4b/il+DFg4Jue/zXF7UECWUvosd5ow/GmKa6Q==", + "dev": true, + "dependencies": { + "@wordpress/jest-console": "^7.21.0", + "babel-jest": "^29.6.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@babel/core": ">=7", + "jest": ">=29" + } + }, + "node_modules/@wordpress/keycodes": { + "version": "3.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-3.50.0.tgz", + "integrity": "sha512-ykWpyCbgwcaT8i5kSfotYtd2oOHyMDpWEYR73InYrzEhl7pnS3wD7hi/KfeKLvMfYhbysUXlCVr6q/oH+qK/DQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^4.50.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/npm-package-json-lint-config": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.35.0.tgz", + "integrity": "sha512-QmkhYM4/s+2r3RuolVRRmoUa5o3lFgcHA6I3A9akaSVGZr//4p2p+iXOGmNub9njgGlj7j8SAPN8GUsCO/VqZQ==", + "dev": true, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "npm-package-json-lint": ">=6.0.0" + } + }, + "node_modules/@wordpress/postcss-plugins-preset": { + "version": "4.34.0", + "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-4.34.0.tgz", + "integrity": "sha512-OLQBSLE2q11Ik+WdcO2QfGr/O4X/zJYOGXNsychx/EaMamLzJInFcRL6kGbPX41zPINhadq5x2vFIZI2EC+Uyg==", + "dev": true, + "dependencies": { + "@wordpress/base-styles": "^4.41.0", + "autoprefixer": "^10.2.5" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/@wordpress/prettier-config": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-3.7.0.tgz", + "integrity": "sha512-JRTc5p7UxtcPkqdSDXSFJoJnVuS510uiRVz8anXEl5nuOx5p+SJAzi9QPrxTgOE8bN3wRABH4eIhfOcta4CFdg==", + "dev": true, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "prettier": ">=3" + } + }, + "node_modules/@wordpress/scripts": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-27.1.0.tgz", + "integrity": "sha512-jewyOxqaNrsct5R1NXv2lT8CA70vzrvpdZHYERCcH9LzKuvrcc32Telm9Jqso6ay1ZgHeIbjHSCd2+r2sBG7hw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", + "@svgr/webpack": "^8.0.1", + "@wordpress/babel-preset-default": "^7.34.0", + "@wordpress/browserslist-config": "^5.33.0", + "@wordpress/dependency-extraction-webpack-plugin": "^5.1.0", + "@wordpress/e2e-test-utils-playwright": "^0.18.0", + "@wordpress/eslint-plugin": "^17.7.0", + "@wordpress/jest-preset-default": "^11.21.0", + "@wordpress/npm-package-json-lint-config": "^4.35.0", + "@wordpress/postcss-plugins-preset": "^4.34.0", + "@wordpress/prettier-config": "^3.7.0", + "@wordpress/stylelint-config": "^21.33.0", + "adm-zip": "^0.5.9", + "babel-jest": "^29.6.2", + "babel-loader": "^8.2.3", + "browserslist": "^4.21.10", + "chalk": "^4.0.0", + "check-node-version": "^4.1.0", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^10.2.0", + "cross-spawn": "^5.1.0", + "css-loader": "^6.2.0", + "cssnano": "^6.0.1", + "cwd": "^0.10.0", + "dir-glob": "^3.0.1", + "eslint": "^8.3.0", + "expect-puppeteer": "^4.4.0", + "fast-glob": "^3.2.7", + "filenamify": "^4.2.0", + "jest": "^29.6.2", + "jest-dev-server": "^9.0.1", + "jest-environment-jsdom": "^29.6.2", + "jest-environment-node": "^29.6.2", + "markdownlint-cli": "^0.31.1", + "merge-deep": "^3.0.3", + "mini-css-extract-plugin": "^2.5.1", + "minimist": "^1.2.0", + "npm-package-json-lint": "^6.4.0", + "npm-packlist": "^3.0.0", + "playwright-core": "1.39.0", + "postcss": "^8.4.5", + "postcss-loader": "^6.2.1", + "prettier": "npm:wp-prettier@3.0.3", + "puppeteer-core": "^13.2.0", + "react-refresh": "^0.14.0", + "read-pkg-up": "^7.0.1", + "resolve-bin": "^0.4.0", + "sass": "^1.35.2", + "sass-loader": "^12.1.0", + "source-map-loader": "^3.0.0", + "stylelint": "^14.2.0", + "terser-webpack-plugin": "^5.3.9", + "url-loader": "^4.1.1", + "webpack": "^5.88.2", + "webpack-bundle-analyzer": "^4.9.1", + "webpack-cli": "^5.1.4", + "webpack-dev-server": "^4.15.1" + }, + "bin": { + "wp-scripts": "bin/wp-scripts.js" + }, + "engines": { + "node": ">=18", + "npm": ">=6.14.4" + }, + "peerDependencies": { + "@playwright/test": "^1.39.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/scripts/node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dev": true, + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/@wordpress/stylelint-config": { + "version": "21.33.0", + "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.33.0.tgz", + "integrity": "sha512-DwjXrjRBva0tkYILvDV7rjl3VaKXxvchlxnFfFs6l2DWL/Qo31CJ+f2rVw4XSWuuWxY1EsyIn9tOBS9URloWTQ==", + "dev": true, + "dependencies": { + "stylelint-config-recommended": "^6.0.0", + "stylelint-config-recommended-scss": "^5.0.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "stylelint": "^14.2" + } + }, + "node_modules/@wordpress/url": { + "version": "3.51.0", + "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.51.0.tgz", + "integrity": "sha512-OjucjlP1763gfKbe8lv/k3RCisyX8AfNBrhASk7JqxAj6rFhb1ZZO7YmAgB2m+WoGB5v7fkOli0FZyDqISdYyg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "remove-accents": "^0.5.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/warning": { + "version": "2.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-2.50.0.tgz", + "integrity": "sha512-y7Zf48roDfiPgbRAWGXDwN3C8sfbEdneGq+HvXCW6rIeGYnDLdEkpX9i7RfultkFFPVeSP3FpMKVMkto2nbqzA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/adm-zip": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", + "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/argparse/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.filter": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", + "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", + "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.1.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz", + "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", + "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.15.4", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/b4a": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz", + "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.5.0", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz", + "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.5.0", + "core-js-compat": "^3.34.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", + "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/basic-ftp": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.4.tgz", + "integrity": "sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/bonjour-service": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", + "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz", + "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001580", + "electron-to-chromium": "^1.4.648", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dev": true, + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/builtins/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/builtins/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/builtins/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.6.tgz", + "integrity": "sha512-Mj50FLHtlsoVfRfnHaZvyrooHcrlceNZdL/QBvJJVd9Ta55qCQK0gs4ss2oZDeV9zFCs6ewzYgVE5yfVmfFpVg==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "set-function-length": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001585", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001585.tgz", + "integrity": "sha512-yr2BWR1yLXQ8fMpdS/4ZZXpseBgE7o4g41x3a6AJOqZuOi+iE/WdJYAuZ6Y95i4Ohd2Y+9MzIWRR+uGABH4s3Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/check-node-version": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/check-node-version/-/check-node-version-4.2.1.tgz", + "integrity": "sha512-YYmFYHV/X7kSJhuN/QYHUu998n/TRuDe8UenM3+m5NrkiH670lb9ILqHIvBencvJc4SDh+XcbXMR4b+TtubJiw==", + "dev": true, + "dependencies": { + "chalk": "^3.0.0", + "map-values": "^1.0.1", + "minimist": "^1.2.0", + "object-filter": "^1.0.2", + "run-parallel": "^1.1.4", + "semver": "^6.3.0" + }, + "bin": { + "check-node-version": "bin.js" + }, + "engines": { + "node": ">=8.3.0" + } + }, + "node_modules/check-node-version/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "dependencies": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + }, + "engines": { + "node": ">=8.9.0" + }, + "peerDependencies": { + "webpack": "*" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone-deep": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", + "integrity": "sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==", + "dev": true, + "dependencies": { + "for-own": "^0.1.3", + "is-plain-object": "^2.0.1", + "kind-of": "^3.0.2", + "lazy-cache": "^1.0.3", + "shallow-clone": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/comment-parser": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", + "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", + "dev": true, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/configstore/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-webpack-plugin": { + "version": "10.2.4", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", + "integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^12.0.2", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" + }, + "engines": { + "node": ">= 12.20.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/copy-webpack-plugin/node_modules/array-union": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", + "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", + "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "dev": true, + "dependencies": { + "array-union": "^3.0.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz", + "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.35.1.tgz", + "integrity": "sha512-zcIdi/CL3MWbBJYo5YCeVAAx+Sy9yJE9I3/u9LkFABwbeaPhTMRWraM8mYFp9jW5Z50hOy7FVzCc8dCrpZqtIQ==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "dev": true, + "dependencies": { + "node-fetch": "2.6.7" + } + }, + "node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/cross-spawn/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/cross-spawn/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/csp_evaluator": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/csp_evaluator/-/csp_evaluator-1.1.1.tgz", + "integrity": "sha512-N3ASg0C4kNPUaNxt1XAvzHIVuzdtr8KLgfk1O8WDyimp1GisPAHESupArO2ieHk9QWbrJ/WkQODyh21Ps/xhxw==", + "dev": true + }, + "node_modules/css-declaration-sorter": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", + "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-functions-list": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", + "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", + "dev": true, + "engines": { + "node": ">=12 || >=16" + } + }, + "node_modules/css-loader": { + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.10.0.tgz", + "integrity": "sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.4", + "postcss-modules-scope": "^3.1.1", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/css-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz", + "integrity": "sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^6.0.3", + "lilconfig": "^3.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/cssnano-preset-default": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz", + "integrity": "sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^7.1.1", + "cssnano-utils": "^4.0.1", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.0.2", + "postcss-convert-values": "^6.0.2", + "postcss-discard-comments": "^6.0.1", + "postcss-discard-duplicates": "^6.0.1", + "postcss-discard-empty": "^6.0.1", + "postcss-discard-overridden": "^6.0.1", + "postcss-merge-longhand": "^6.0.2", + "postcss-merge-rules": "^6.0.3", + "postcss-minify-font-values": "^6.0.1", + "postcss-minify-gradients": "^6.0.1", + "postcss-minify-params": "^6.0.2", + "postcss-minify-selectors": "^6.0.2", + "postcss-normalize-charset": "^6.0.1", + "postcss-normalize-display-values": "^6.0.1", + "postcss-normalize-positions": "^6.0.1", + "postcss-normalize-repeat-style": "^6.0.1", + "postcss-normalize-string": "^6.0.1", + "postcss-normalize-timing-functions": "^6.0.1", + "postcss-normalize-unicode": "^6.0.2", + "postcss-normalize-url": "^6.0.1", + "postcss-normalize-whitespace": "^6.0.1", + "postcss-ordered-values": "^6.0.1", + "postcss-reduce-initial": "^6.0.2", + "postcss-reduce-transforms": "^6.0.1", + "postcss-svgo": "^6.0.2", + "postcss-unique-selectors": "^6.0.2" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/cssnano-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", + "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/cwd": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/cwd/-/cwd-0.10.0.tgz", + "integrity": "sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==", + "dev": true, + "dependencies": { + "find-pkg": "^0.1.2", + "fs-exists-sync": "^0.1.0" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/data-uri-to-buffer": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.1.tgz", + "integrity": "sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/debounce": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", + "dev": true + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, + "node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.2.tgz", + "integrity": "sha512-SRtsSqsDbgpJBbW3pABMCOt6rQyeM8s8RiyeSN8jYG8sYmt/kGJejbydttUsnDs1tadr19tvhT4ShwMyoqAm4g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.2", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/degenerator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "dev": true, + "dependencies": { + "ast-types": "^0.13.4", + "escodegen": "^2.1.0", + "esprima": "^4.0.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/devtools-protocol": { + "version": "0.0.1155343", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1155343.tgz", + "integrity": "sha512-oD9vGBV2wTc7fAzAM6KC0chSgs234V8+qDEeK+mcbRj2UvcuA7lgBztGi/opj/iahcXD3BSj8Ymvib628yy9FA==", + "dev": true + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "dev": true, + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.661", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.661.tgz", + "integrity": "sha512-AFg4wDHSOk5F+zA8aR+SVIOabu7m0e7BiJnigCvPXzIGy731XENw/lmNxTySpVFtkFEy+eyt4oHhh5FF3NjQNw==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.1.tgz", + "integrity": "sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dev": true, + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "dev": true, + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", + "dev": true + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "27.6.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.3.tgz", + "integrity": "sha512-+YsJFVH6R+tOiO3gCJon5oqn4KWc+mDq2leudk8mrp8RFubLOo9CVyi3cib4L7XMpxExmkmBZQTPDYVBzgpgOA==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^5.10.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0", + "eslint": "^7.0.0 || ^8.0.0", + "jest": "*" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-jest/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jest/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/eslint-plugin-jsdoc": { + "version": "46.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.10.1.tgz", + "integrity": "sha512-x8wxIpv00Y50NyweDUpa+58ffgSAI5sqe+zcZh33xphD0AVh+1kqr1ombaTRb7Fhpove1zfUuujlX9DWWBP5ag==", + "dev": true, + "dependencies": { + "@es-joy/jsdoccomment": "~0.41.0", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.4.1", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "is-builtin-module": "^3.2.1", + "semver": "^7.5.4", + "spdx-expression-parse": "^4.0.0" + }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint-plugin-playwright": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-playwright/-/eslint-plugin-playwright-0.15.3.tgz", + "integrity": "sha512-LQMW5y0DLK5Fnpya7JR1oAYL2/7Y9wDiYw6VZqlKqcRGSgjbVKNqxraphk7ra1U3Bb5EK444xMgUlQPbMg2M1g==", + "dev": true, + "peerDependencies": { + "eslint": ">=7", + "eslint-plugin-jest": ">=25" + }, + "peerDependenciesMeta": { + "eslint-plugin-jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.6" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/execa/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-tilde": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz", + "integrity": "sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==", + "dev": true, + "dependencies": { + "os-homedir": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect-puppeteer": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/expect-puppeteer/-/expect-puppeteer-4.4.0.tgz", + "integrity": "sha512-6Ey4Xy2xvmuQu7z7YQtMsaMV0EHJRpVxIDOd5GRrm04/I3nkTKIutELfECsLp6le+b3SSa3cXhPiw6PgqzxYWA==", + "dev": true + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/extract-zip/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", + "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "dev": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-file-up": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/find-file-up/-/find-file-up-0.1.3.tgz", + "integrity": "sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A==", + "dev": true, + "dependencies": { + "fs-exists-sync": "^0.1.0", + "resolve-dir": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-parent-dir": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.1.tgz", + "integrity": "sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A==", + "dev": true + }, + "node_modules/find-pkg": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/find-pkg/-/find-pkg-0.1.2.tgz", + "integrity": "sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw==", + "dev": true, + "dependencies": { + "find-file-up": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-process": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.7.tgz", + "integrity": "sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "commander": "^5.1.0", + "debug": "^4.1.1" + }, + "bin": { + "find-process": "bin/find-process.js" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==", + "dev": true, + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs-exists-sync": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz", + "integrity": "sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs-extra/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stdin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-uri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.2.tgz", + "integrity": "sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==", + "dev": true, + "dependencies": { + "basic-ftp": "^5.0.2", + "data-uri-to-buffer": "^6.0.0", + "debug": "^4.3.4", + "fs-extra": "^8.1.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/gettext-parser": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz", + "integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==", + "dev": true, + "dependencies": { + "encoding": "^0.1.12", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/global-modules": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz", + "integrity": "sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==", + "dev": true, + "dependencies": { + "global-prefix": "^0.1.4", + "is-windows": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz", + "integrity": "sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.0", + "ini": "^1.3.4", + "is-windows": "^0.2.0", + "which": "^1.2.12" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globjoin": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", + "dev": true + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dev": true, + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-link-header": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-link-header/-/http-link-header-1.1.1.tgz", + "integrity": "sha512-mW3N/rTYpCn99s1do0zx6nzFZSwLH9HGfUM4ZqLWJ16ylmYaC2v5eYGqrNTQlByx8AzUgGI+V/32gXPugs1+Sw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/ignore-walk": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz", + "integrity": "sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ignore-walk/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/ignore-walk/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/image-ssim": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/image-ssim/-/image-ssim-0.2.0.tgz", + "integrity": "sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==", + "dev": true + }, + "node_modules/immutable": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", + "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/intl-messageformat": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-4.4.0.tgz", + "integrity": "sha512-z+Bj2rS3LZSYU4+sNitdHrwnBhr0wO80ZJSW8EzKDBowwUe3Q/UsvgCGjrwa+HPzoGCLEb9HAjfJgo4j2Sac8w==", + "dev": true, + "dependencies": { + "intl-messageformat-parser": "^1.8.1" + } + }, + "node_modules/intl-messageformat-parser": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz", + "integrity": "sha512-IMSCKVf0USrM/959vj3xac7s8f87sc+80Y/ipBzdKy4ifBv5Gsj2tZ41EAaURVg01QU71fYr77uA8Meh6kELbg==", + "deprecated": "We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser", + "dev": true + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/irregular-plurals": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", + "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz", + "integrity": "sha512-n67eJYmXbniZB7RF4I/FTjK1s6RPOCTxhYrVYLRaCt3lF0mpWZPKr3T2LSZAqyjQsxR2qMmGYXXzK0YWwcPM1Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-dev-server": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jest-dev-server/-/jest-dev-server-9.0.2.tgz", + "integrity": "sha512-Zc/JB0IlNNrpXkhBw+h86cGrde/Mey52KvF+FER2eyrtYJTHObOwW7Iarxm3rPyTKby5+3Y2QZtl8pRz/5GCxg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "cwd": "^0.10.0", + "find-process": "^1.4.7", + "prompts": "^2.4.2", + "spawnd": "^9.0.2", + "tree-kill": "^1.2.2", + "wait-on": "^7.2.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/joi": { + "version": "17.12.1", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.12.1.tgz", + "integrity": "sha512-vtxmq+Lsc5SlfqotnfVjlViWfOL9nt/avKNbKYizwf6gsCfq9NYY/ceYRMFD8XDdrjJ9abJyScWmhmIiy+XRtQ==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/jpeg-js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", + "dev": true + }, + "node_modules/js-library-detector": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/js-library-detector/-/js-library-detector-6.7.0.tgz", + "integrity": "sha512-c80Qupofp43y4cJ7+8TTDN/AsDwLi5oOm/plBrWI+iQt485vKXCco+yVmOwEgdo9VOdsYTuV0UlTeetVPTriXA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdoc-type-pratt-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json2php": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.7.tgz", + "integrity": "sha512-dnSoUiLAoVaMXxFsVi4CrPVYMKOuDBXTghXSmMINX44RZ8WM9cXlY7UqrQnlAcODCVO7FV3+8t/5nDKAjimLfg==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonc-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", + "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/known-css-properties": { + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", + "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", + "dev": true + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "dev": true + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/launch-editor": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lighthouse": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-10.4.0.tgz", + "integrity": "sha512-XQWHEWkJ8YxSPsxttBJORy5+hQrzbvGkYfeP3fJjyYKioWkF2MXfFqNK4ZuV4jL8pBu7Z91qnQP6In0bq1yXww==", + "dev": true, + "dependencies": { + "@sentry/node": "^6.17.4", + "axe-core": "4.7.2", + "chrome-launcher": "^0.15.2", + "configstore": "^5.0.1", + "csp_evaluator": "1.1.1", + "devtools-protocol": "0.0.1155343", + "enquirer": "^2.3.6", + "http-link-header": "^1.1.1", + "intl-messageformat": "^4.4.0", + "jpeg-js": "^0.4.4", + "js-library-detector": "^6.6.0", + "lighthouse-logger": "^1.4.1", + "lighthouse-stack-packs": "1.11.0", + "lodash": "^4.17.21", + "lookup-closest-locale": "6.2.0", + "metaviewport-parser": "0.3.0", + "open": "^8.4.0", + "parse-cache-control": "1.0.1", + "ps-list": "^8.0.0", + "puppeteer-core": "^20.8.0", + "robots-parser": "^3.0.0", + "semver": "^5.3.0", + "speedline-core": "^1.4.3", + "third-party-web": "^0.23.3", + "ws": "^7.0.0", + "yargs": "^17.3.1", + "yargs-parser": "^21.0.0" + }, + "bin": { + "chrome-debug": "core/scripts/manual-chrome-launcher.js", + "lighthouse": "cli/index.js", + "smokehouse": "cli/test/smokehouse/frontends/smokehouse-bin.js" + }, + "engines": { + "node": ">=16.16" + } + }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "dev": true, + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/lighthouse-stack-packs": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.11.0.tgz", + "integrity": "sha512-sRr0z1S/I26VffRLq9KJsKtLk856YrJlNGmcJmbLX8dFn3MuzVPUbstuChEhqnSxZb8TZmVfthuXuwhG9vRoSw==", + "dev": true + }, + "node_modules/lighthouse/node_modules/axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/lighthouse/node_modules/cross-fetch": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", + "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", + "dev": true, + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/lighthouse/node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/lighthouse/node_modules/puppeteer-core": { + "version": "20.9.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-20.9.0.tgz", + "integrity": "sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==", + "dev": true, + "dependencies": { + "@puppeteer/browsers": "1.4.6", + "chromium-bidi": "0.4.16", + "cross-fetch": "4.0.0", + "debug": "4.3.4", + "devtools-protocol": "0.0.1147663", + "ws": "8.13.0" + }, + "engines": { + "node": ">=16.3.0" + }, + "peerDependencies": { + "typescript": ">= 4.7.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/chromium-bidi": { + "version": "0.4.16", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.16.tgz", + "integrity": "sha512-7ZbXdWERxRxSwo3txsBjjmc/NLxqb1Bk30mRb0BMS4YIaiV6zvKZqL/UAH+DdqcDYayDWk2n/y8klkBDODrPvA==", + "dev": true, + "dependencies": { + "mitt": "3.0.0" + }, + "peerDependencies": { + "devtools-protocol": "*" + } + }, + "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/devtools-protocol": { + "version": "0.0.1147663", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz", + "integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ==", + "dev": true + }, + "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/lighthouse/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/lighthouse/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/lighthouse/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/lighthouse/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/lighthouse/node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "dev": true, + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lookup-closest-locale": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz", + "integrity": "sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru_map": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", + "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/map-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-values/-/map-values-1.0.1.tgz", + "integrity": "sha512-BbShUnr5OartXJe1GeccAWtfro11hhgNJg6G9/UtWKjVGvV5U4C09cg5nk8JUevhXODaXY+hQ3xxMUKSs62ONQ==", + "dev": true + }, + "node_modules/markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/markdown-it/node_modules/entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/markdownlint": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.1.tgz", + "integrity": "sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g==", + "dev": true, + "dependencies": { + "markdown-it": "12.3.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/markdownlint-cli": { + "version": "0.31.1", + "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.31.1.tgz", + "integrity": "sha512-keIOMwQn+Ch7MoBwA+TdkyVMuxAeZFEGmIIlvwgV0Z1TGS5MxPnRr29XCLhkNzCHU+uNKGjU+VEjLX+Z9kli6g==", + "dev": true, + "dependencies": { + "commander": "~9.0.0", + "get-stdin": "~9.0.0", + "glob": "~7.2.0", + "ignore": "~5.2.0", + "js-yaml": "^4.1.0", + "jsonc-parser": "~3.0.0", + "markdownlint": "~0.25.1", + "markdownlint-rule-helpers": "~0.16.0", + "minimatch": "~3.0.5", + "run-con": "~1.2.10" + }, + "bin": { + "markdownlint": "markdownlint.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/markdownlint-cli/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/markdownlint-cli/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/markdownlint-cli/node_modules/commander": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz", + "integrity": "sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==", + "dev": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/markdownlint-cli/node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/markdownlint-cli/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/markdownlint-cli/node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/markdownlint-rule-helpers": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.16.0.tgz", + "integrity": "sha512-oEacRUVeTJ5D5hW1UYd2qExYI0oELdYK72k1TKGvIeYJIbqQWAz476NAc7LNixSySUhcNl++d02DvX0ccDk9/w==", + "dev": true + }, + "node_modules/marky": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", + "dev": true + }, + "node_modules/mathml-tag-names": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", + "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/memize/-/memize-2.1.0.tgz", + "integrity": "sha512-yywVJy8ctVlN5lNPxsep5urnZ6TTclwPEyigM9M3Bi8vseJBOfqNrGWN/r8NzuIt3PovM323W04blJfGQfQSVg==", + "dev": true + }, + "node_modules/meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-deep": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.3.tgz", + "integrity": "sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "clone-deep": "^0.2.4", + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/metaviewport-parser": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/metaviewport-parser/-/metaviewport-parser-0.3.0.tgz", + "integrity": "sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ==", + "dev": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.0.tgz", + "integrity": "sha512-CxmUYPFcTgET1zImteG/LZOy/4T5rTojesQXkSNBiquhydn78tfbCE9sjIjnJ/UcjNjOC1bphTCCW5rrS7cXAg==", + "dev": true, + "dependencies": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/minimist-options/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/minimist-options/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mitt": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz", + "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==", + "dev": true + }, + "node_modules/mixin-object": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", + "integrity": "sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==", + "dev": true, + "dependencies": { + "for-in": "^0.1.3", + "is-extendable": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-object/node_modules/for-in": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", + "integrity": "sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/mrmime": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/netmask": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dev": true, + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "node_modules/npm-package-json-lint": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.4.0.tgz", + "integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==", + "dev": true, + "dependencies": { + "ajv": "^6.12.6", + "ajv-errors": "^1.0.1", + "chalk": "^4.1.2", + "cosmiconfig": "^8.0.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "ignore": "^5.2.0", + "is-plain-obj": "^3.0.0", + "jsonc-parser": "^3.2.0", + "log-symbols": "^4.1.0", + "meow": "^9.0.0", + "plur": "^4.0.0", + "semver": "^7.3.8", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1", + "type-fest": "^3.2.0", + "validate-npm-package-name": "^5.0.0" + }, + "bin": { + "npmPkgJsonLint": "dist/cli.js" + }, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/npm-package-json-lint/node_modules/jsonc-parser": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", + "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", + "dev": true + }, + "node_modules/npm-package-json-lint/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-json-lint/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-package-json-lint/node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-package-json-lint/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/npm-packlist": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-3.0.0.tgz", + "integrity": "sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==", + "dev": true, + "dependencies": { + "glob": "^7.1.6", + "ignore-walk": "^4.0.1", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "npm-packlist": "bin/index.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-filter": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object-filter/-/object-filter-1.0.2.tgz", + "integrity": "sha512-NahvP2vZcy1ZiiYah30CEPw0FpDcSkSePJBMpzl5EQgCmISijiGuJm3SPYp7U+Lf2TljyaIw3E5EgkEx/TNEVA==", + "dev": true + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", + "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", + "dev": true, + "dependencies": { + "array.prototype.filter": "^1.0.3", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pac-proxy-agent": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", + "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "dev": true, + "dependencies": { + "@tootallnate/quickjs-emscripten": "^0.23.0", + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "get-uri": "^6.0.1", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.2", + "pac-resolver": "^7.0.0", + "socks-proxy-agent": "^8.0.2" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/pac-proxy-agent/node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/pac-proxy-agent/node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/pac-proxy-agent/node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/pac-resolver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", + "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "dev": true, + "dependencies": { + "degenerator": "^5.0.0", + "ip": "^1.1.8", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-cache-control": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==", + "dev": true + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/playwright": { + "version": "1.41.2", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.41.2.tgz", + "integrity": "sha512-v0bOa6H2GJChDL8pAeLa/LZC4feoAMbSQm1/jF/ySsWWoaNItvrMP7GEkvEEFyCTUYKMxjQKaTSg5up7nR6/8A==", + "dev": true, + "peer": true, + "dependencies": { + "playwright-core": "1.41.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "node_modules/playwright-core": { + "version": "1.39.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.39.0.tgz", + "integrity": "sha512-+k4pdZgs1qiM+OUkSjx96YiKsXsmb59evFoqv8SKO067qBA+Z2s/dCzJij/ZhdQcs2zlTAgRKfeiiLm8PQ2qvw==", + "dev": true, + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/playwright/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/playwright/node_modules/playwright-core": { + "version": "1.41.2", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.41.2.tgz", + "integrity": "sha512-VaTvwCA4Y8kxEe+kfm2+uUUw5Lubf38RxF7FpBxLPmGe5sdNkSg5e3ChEigaGrX7qdqT3pt2m/98LiyvU2x6CA==", + "dev": true, + "peer": true, + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/plur": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz", + "integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==", + "dev": true, + "dependencies": { + "irregular-plurals": "^3.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/postcss": { + "version": "8.4.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", + "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-colormin": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz", + "integrity": "sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-convert-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz", + "integrity": "sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-comments": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", + "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", + "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-empty": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", + "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", + "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/postcss-media-query-parser": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", + "dev": true + }, + "node_modules/postcss-merge-longhand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz", + "integrity": "sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.2" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-merge-rules": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz", + "integrity": "sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.1", + "postcss-selector-parser": "^6.0.15" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", + "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", + "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-params": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz", + "integrity": "sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.2.tgz", + "integrity": "sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.15" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz", + "integrity": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz", + "integrity": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", + "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", + "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", + "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", + "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-string": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", + "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", + "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz", + "integrity": "sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", + "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", + "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-ordered-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", + "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", + "dev": true, + "dependencies": { + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz", + "integrity": "sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", + "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-resolve-nested-selector": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", + "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", + "dev": true + }, + "node_modules/postcss-safe-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", + "dev": true, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "node_modules/postcss-scss": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", + "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss-scss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.4.29" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.2.tgz", + "integrity": "sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^3.2.0" + }, + "engines": { + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.2.tgz", + "integrity": "sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.15" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "name": "wp-prettier", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/wp-prettier/-/wp-prettier-3.0.3.tgz", + "integrity": "sha512-X4UlrxDTH8oom9qXlcjnydsjAOD2BmB6yFmvS4Z2zdTzqqpRWb+fbqrH412+l+OUXmbzJlSXjlMFYPgYG12IAA==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-agent": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz", + "integrity": "sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "lru-cache": "^7.14.1", + "pac-proxy-agent": "^7.0.0", + "proxy-from-env": "^1.1.0", + "socks-proxy-agent": "^8.0.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/proxy-agent/node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/proxy-agent/node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/proxy-agent/node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/proxy-agent/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/ps-list": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/ps-list/-/ps-list-8.1.1.tgz", + "integrity": "sha512-OPS9kEJYVmiO48u/B9qneqhkMvgCxT+Tm28VCEJpheTpl8cJ0ffZRRNgS5mrQRTrX5yRTpaJ+hRDeefXYmmorQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/puppeteer-core": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-13.7.0.tgz", + "integrity": "sha512-rXja4vcnAzFAP1OVLq/5dWNfwBGuzcOARJ6qGV7oAZhnLmVRU8G5MsdeQEAOy332ZhkIOnn9jp15R89LKHyp2Q==", + "dev": true, + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.981744", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "engines": { + "node": ">=10.18.1" + } + }, + "node_modules/puppeteer-core/node_modules/devtools-protocol": { + "version": "0.0.981744", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.981744.tgz", + "integrity": "sha512-0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg==", + "dev": true + }, + "node_modules/puppeteer-core/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/puppeteer-core/node_modules/ws": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", + "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/pure-rand": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true + }, + "node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dev": true, + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dev": true, + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/react-refresh": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", + "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0", + "get-intrinsic": "^1.2.3", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/remove-accents": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz", + "integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requireindex": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", + "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", + "dev": true, + "engines": { + "node": ">=0.10.5" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-bin": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/resolve-bin/-/resolve-bin-0.4.3.tgz", + "integrity": "sha512-9u8TMpc+SEHXxQXblXHz5yRvRZERkCZimFN9oz85QI3uhkh7nqfjm6OGTLg+8vucpXGcY4jLK6WkylPmt7GSvw==", + "dev": true, + "dependencies": { + "find-parent-dir": "~0.3.0" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz", + "integrity": "sha512-QxMPqI6le2u0dCLyiGzgy92kjkkL6zO0XyvHzjdTNH3zM6e5Hz3BwG6+aEyNgiQ5Xz6PwTwgQEj3U50dByPKIA==", + "dev": true, + "dependencies": { + "expand-tilde": "^1.2.2", + "global-modules": "^0.2.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/robots-parser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/robots-parser/-/robots-parser-3.0.1.tgz", + "integrity": "sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/run-con": { + "version": "1.2.12", + "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz", + "integrity": "sha512-5257ILMYIF4RztL9uoZ7V9Q97zHtNHn5bN3NobeAnzB1P3ASLgg8qocM2u+R18ttp+VEM78N2LK8XcNVtnSRrg==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~3.0.0", + "minimist": "^1.2.8", + "strip-json-comments": "~3.1.1" + }, + "bin": { + "run-con": "cli.js" + } + }, + "node_modules/run-con/node_modules/ini": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.70.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", + "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-loader": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.1.0.tgz", + "integrity": "sha512-LS2mLeFWA+orYxHNu+O18Xe4jR0kyamNOOUsE3NyBP4DvIL+8stHpNX0arYTItdPe80kluIiJ7Wfe/9iHSRO0Q==", + "dev": true, + "dependencies": { + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dev": true, + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "dev": true, + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", + "integrity": "sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.1", + "kind-of": "^2.0.1", + "lazy-cache": "^0.2.3", + "mixin-object": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shallow-clone/node_modules/kind-of": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "integrity": "sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==", + "dev": true, + "dependencies": { + "is-buffer": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shallow-clone/node_modules/lazy-cache": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", + "integrity": "sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", + "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sirv": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", + "dev": true, + "dependencies": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/socks-proxy-agent/node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/socks/node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "dev": true, + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spawnd": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/spawnd/-/spawnd-9.0.2.tgz", + "integrity": "sha512-nl8DVHEDQ57IcKakzpjanspVChkMpGLuVwMR/eOn9cXE55Qr6luD2Kn06sA0ootRMdgrU4tInN6lA6ohTNvysw==", + "dev": true, + "dependencies": { + "signal-exit": "^4.1.0", + "tree-kill": "^1.2.2" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/spawnd/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-correct/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", + "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/speedline-core": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/speedline-core/-/speedline-core-1.4.3.tgz", + "integrity": "sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==", + "dev": true, + "dependencies": { + "@types/node": "*", + "image-ssim": "^0.2.0", + "jpeg-js": "^0.4.1" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "dev": true + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/streamx": { + "version": "2.15.7", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.7.tgz", + "integrity": "sha512-NPEKS5+yjyo597eafGbKW5ujh7Sm6lDLHZQd/lRSz6S0VarpADBJItqfB4PnwpS+472oob1GX5cCY9vzfJpHUA==", + "dev": true, + "dependencies": { + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-outer/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/style-search": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", + "dev": true + }, + "node_modules/stylehacks": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz", + "integrity": "sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "postcss-selector-parser": "^6.0.15" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/stylelint": { + "version": "14.16.1", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", + "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", + "dev": true, + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "balanced-match": "^2.0.0", + "colord": "^2.9.3", + "cosmiconfig": "^7.1.0", + "css-functions-list": "^3.1.0", + "debug": "^4.3.4", + "fast-glob": "^3.2.12", + "fastest-levenshtein": "^1.0.16", + "file-entry-cache": "^6.0.1", + "global-modules": "^2.0.0", + "globby": "^11.1.0", + "globjoin": "^0.1.4", + "html-tags": "^3.2.0", + "ignore": "^5.2.1", + "import-lazy": "^4.0.0", + "imurmurhash": "^0.1.4", + "is-plain-object": "^5.0.0", + "known-css-properties": "^0.26.0", + "mathml-tag-names": "^2.1.3", + "meow": "^9.0.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.19", + "postcss-media-query-parser": "^0.2.3", + "postcss-resolve-nested-selector": "^0.1.1", + "postcss-safe-parser": "^6.0.0", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0", + "resolve-from": "^5.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "style-search": "^0.1.0", + "supports-hyperlinks": "^2.3.0", + "svg-tags": "^1.0.0", + "table": "^6.8.1", + "v8-compile-cache": "^2.3.0", + "write-file-atomic": "^4.0.2" + }, + "bin": { + "stylelint": "bin/stylelint.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/stylelint" + } + }, + "node_modules/stylelint-config-recommended": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-6.0.0.tgz", + "integrity": "sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw==", + "dev": true, + "peerDependencies": { + "stylelint": "^14.0.0" + } + }, + "node_modules/stylelint-config-recommended-scss": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-5.0.2.tgz", + "integrity": "sha512-b14BSZjcwW0hqbzm9b0S/ScN2+3CO3O4vcMNOw2KGf8lfVSwJ4p5TbNEXKwKl1+0FMtgRXZj6DqVUe/7nGnuBg==", + "dev": true, + "dependencies": { + "postcss-scss": "^4.0.2", + "stylelint-config-recommended": "^6.0.0", + "stylelint-scss": "^4.0.0" + }, + "peerDependencies": { + "stylelint": "^14.0.0" + } + }, + "node_modules/stylelint-scss": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", + "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", + "dev": true, + "dependencies": { + "postcss-media-query-parser": "^0.2.3", + "postcss-resolve-nested-selector": "^0.1.1", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "stylelint": "^14.5.1 || ^15.0.0" + } + }, + "node_modules/stylelint/node_modules/balanced-match": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "dev": true + }, + "node_modules/stylelint/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stylelint/node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stylelint/node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stylelint/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stylelint/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "dev": true + }, + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/svgo": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.2.0.tgz", + "integrity": "sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/synckit": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "dev": true, + "dependencies": { + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/table": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/tannin": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz", + "integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==", + "dev": true, + "dependencies": { + "@tannin/plural-forms": "^1.1.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.27.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", + "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/third-party-web": { + "version": "0.23.4", + "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.23.4.tgz", + "integrity": "sha512-kwYnSZRhEvv0SBW2fp8SBBKRglMoBjV8xz6C31m0ewqOtknB5UL+Ihg+M81hyFY5ldkZuGWPb+e4GVDkzf/gYg==", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-repeated/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", + "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz", + "integrity": "sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/validate-npm-package-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", + "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "dev": true, + "dependencies": { + "builtins": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/wait-on": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", + "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", + "dev": true, + "dependencies": { + "axios": "^1.6.1", + "joi": "^17.11.0", + "lodash": "^4.17.21", + "minimist": "^1.2.8", + "rxjs": "^7.8.1" + }, + "bin": { + "wait-on": "bin/wait-on" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-vitals": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz", + "integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==", + "dev": true + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/webpack": { + "version": "5.90.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.1.tgz", + "integrity": "sha512-SstPdlAC5IvgFnhiRok8hqJo/+ArAbNv7rhU4fnWGHNVfN59HSQFaxZDSAL3IFG2YmqxuRs+IU33milSxbPlog==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-bundle-analyzer": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz", + "integrity": "sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "0.5.7", + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "commander": "^7.2.0", + "debounce": "^1.2.1", + "escape-string-regexp": "^4.0.0", + "gzip-size": "^6.0.0", + "html-escaper": "^2.0.2", + "is-plain-object": "^5.0.0", + "opener": "^1.5.2", + "picocolors": "^1.0.0", + "sirv": "^2.0.3", + "ws": "^7.3.1" + }, + "bin": { + "webpack-bundle-analyzer": "lib/bin/analyzer.js" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/webpack-cli/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/webpack-cli/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-cli/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-merge/node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-merge/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-merge/node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dev": true, + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", + "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.5", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/package.json b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/package.json new file mode 100644 index 00000000..983b94fd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/package.json @@ -0,0 +1,15 @@ +{ + "name": "@pewresearch/prc-platform-semantic-ui-css-shim", + "version": "0.0.1", + "devDependencies": { + "@wordpress/scripts": "^27.1.0", + "mini-css-extract-plugin": "^2.8.0", + "sass": "^1.70.0", + "sass-loader": "^14.1.0", + "style-loader": "^3.3.4", + "webpack": "^5.90.1" + }, + "scripts": { + "build": "npx webpack ./src/style.scss --output-path ./dist --mode production" + } +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/button.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/button.scss new file mode 100644 index 00000000..f1bc8f5b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/button.scss @@ -0,0 +1,4301 @@ +/*! + * # Semantic UI - Button + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "colors"; +@use "sass:math"; +@use 'mixins'; + +/******************************* + Button + *******************************/ + +/*------------------- + Element + --------------------*/ + +/* Button */ +$verticalMargin: 0em; +$horizontalMargin: 0.25em; +$backgroundColor: #e0e1e2; +$backgroundImage: none; +$background: $backgroundColor $backgroundImage; +$lineHeight: 1.067em; + +/* Button defaults to using same height as input globally */ +$verticalPadding: variables.$inputVerticalPadding; +$horizontalPadding: 1.5em; + +/* Text */ +$textTransform: none; +$tapColor: transparent; +$fontFamily: variables.$sansSerifFont; //$pageFont; +$fontWeight: variables.$bold; +$textColor: rgba(0, 0, 0, 0.6); +$textShadow: none; +$invertedTextShadow: $textShadow; +$borderRadius: 3px; //$defaultBorderRadius; +$verticalAlign: baseline; + +/* Internal Shadow */ +$shadowDistance: 0em; +$shadowOffset: math.div($shadowDistance, 2); +$shadowBoxShadow: 0px (-$shadowDistance) 0px 0px colors.$borderColor inset; + +/* Box Shadow */ +$borderBoxShadowColor: transparent; +$borderBoxShadowWidth: 1px; +$borderBoxShadow: 0px 0px 0px $borderBoxShadowWidth $borderBoxShadowColor inset; +$boxShadow: $borderBoxShadow, +$shadowBoxShadow; + +/* Icon */ +$iconHeight: variables.$relativeTiny; +$iconOpacity: 0.8; +$iconDistance: variables.$relative6px; +$iconColor: ""; +$iconTransition: opacity variables.$defaultDuration variables.$defaultEasing; +$iconVerticalAlign: ""; + +$iconMargin: 0em $iconDistance 0em - math.div($iconDistance, 2); +$rightIconMargin: 0em - math.div($iconDistance, 2) 0em $iconDistance; + +/* Loader */ +$invertedLoaderFillColor: rgba(0, 0, 0, 0.15); + +$transition: opacity variables.$defaultDuration variables.$defaultEasing, +background-color variables.$defaultDuration variables.$defaultEasing, +color variables.$defaultDuration variables.$defaultEasing, +box-shadow variables.$defaultDuration variables.$defaultEasing, +background variables.$defaultDuration variables.$defaultEasing; +/* + $willChange: box-shadow, transform, opacity, color, background; + */ +$willChange: ""; + +/*------------------- + Group + --------------------*/ + +$groupBoxShadow: none; +$groupButtonBoxShadow: $boxShadow; +$verticalBoxShadow: none; +$groupButtonOffset: 0px 0px 0px 0px; +$verticalGroupOffset: 0px 0px 0px 0px; + +/*------------------- + States + --------------------*/ + +/* Hovered */ +$hoverBackgroundColor: #cacbcd; +$hoverBackgroundImage: $backgroundImage; +$hoverBoxShadow: $boxShadow; +$hoverColor: colors.$hoveredTextColor; +$iconHoverOpacity: 0.85; + +/* Focused */ +$focusBackgroundColor: $hoverBackgroundColor; +$focusBackgroundImage: ""; +$focusBoxShadow: ""; +$focusColor: colors.$hoveredTextColor; +$iconFocusOpacity: 0.85; + +/* Disabled */ +$disabledBackgroundImage: none; +$disabledBoxShadow: none; + +/* Pressed Down */ +$downBackgroundColor: #babbbc; +$downBackgroundImage: ""; +$downPressedShadow: none; +$downBoxShadow: $borderBoxShadow, +$downPressedShadow; +$downColor: colors.$pressedTextColor; + +/* Active */ +$activeBackgroundColor: #c0c1c2; +$activeBackgroundImage: none; +$activeColor: colors.$selectedTextColor; +$activeBoxShadow: $borderBoxShadow; + +/* Active + Hovered */ +$activeHoverBackgroundColor: $activeBackgroundColor; +$activeHoverBackgroundImage: none; +$activeHoverColor: $activeColor; +$activeHoverBoxShadow: $activeBoxShadow; + +/* Loading */ +$loadingOpacity: 1; +$loadingPointerEvents: auto; +$loadingTransition: all 0s linear, +opacity variables.$defaultDuration variables.$defaultEasing; + +/*------------------- + Types + --------------------*/ + +/* Or */ +$orText: "or"; + +$orGap: 0.3em; +$orHeight: ($verticalPadding * 2)+1em; +$orZIndex: 3; + +$orCircleDistanceToEdge: ($verticalPadding); +$orCircleSize: $orHeight - $orCircleDistanceToEdge; +$orLineHeight: ($orCircleSize); +$orBoxShadow: $borderBoxShadow; + +$orVerticalOffset: -($orCircleSize * 0.5); +$orHorizontalOffset: -($orCircleSize * 0.5); + +$orBackgroundColor: colors.$white; +$orTextShadow: $invertedTextShadow; +$orTextStyle: variables.$normal; +$orTextWeight: variables.$bold; +$orTextColor: colors.$lightTextColor; + +$orSpacerHeight: $verticalPadding; +$orSpacerColor: transparent; + +/* Icon */ +$iconButtonOpacity: 0.9; + +/* Labeled */ +$labeledLabelFontSize: variables.$medium; +$labeledLabelAlign: center; +$labeledLabelPadding: ""; +$labeledLabelFontSize: variables.$relativeMedium; +$labeledLabelBorderColor: colors.$borderColor; +$labeledLabelBorderOffset: -$borderBoxShadowWidth; +$labeledTagLabelSize: 1.85em; +/* hypotenuse of triangle */ +$labeledIconMargin: 0em; + +/* Labeled Icon */ +$labeledIconWidth: 1em+($verticalPadding * 2); +$labeledIconBackgroundColor: rgba(0, 0, 0, 0.05); +$labeledIconPadding: ($horizontalPadding + $labeledIconWidth); +$labeledIconBorder: transparent; +$labeledIconColor: ""; + +$labeledIconLeftShadow: -1px 0px 0px 0px $labeledIconBorder inset; +$labeledIconRightShadow: 1px 0px 0px 0px $labeledIconBorder inset; + +/* Inverted */ +$invertedBorderSize: 2px; +$invertedTextColor: colors.$white; +$invertedTextHoverColor: $hoverColor; +$invertedGroupButtonOffset: 0px 0px 0px - ($invertedBorderSize); +$invertedVerticalGroupButtonOffset: 0px 0px - ($invertedBorderSize) 0px; + +/* Basic */ +$basicBorderRadius: $borderRadius; +$basicBorderSize: 1px; +$basicTextColor: $textColor; +$basicColoredBorderSize: 1px; + +$basicBackground: transparent none; +$basicFontWeight: variables.$normal; +$basicBorder: 1px solid #DADBDB; //colors.$borderColor; +$basicBoxShadow: 0px 0px 0px $basicBorderSize colors.$borderColor inset; +$basicLoadingColor: colors.$offWhite; +$basicTextTransform: none; + +/* Basic Hover */ +$basicHoverBackground: #DADBDB; +$basicHoverTextColor: colors.$hoveredTextColor; +$basicHoverBoxShadow: 0px 0px 0px $basicBorderSize colors.$selectedBorderColor inset, +0px 0px 0px 0px colors.$borderColor inset; +/* Basic Focus */ +$basicFocusBackground: $basicHoverBackground; +$basicFocusTextColor: $basicHoverTextColor; +$basicFocusBoxShadow: $basicHoverBoxShadow; + +/* Basic Down */ +$basicDownBackground: #ccc; +$basicDownTextColor: colors.$pressedTextColor; +$basicDownBoxShadow: 0px 0px 0px $basicBorderSize rgba(0, 0, 0, 0.15) inset, +0px 1px 4px 0px colors.$borderColor inset; +/* Basic Active */ +$basicActiveBackground: colors.$transparentBlack; +$basicActiveBoxShadow: ""; +$basicActiveTextColor: colors.$selectedTextColor; + +/* Basic Inverted */ +$basicInvertedBackground: transparent; +$basicInvertedFocusBackground: transparent; +$basicInvertedDownBackground: colors.$transparentWhite; +$basicInvertedActiveBackground: colors.$transparentWhite; + +$basicInvertedBoxShadow: 0px 0px 0px $invertedBorderSize rgba(255, 255, 255, 0.5) inset; +$basicInvertedHoverBoxShadow: 0px 0px 0px $invertedBorderSize rgba(255, 255, 255, 1) inset; +$basicInvertedFocusBoxShadow: 0px 0px 0px $invertedBorderSize rgba(255, 255, 255, 1) inset; +$basicInvertedDownBoxShadow: 0px 0px 0px $invertedBorderSize rgba(255, 255, 255, 0.9) inset; +$basicInvertedActiveBoxShadow: 0px 0px 0px $invertedBorderSize rgba(255, 255, 255, 0.7) inset; + +$basicInvertedColor: colors.$darkWhite; +$basicInvertedHoverColor: colors.$darkWhiteHover; +$basicInvertedDownColor: colors.$darkWhiteActive; +$basicInvertedActiveColor: $invertedTextColor; + +/* Basic Group */ +$basicGroupBorder: $basicBorderSize solid colors.$borderColor; +$basicGroupBoxShadow: none; + +/*------------------- + Variations + --------------------*/ + +/* Colors */ +$coloredBackgroundImage: none; +$coloredBoxShadow: $shadowBoxShadow; + +/* Colored */ +$brownTextColor: $invertedTextColor; +$brownTextShadow: $invertedTextShadow; +$redTextColor: $invertedTextColor; +$redTextShadow: $invertedTextShadow; +$orangeTextColor: $invertedTextColor; +$orangeTextShadow: $invertedTextShadow; +$greenTextColor: $invertedTextColor; +$greenTextShadow: $invertedTextShadow; +$blueTextColor: $invertedTextColor; +$blueTextShadow: $invertedTextShadow; +$violetTextColor: $invertedTextColor; +$violetTextShadow: $invertedTextShadow; +$purpleTextColor: $invertedTextColor; +$purpleTextShadow: $invertedTextShadow; +$pinkTextColor: $invertedTextColor; +$pinkTextShadow: $invertedTextShadow; +$blackTextColor: $invertedTextColor; +$blackTextShadow: $invertedTextShadow; +$oliveTextColor: $invertedTextColor; +$oliveTextShadow: $invertedTextShadow; +$yellowTextColor: $invertedTextColor; +$yellowTextShadow: $invertedTextShadow; +$tealTextColor: $invertedTextColor; +$tealTextShadow: $invertedTextShadow; +$greyTextColor: $invertedTextColor; +$greyTextShadow: $invertedTextShadow; + +/* Inverted */ +$lightBrownTextColor: $invertedTextColor; +$lightBrownTextShadow: $invertedTextShadow; +$lightRedTextColor: $invertedTextColor; +$lightRedTextShadow: $invertedTextShadow; +$lightOrangeTextColor: $invertedTextColor; +$lightOrangeTextShadow: $invertedTextShadow; +$lightGreenTextColor: $invertedTextColor; +$lightGreenTextShadow: $invertedTextShadow; +$lightBlueTextColor: $invertedTextColor; +$lightBlueTextShadow: $invertedTextShadow; +$lightVioletTextColor: $invertedTextColor; +$lightVioletTextShadow: $invertedTextShadow; +$lightPurpleTextColor: $invertedTextColor; +$lightPurpleTextShadow: $invertedTextShadow; +$lightPinkTextColor: $invertedTextColor; +$lightPinkTextShadow: $invertedTextShadow; +$lightBlackTextColor: $invertedTextColor; +$lightBlackTextShadow: $invertedTextShadow; +$lightOliveTextColor: $textColor; +$lightOliveTextShadow: $textShadow; +$lightYellowTextColor: $textColor; +$lightYellowTextShadow: $textShadow; +$lightTealTextColor: $textColor; +$lightTealTextShadow: $textShadow; +$lightGreyTextColor: $textColor; +$lightGreyTextShadow: $textShadow; + +/* Ordinality */ +$primaryBackgroundImage: $coloredBackgroundImage; +$primaryTextColor: $invertedTextColor; +$lightPrimaryTextColor: $invertedTextColor; +$primaryTextShadow: $invertedTextShadow; +$primaryBoxShadow: $coloredBoxShadow; + +$secondaryBackgroundImage: $coloredBackgroundImage; +$secondaryTextColor: $invertedTextColor; +$secondaryTextShadow: $invertedTextShadow; +$lightSecondaryTextColor: $invertedTextColor; +$secondaryBoxShadow: $coloredBoxShadow; + +$positiveBackgroundImage: $coloredBackgroundImage; +$positiveTextColor: $invertedTextColor; +$positiveTextShadow: $invertedTextShadow; +$positiveBoxShadow: $coloredBoxShadow; + +$negativeBackgroundImage: $coloredBackgroundImage; +$negativeTextColor: $invertedTextColor; +$negativeTextShadow: $invertedTextShadow; +$negativeBoxShadow: $coloredBoxShadow; + +/* Compact */ +$compactVerticalPadding: ($verticalPadding * 0.75); +$compactHorizontalPadding: ($horizontalPadding * 0.75); + +/* Relaxed */ +$relaxedVerticalPadding: ($verticalPadding * 1.25); +$relaxedHorizontalPadding: ($horizontalPadding * 1.25); + +/* Attached */ +$attachedOffset: -1px; +$attachedBoxShadow: 0px 0px 0px 1px colors.$borderColor; +$attachedHorizontalPadding: 0.75em; +$attachedZIndex: 2; + +/* Floated */ +$floatedMargin: 0.25em; + +/* Animated */ +$animatedVerticalAlign: middle; +$animatedZIndex: 1; +$animationDuration: 0.3s; +$animationEasing: ease; +$fadeScaleHigh: 1.5; +$fadeScaleLow: 0.75; + + +/******************************* + Button + *******************************/ + +.ui.button { + cursor: pointer; + display: inline-block; + + min-height: 1em; + + outline: none; + border: none; + vertical-align: $verticalAlign; + background: $background; + color: $textColor; + + font-family: $fontFamily; + + margin: 0em $horizontalMargin $verticalMargin 0em; + padding: $verticalPadding $horizontalPadding ($verticalPadding + $shadowOffset); + + text-transform: $textTransform; + text-shadow: $textShadow; + font-weight: $fontWeight; + line-height: $lineHeight; + font-style: normal; + text-align: center; + text-decoration: none; + + border-radius: $borderRadius; + box-shadow: $boxShadow; + + user-select: none; + transition: $transition; + will-change: $willChange; + + -webkit-tap-highlight-color: $tapColor; +} + +/******************************* + States + *******************************/ + +/*-------------- + Hover + ---------------*/ + +.ui.button:hover { + background-color: $hoverBackgroundColor; + background-image: $hoverBackgroundImage; + box-shadow: $hoverBoxShadow; + color: $hoverColor; +} + +.ui.button:hover .icon { + opacity: $iconHoverOpacity; +} + +/*-------------- + Focus + ---------------*/ + +.ui.button:focus { + background-color: $focusBackgroundColor; + color: $focusColor; + background-image: $focusBackgroundImage !important; + box-shadow: $focusBoxShadow !important; +} + +.ui.button:focus .icon { + opacity: $iconFocusOpacity; +} + +/*-------------- + Down + ---------------*/ + +.ui.button:active, +.ui.active.button:active { + background-color: $downBackgroundColor; + background-image: $downBackgroundImage; + color: $downColor; + box-shadow: $downBoxShadow; +} + +/*-------------- + Active + ---------------*/ + +.ui.active.button { + background-color: $activeBackgroundColor; + background-image: $activeBackgroundImage; + box-shadow: $activeBoxShadow; + color: $activeColor; +} + +.ui.active.button:hover { + background-color: $activeHoverBackgroundColor; + background-image: $activeHoverBackgroundImage; + color: $activeHoverColor; +} + +.ui.active.button:active { + background-color: $activeBackgroundColor; + background-image: $activeBackgroundImage; +} + +/*-------------- + Loading + ---------------*/ + +/* Specificity hack */ +.ui.loading.loading.loading.loading.loading.loading.button { + position: relative; + cursor: default; + text-shadow: none !important; + color: transparent !important; + opacity: $loadingOpacity; + pointer-events: $loadingPointerEvents; + transition: $loadingTransition; +} + +.ui.loading.button:before { + position: absolute; + content: ""; + top: 50%; + left: 50%; + + margin: variables.$loaderMargin; + width: variables.$loaderSize; + height: variables.$loaderSize; + + border-radius: variables.$circularRadius; + border: variables.$loaderLineWidth solid $invertedLoaderFillColor; +} + +.ui.loading.button:after { + position: absolute; + content: ""; + top: 50%; + left: 50%; + + margin: variables.$loaderMargin; + width: variables.$loaderSize; + height: variables.$loaderSize; + + animation: button-spin variables.$loaderSpeed linear; + animation-iteration-count: infinite; + + border-radius: variables.$circularRadius; + + border-color: colors.$invertedLoaderLineColor transparent transparent; + border-style: solid; + border-width: variables.$loaderLineWidth; + + box-shadow: 0px 0px 0px 1px transparent; +} + +.ui.labeled.icon.loading.button .icon { + background-color: transparent; + box-shadow: none; +} + +@keyframes button-spin { + from { + transform: rotate(0deg); + } + + to { + transform: rotate(360deg); + } +} + +.ui.basic.loading.button:not(.inverted):before { + border-color: colors.$loaderFillColor; +} + +.ui.basic.loading.button:not(.inverted):after { + border-top-color: colors.$loaderLineColor; +} + +/*------------------- + Disabled + --------------------*/ + +.ui.buttons .disabled.button, +.ui.disabled.button, +.ui.button:disabled, +.ui.disabled.button:hover, +.ui.disabled.active.button { + cursor: default; + opacity: variables.$disabledOpacity !important; + background-image: none !important; + box-shadow: none !important; + pointer-events: none !important; +} + +/* Basic Group With Disabled */ +.ui.basic.buttons .ui.disabled.button { + border-color: colors.$disabledBorderColor; +} + +/******************************* + Types + *******************************/ + +/*------------------- + Animated + --------------------*/ + +.ui.animated.button { + position: relative; + overflow: hidden; + padding-right: 0em !important; + vertical-align: $animatedVerticalAlign; + z-index: $animatedZIndex; +} + +.ui.animated.button .content { + will-change: transform, opacity; +} + +.ui.animated.button .visible.content { + position: relative; + margin-right: $horizontalPadding; +} + +.ui.animated.button .hidden.content { + position: absolute; + width: 100%; +} + +/* Horizontal */ +.ui.animated.button .visible.content, +.ui.animated.button .hidden.content { + transition: right $animationDuration $animationEasing 0s; +} + +.ui.animated.button .visible.content { + left: auto; + right: 0%; +} + +.ui.animated.button .hidden.content { + top: 50%; + left: auto; + right: -100%; + margin-top: -(math.div($lineHeight, 2)); +} + +.ui.animated.button:focus .visible.content, +.ui.animated.button:hover .visible.content { + left: auto; + right: 200%; +} + +.ui.animated.button:focus .hidden.content, +.ui.animated.button:hover .hidden.content { + left: auto; + right: 0%; +} + +/* Vertical */ +.ui.vertical.animated.button .visible.content, +.ui.vertical.animated.button .hidden.content { + transition: top $animationDuration $animationEasing, + transform $animationDuration $animationEasing; +} + +.ui.vertical.animated.button .visible.content { + transform: translateY(0%); + right: auto; +} + +.ui.vertical.animated.button .hidden.content { + top: -50%; + left: 0%; + right: auto; +} + +.ui.vertical.animated.button:focus .visible.content, +.ui.vertical.animated.button:hover .visible.content { + transform: translateY(200%); + right: auto; +} + +.ui.vertical.animated.button:focus .hidden.content, +.ui.vertical.animated.button:hover .hidden.content { + top: 50%; + right: auto; +} + +/* Fade */ +.ui.fade.animated.button .visible.content, +.ui.fade.animated.button .hidden.content { + transition: opacity $animationDuration $animationEasing, + transform $animationDuration $animationEasing; +} + +.ui.fade.animated.button .visible.content { + left: auto; + right: auto; + opacity: 1; + transform: scale(1); +} + +.ui.fade.animated.button .hidden.content { + opacity: 0; + left: 0%; + right: auto; + transform: scale($fadeScaleHigh); +} + +.ui.fade.animated.button:focus .visible.content, +.ui.fade.animated.button:hover .visible.content { + left: auto; + right: auto; + opacity: 0; + transform: scale($fadeScaleLow); +} + +.ui.fade.animated.button:focus .hidden.content, +.ui.fade.animated.button:hover .hidden.content { + left: 0%; + right: auto; + opacity: 1; + transform: scale(1); +} + +/*------------------- + Inverted + --------------------*/ + +.ui.inverted.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$white inset !important; + background: transparent none; + color: colors.$white; + text-shadow: none !important; +} + +/* Group */ +.ui.inverted.buttons .button { + margin: $invertedGroupButtonOffset; +} + +.ui.inverted.buttons .button:first-child { + margin-left: 0em; +} + +.ui.inverted.vertical.buttons .button { + margin: $invertedVerticalGroupButtonOffset; +} + +.ui.inverted.vertical.buttons .button:first-child { + margin-top: 0em; +} + +/* States */ + +/* Hover */ +.ui.inverted.button:hover { + background: colors.$white; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$white inset !important; + color: $hoverColor; +} + +/* Active / Focus */ +.ui.inverted.button:focus, +.ui.inverted.button.active { + background: colors.$white; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$white inset !important; + color: $focusColor; +} + +/* Active Focus */ +.ui.inverted.button.active:focus { + background: colors.$midWhite; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$midWhite inset !important; + color: $focusColor; +} + +/*------------------- + Labeled Button + --------------------*/ + +.ui.labeled.button:not(.icon) { + display: inline-flex; + flex-direction: row; + background: none !important; + padding: 0px !important; + border: none !important; + box-shadow: none !important; +} + +.ui.labeled.button>.button { + margin: 0px; +} + +.ui.labeled.button>.label { + display: flex; + align-items: $labeledLabelAlign; + margin: 0px 0px 0px $labeledLabelBorderOffset !important; + font-size: $labeledLabelFontSize; + padding: $labeledLabelPadding; + font-size: $labeledLabelFontSize; + border-color: $labeledLabelBorderColor; +} + +/* Tag */ +.ui.labeled.button>.tag.label:before { + width: $labeledTagLabelSize; + height: $labeledTagLabelSize; +} + +/* Right */ +.ui.labeled.button:not([class*="left labeled"])>.button { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +.ui.labeled.button:not([class*="left labeled"])>.label { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +/* Left Side */ +.ui[class*="left labeled"].button>.button { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +.ui[class*="left labeled"].button>.label { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +/*------------------- + Social + --------------------*/ + +/* Facebook */ +.ui.facebook.button { + background-color: colors.$facebookColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; + background-image: $coloredBackgroundImage; + box-shadow: $coloredBoxShadow; +} + +.ui.facebook.button:hover { + background-color: colors.$facebookHoverColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.facebook.button:active { + background-color: colors.$facebookDownColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +/* Twitter */ +.ui.twitter.button { + background-color: colors.$twitterColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; + background-image: $coloredBackgroundImage; + box-shadow: $coloredBoxShadow; +} + +.ui.twitter.button:hover { + background-color: colors.$twitterHoverColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.twitter.button:active { + background-color: colors.$twitterDownColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +/* Linked In */ +.ui.linkedin.button { + background-color: colors.$linkedInColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.linkedin.button:hover { + background-color: colors.$linkedInHoverColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.linkedin.button:active { + background-color: colors.$linkedInDownColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +/* YouTube */ +.ui.youtube.button { + background-color: colors.$youtubeColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; + background-image: $coloredBackgroundImage; + box-shadow: $coloredBoxShadow; +} + +.ui.youtube.button:hover { + background-color: colors.$youtubeHoverColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.youtube.button:active { + background-color: colors.$youtubeDownColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +/* Instagram */ +.ui.instagram.button { + background-color: colors.$instagramColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; + background-image: $coloredBackgroundImage; + box-shadow: $coloredBoxShadow; +} + +.ui.instagram.button:hover { + background-color: colors.$instagramHoverColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.instagram.button:active { + background-color: colors.$instagramDownColor; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + + +/*-------------- + Icon + ---------------*/ + +.ui.button>.icon:not(.button) { + height: $iconHeight; + opacity: $iconOpacity; + margin: $iconMargin; + transition: $iconTransition; + vertical-align: $iconVerticalAlign; + color: $iconColor; +} + +.ui.button:not(.icon)>.icon:not(.button):not(.dropdown) { + margin: $iconMargin; +} + +.ui.button:not(.icon)>.right.icon:not(.button):not(.dropdown) { + margin: $rightIconMargin; +} + +/******************************* + Variations + *******************************/ + +/*------------------- + Floated + --------------------*/ + +.ui[class*="left floated"].buttons, +.ui[class*="left floated"].button { + float: left; + margin-left: 0em; + margin-right: $floatedMargin; +} + +.ui[class*="right floated"].buttons, +.ui[class*="right floated"].button { + float: right; + margin-right: 0em; + margin-left: $floatedMargin; +} + +/*------------------- + Compact + --------------------*/ + +.ui.compact.buttons .button, +.ui.compact.button { + padding: $compactVerticalPadding $compactHorizontalPadding ($compactVerticalPadding + $shadowOffset); +} + +.ui.compact.icon.buttons .button, +.ui.compact.icon.button { + padding: $compactVerticalPadding $compactVerticalPadding ($compactVerticalPadding + $shadowOffset); +} + +.ui.compact.labeled.icon.buttons .button, +.ui.compact.labeled.icon.button { + padding: $compactVerticalPadding ($compactHorizontalPadding + $labeledIconWidth) ($compactVerticalPadding + $shadowOffset); +} + +/*------------------- + Relaxed + --------------------*/ + +.ui.relaxed.buttons .button, +.ui.relaxed.button { + padding: $relaxedVerticalPadding $relaxedHorizontalPadding ($relaxedVerticalPadding + $shadowOffset); +} + +.ui.relaxed.icon.buttons .button, +.ui.relaxed.icon.button { + padding: $relaxedVerticalPadding $relaxedVerticalPadding ($relaxedVerticalPadding + $shadowOffset); +} + +.ui.relaxed.labeled.icon.buttons .button, +.ui.relaxed.labeled.icon.button { + padding: $relaxedVerticalPadding ($relaxedHorizontalPadding + $labeledIconWidth) ($relaxedVerticalPadding + $shadowOffset); +} + +/*------------------- + Sizes + --------------------*/ + +.ui.mini.buttons .button, +.ui.mini.buttons .or, +.ui.mini.button { + font-size: variables.$mini; +} + +.ui.tiny.buttons .button, +.ui.tiny.buttons .or, +.ui.tiny.button { + font-size: variables.$tiny; +} + +.ui.small.buttons .button, +.ui.small.buttons .or, +.ui.small.button { + font-size: variables.$small; +} + +.ui.buttons .button, +.ui.buttons .or, +.ui.button { + font-size: variables.$medium; +} + +.ui.large.buttons .button, +.ui.large.buttons .or, +.ui.large.button { + font-size: variables.$large; +} + +.ui.big.buttons .button, +.ui.big.buttons .or, +.ui.big.button { + font-size: variables.$big; +} + +.ui.huge.buttons .button, +.ui.huge.buttons .or, +.ui.huge.button { + font-size: variables.$huge; +} + +.ui.massive.buttons .button, +.ui.massive.buttons .or, +.ui.massive.button { + font-size: variables.$massive; +} + +/*-------------- + Icon Only + ---------------*/ + +.ui.icon.buttons .button, +.ui.icon.button { + padding: $verticalPadding $verticalPadding ($verticalPadding + $shadowOffset); +} + +.ui.icon.buttons .button>.icon, +.ui.icon.button>.icon { + opacity: $iconButtonOpacity; + margin: 0em !important; + vertical-align: top; +} + +/*------------------- + Flat + (can only be used singularly not in groups) + --------------------*/ + +.ui.flat.button { + border-radius: 0; + font-weight: normal; + text-decoration: none; + text-align: center; + @include mixins.box-shadow($hoverBackgroundColor 0px 3px 4px -2px inset); + + // padding: 10px; + // margin: 0 5px 20px; + &.oatmeal { + color: #333; + background: colors.$beigeMedium; + @include mixins.box-shadow(#adadad 0px 3px 4px -2px inset); + + &:hover { + color: #91918e; + background: #d7d8d4; + } + } +} + +/*------------------- + Basic + --------------------*/ + +.ui.basic.buttons .button, +.ui.basic.button { + background: $basicBackground !important; + color: $basicTextColor !important; + font-weight: $basicFontWeight; + border-radius: $basicBorderRadius; + text-transform: $basicTextTransform; + text-shadow: none !important; + box-shadow: $basicBoxShadow; +} + +.ui.basic.buttons { + box-shadow: $basicGroupBoxShadow; + border: $basicGroupBorder; + border-radius: $borderRadius; +} + +.ui.basic.buttons .button { + border-radius: 0em; +} + +.ui.basic.buttons .button:hover, +.ui.basic.button:hover { + background: $basicHoverBackground !important; + // color: $basicHoverTextColor !important; + box-shadow: none; //$basicHoverBoxShadow; +} + +.ui.basic.buttons .button:focus, +.ui.basic.button:focus { + background: $basicFocusBackground !important; + color: $basicFocusTextColor !important; + box-shadow: none; //$basicFocusBoxShadow; +} + +.ui.basic.buttons .button:active, +.ui.basic.button:active { + background: $basicDownBackground !important; + color: $basicDownTextColor !important; + box-shadow: none; //$basicDownBoxShadow; +} + +.ui.basic.buttons .active.button, +.ui.basic.active.button { + background: $basicActiveBackground !important; + box-shadow: none !important; //$basicActiveBoxShadow !important; + color: $basicActiveTextColor !important; +} + +.ui.basic.buttons .active.button:hover, +.ui.basic.active.button:hover { + background-color: colors.$transparentBlack; +} + +/* Vertical */ +.ui.basic.buttons .button:hover { + box-shadow: none; //$basicHoverBoxShadow inset; +} + +.ui.basic.buttons .button:active { + box-shadow: none; //$basicDownBoxShadow inset; +} + +.ui.basic.buttons .active.button { + box-shadow: none !important; //$basicActiveBoxShadow !important; +} + +/* Standard Basic Inverted */ +.ui.basic.inverted.buttons .button, +.ui.basic.inverted.button { + background-color: transparent !important; + color: colors.$offWhite !important; + box-shadow: $basicInvertedBoxShadow !important; +} + +.ui.basic.inverted.buttons .button:hover, +.ui.basic.inverted.button:hover { + color: colors.$white !important; + box-shadow: $basicInvertedHoverBoxShadow !important; +} + +.ui.basic.inverted.buttons .button:focus, +.ui.basic.inverted.button:focus { + color: colors.$white !important; + box-shadow: $basicInvertedFocusBoxShadow !important; +} + +.ui.basic.inverted.buttons .button:active, +.ui.basic.inverted.button:active { + background-color: colors.$transparentWhite !important; + color: colors.$white !important; + box-shadow: $basicInvertedDownBoxShadow !important; +} + +.ui.basic.inverted.buttons .active.button, +.ui.basic.inverted.active.button { + background-color: colors.$transparentWhite; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; + box-shadow: $basicInvertedActiveBoxShadow; +} + +.ui.basic.inverted.buttons .active.button:hover, +.ui.basic.inverted.active.button:hover { + background-color: colors.$strongTransparentWhite; + box-shadow: $basicInvertedHoverBoxShadow !important; +} + +/* Basic Group */ +.ui.basic.buttons .button { + border-left: $basicGroupBorder; + box-shadow: none; +} + +.ui.basic.vertical.buttons .button { + border-left: none; +} + +.ui.basic.vertical.buttons .button { + border-left-width: 0px; + border-top: $basicGroupBorder; +} + +.ui.basic.vertical.buttons .button:first-child { + border-top-width: 0px; +} + +/*-------------- + Labeled Icon + ---------------*/ + +.ui.labeled.icon.buttons .button, +.ui.labeled.icon.button { + position: relative; + padding-left: $labeledIconPadding !important; + padding-right: $horizontalPadding !important; +} + +/* Left Labeled */ +.ui.labeled.icon.buttons>.button>.icon, +.ui.labeled.icon.button>.icon { + position: absolute; + height: 100%; + line-height: 1; + border-radius: 0px; + border-top-left-radius: inherit; + border-bottom-left-radius: inherit; + text-align: center; + + margin: $labeledIconMargin; + width: $labeledIconWidth; + background-color: $labeledIconBackgroundColor; + color: $labeledIconColor; + box-shadow: $labeledIconLeftShadow; +} + +/* Left Labeled */ +.ui.labeled.icon.buttons>.button>.icon, +.ui.labeled.icon.button>.icon { + top: 0em; + left: 0em; +} + +/* Right Labeled */ +.ui[class*="right labeled"].icon.button { + padding-right: $labeledIconPadding !important; + padding-left: $horizontalPadding !important; +} + +.ui[class*="right labeled"].icon.button>.icon { + left: auto; + right: 0em; + border-radius: 0px; + border-top-right-radius: inherit; + border-bottom-right-radius: inherit; + box-shadow: $labeledIconRightShadow; +} + +.ui.labeled.icon.buttons>.button>.icon:before, +.ui.labeled.icon.button>.icon:before, +.ui.labeled.icon.buttons>.button>.icon:after, +.ui.labeled.icon.button>.icon:after { + display: block; + position: absolute; + width: 100%; + top: 50%; + text-align: center; + transform: translateY(-50%); +} + +.ui.labeled.icon.buttons .button>.icon { + border-radius: 0em; +} + +.ui.labeled.icon.buttons .button:first-child>.icon { + border-top-left-radius: $borderRadius; + border-bottom-left-radius: $borderRadius; +} + +.ui.labeled.icon.buttons .button:last-child>.icon { + border-top-right-radius: $borderRadius; + border-bottom-right-radius: $borderRadius; +} + +.ui.vertical.labeled.icon.buttons .button:first-child>.icon { + border-radius: 0em; + border-top-left-radius: $borderRadius; +} + +.ui.vertical.labeled.icon.buttons .button:last-child>.icon { + border-radius: 0em; + border-bottom-left-radius: $borderRadius; +} + +/* Fluid Labeled */ +.ui.fluid[class*="left labeled"].icon.button, +.ui.fluid[class*="right labeled"].icon.button { + padding-left: $horizontalPadding !important; + padding-right: $horizontalPadding !important; +} + +/*-------------- + Toggle + ---------------*/ + +/* Toggle (Modifies active state to give affordances) */ +.ui.toggle.buttons .active.button, +.ui.buttons .button.toggle.active, +.ui.button.toggle.active { + background-color: colors.$positiveColor !important; + box-shadow: none !important; + text-shadow: $invertedTextShadow; + color: $invertedTextColor !important; +} + +.ui.button.toggle.active:hover { + background-color: colors.$positiveColorHover !important; + text-shadow: $invertedTextShadow; + color: $invertedTextColor !important; +} + +/*-------------- + Circular + ---------------*/ + +.ui.circular.button { + border-radius: 10em; +} + +.ui.circular.button>.icon { + width: 1em; + vertical-align: baseline; +} + +/*------------------- + Or Buttons + --------------------*/ + +.ui.buttons .or { + position: relative; + width: $orGap; + height: $orHeight; + z-index: $orZIndex; +} + +.ui.buttons .or:before { + position: absolute; + text-align: center; + border-radius: variables.$circularRadius; + + content: $orText; + top: 50%; + left: 50%; + background-color: $orBackgroundColor; + text-shadow: $orTextShadow; + + margin-top: $orVerticalOffset; + margin-left: $orHorizontalOffset; + + width: $orCircleSize; + height: $orCircleSize; + + line-height: $orLineHeight; + color: $orTextColor; + + font-style: $orTextStyle; + font-weight: $orTextWeight; + + box-shadow: $orBoxShadow; +} + +.ui.buttons .or[data-text]:before { + content: attr(data-text); +} + +/* Fluid Or */ +.ui.fluid.buttons .or { + width: 0em !important; +} + +.ui.fluid.buttons .or:after { + display: none; +} + +/*------------------- + Attached + --------------------*/ + +/* Singular */ +.ui.attached.button { + position: relative; + display: block; + margin: 0em; + border-radius: 0em; + box-shadow: $attachedBoxShadow !important; +} + +/* Top / Bottom */ +.ui.attached.top.button { + border-radius: $borderRadius $borderRadius 0em 0em; +} + +.ui.attached.bottom.button { + border-radius: 0em 0em $borderRadius $borderRadius; +} + +/* Left / Right */ +.ui.left.attached.button { + display: inline-block; + border-left: none; + text-align: right; + + padding-right: $attachedHorizontalPadding; + border-radius: $borderRadius 0em 0em $borderRadius; +} + +.ui.right.attached.button { + display: inline-block; + text-align: left; + padding-left: $attachedHorizontalPadding; + border-radius: 0em $borderRadius $borderRadius 0em; +} + +/* Plural */ +.ui.attached.buttons { + position: relative; + display: flex; + border-radius: 0em; + width: auto !important; + z-index: $attachedZIndex; + margin-left: $attachedOffset; + margin-right: $attachedOffset; +} + +.ui.attached.buttons .button { + margin: 0em; +} + +.ui.attached.buttons .button:first-child { + border-radius: 0em; +} + +.ui.attached.buttons .button:last-child { + border-radius: 0em; +} + +/* Top / Bottom */ +.ui[class*="top attached"].buttons { + margin-bottom: $attachedOffset; + border-radius: $borderRadius $borderRadius 0em 0em; +} + +.ui[class*="top attached"].buttons .button:first-child { + border-radius: $borderRadius 0em 0em 0em; +} + +.ui[class*="top attached"].buttons .button:last-child { + border-radius: 0em $borderRadius 0em 0em; +} + +.ui[class*="bottom attached"].buttons { + margin-top: $attachedOffset; + border-radius: 0em 0em $borderRadius $borderRadius; +} + +.ui[class*="bottom attached"].buttons .button:first-child { + border-radius: 0em 0em 0em $borderRadius; +} + +.ui[class*="bottom attached"].buttons .button:last-child { + border-radius: 0em 0em $borderRadius 0em; +} + +/* Left / Right */ +.ui[class*="left attached"].buttons { + display: inline-flex; + margin-right: 0em; + margin-left: $attachedOffset; + border-radius: 0em $borderRadius $borderRadius 0em; +} + +.ui[class*="left attached"].buttons .button:first-child { + margin-left: $attachedOffset; + border-radius: 0em $borderRadius 0em 0em; +} + +.ui[class*="left attached"].buttons .button:last-child { + margin-left: $attachedOffset; + border-radius: 0em 0em $borderRadius 0em; +} + +.ui[class*="right attached"].buttons { + display: inline-flex; + margin-left: 0em; + margin-right: $attachedOffset; + border-radius: $borderRadius 0em 0em $borderRadius; +} + +.ui[class*="right attached"].buttons .button:first-child { + margin-left: $attachedOffset; + border-radius: $borderRadius 0em 0em 0em; +} + +.ui[class*="right attached"].buttons .button:last-child { + margin-left: $attachedOffset; + border-radius: 0em 0em 0em $borderRadius; +} + +/*------------------- + Fluid + --------------------*/ + +.ui.fluid.buttons, +.ui.fluid.button { + width: 100%; +} + +.ui.fluid.button, +.ui.is-style-fluid.button { + display: block; +} + +.ui.two.buttons { + width: 100%; +} + +.ui.two.buttons>.button { + width: 50%; +} + +.ui.three.buttons { + width: 100%; +} + +.ui.three.buttons>.button { + width: 33.333%; +} + +.ui.four.buttons { + width: 100%; +} + +.ui.four.buttons>.button { + width: 25%; +} + +.ui.five.buttons { + width: 100%; +} + +.ui.five.buttons>.button { + width: 20%; +} + +.ui.six.buttons { + width: 100%; +} + +.ui.six.buttons>.button { + width: 16.666%; +} + +.ui.seven.buttons { + width: 100%; +} + +.ui.seven.buttons>.button { + width: 14.285%; +} + +.ui.eight.buttons { + width: 100%; +} + +.ui.eight.buttons>.button { + width: 12.5%; +} + +.ui.nine.buttons { + width: 100%; +} + +.ui.nine.buttons>.button { + width: 11.11%; +} + +.ui.ten.buttons { + width: 100%; +} + +.ui.ten.buttons>.button { + width: 10%; +} + +.ui.eleven.buttons { + width: 100%; +} + +.ui.eleven.buttons>.button { + width: 9.09%; +} + +.ui.twelve.buttons { + width: 100%; +} + +.ui.twelve.buttons>.button { + width: 8.3333%; +} + +/* Fluid Vertical Buttons */ +.ui.fluid.vertical.buttons, +.ui.fluid.vertical.buttons>.button { + display: flex; + width: auto; +} + +.ui.two.vertical.buttons>.button { + height: 50%; +} + +.ui.three.vertical.buttons>.button { + height: 33.333%; +} + +.ui.four.vertical.buttons>.button { + height: 25%; +} + +.ui.five.vertical.buttons>.button { + height: 20%; +} + +.ui.six.vertical.buttons>.button { + height: 16.666%; +} + +.ui.seven.vertical.buttons>.button { + height: 14.285%; +} + +.ui.eight.vertical.buttons>.button { + height: 12.5%; +} + +.ui.nine.vertical.buttons>.button { + height: 11.11%; +} + +.ui.ten.vertical.buttons>.button { + height: 10%; +} + +.ui.eleven.vertical.buttons>.button { + height: 9.09%; +} + +.ui.twelve.vertical.buttons>.button { + height: 8.3333%; +} + +/*------------------- + Colors + --------------------*/ + +/*--- Black ---*/ +.ui.black.buttons .button, +.ui.black.button { + background-color: colors.$black; + color: $blackTextColor; + text-shadow: $blackTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.black.button { + box-shadow: $coloredBoxShadow; +} + +.ui.black.buttons .button:hover, +.ui.black.button:hover { + background-color: colors.$blackHover; + color: $blackTextColor; + text-shadow: $blackTextShadow; +} + +.ui.black.buttons .button:focus, +.ui.black.button:focus { + background-color: colors.$blackFocus; + color: $blackTextColor; + text-shadow: $blackTextShadow; +} + +.ui.black.buttons .button:active, +.ui.black.button:active { + background-color: colors.$blackDown; + color: $blackTextColor; + text-shadow: $blackTextShadow; +} + +.ui.black.buttons .active.button, +.ui.black.buttons .active.button:active, +.ui.black.active.button, +.ui.black.button .active.button:active { + background-color: colors.$blackActive; + color: $blackTextColor; + text-shadow: $blackTextShadow; +} + +/* Basic */ +.ui.basic.black.buttons .button, +.ui.basic.black.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$black inset !important; + color: colors.$black !important; +} + +.ui.basic.black.buttons .button:hover, +.ui.basic.black.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blackHover inset !important; + color: colors.$blackHover !important; +} + +.ui.basic.black.buttons .button:focus, +.ui.basic.black.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blackFocus inset !important; + color: colors.$blackHover !important; +} + +.ui.basic.black.buttons .active.button, +.ui.basic.black.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blackActive inset !important; + color: colors.$blackDown !important; +} + +.ui.basic.black.buttons .button:active, +.ui.basic.black.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blackDown inset !important; + color: colors.$blackDown !important; +} + +.ui.buttons:not(.vertical)>.basic.black.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.black.buttons .button, +.ui.inverted.black.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$solidBorderColor inset !important; + color: $invertedTextColor; +} + +.ui.inverted.black.buttons .button:hover, +.ui.inverted.black.button:hover, +.ui.inverted.black.buttons .button:focus, +.ui.inverted.black.button:focus, +.ui.inverted.black.buttons .button.active, +.ui.inverted.black.button.active, +.ui.inverted.black.buttons .button:active, +.ui.inverted.black.button:active { + box-shadow: none !important; + color: $lightBlackTextColor; +} + +.ui.inverted.black.buttons .button:hover, +.ui.inverted.black.button:hover { + background-color: colors.$lightBlackHover; +} + +.ui.inverted.black.buttons .button:focus, +.ui.inverted.black.button:focus { + background-color: colors.$lightBlackFocus; +} + +.ui.inverted.black.buttons .active.button, +.ui.inverted.black.active.button { + background-color: colors.$lightBlackActive; +} + +.ui.inverted.black.buttons .button:active, +.ui.inverted.black.button:active { + background-color: colors.$lightBlackDown; +} + +/* Inverted Basic */ +.ui.inverted.black.basic.buttons .button, +.ui.inverted.black.buttons .basic.button, +.ui.inverted.black.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.black.basic.buttons .button:hover, +.ui.inverted.black.buttons .basic.button:hover, +.ui.inverted.black.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlackHover inset !important; + color: colors.$white !important; +} + +.ui.inverted.black.basic.buttons .button:focus, +.ui.inverted.black.basic.buttons .button:focus, +.ui.inverted.black.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlackFocus inset !important; + color: colors.$lightBlack !important; +} + +.ui.inverted.black.basic.buttons .active.button, +.ui.inverted.black.buttons .basic.active.button, +.ui.inverted.black.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlackActive inset !important; + color: colors.$white !important; +} + +.ui.inverted.black.basic.buttons .button:active, +.ui.inverted.black.buttons .basic.button:active, +.ui.inverted.black.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlackDown inset !important; + color: colors.$white !important; +} + +/*--- Grey ---*/ +.ui.grey.buttons .button, +.ui.grey.button { + background-color: colors.$grey; + color: $greyTextColor; + text-shadow: $greyTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.grey.button { + box-shadow: $coloredBoxShadow; +} + +.ui.grey.buttons .button:hover, +.ui.grey.button:hover { + background-color: colors.$greyHover; + color: $greyTextColor; + text-shadow: $greyTextShadow; +} + +.ui.grey.buttons .button:focus, +.ui.grey.button:focus { + background-color: colors.$greyFocus; + color: $greyTextColor; + text-shadow: $greyTextShadow; +} + +.ui.grey.buttons .button:active, +.ui.grey.button:active { + background-color: colors.$greyDown; + color: $greyTextColor; + text-shadow: $greyTextShadow; +} + +.ui.grey.buttons .active.button, +.ui.grey.buttons .active.button:active, +.ui.grey.active.button, +.ui.grey.button .active.button:active { + background-color: colors.$greyActive; + color: $greyTextColor; + text-shadow: $greyTextShadow; +} + +/* Basic */ +.ui.basic.grey.buttons .button, +.ui.basic.grey.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$grey inset !important; + color: colors.$grey !important; +} + +.ui.basic.grey.buttons .button:hover, +.ui.basic.grey.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greyHover inset !important; + color: colors.$greyHover !important; +} + +.ui.basic.grey.buttons .button:focus, +.ui.basic.grey.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greyFocus inset !important; + color: colors.$greyHover !important; +} + +.ui.basic.grey.buttons .active.button, +.ui.basic.grey.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greyActive inset !important; + color: colors.$greyDown !important; +} + +.ui.basic.grey.buttons .button:active, +.ui.basic.grey.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greyDown inset !important; + color: colors.$greyDown !important; +} + +.ui.buttons:not(.vertical)>.basic.grey.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.grey.buttons .button, +.ui.inverted.grey.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$solidBorderColor inset !important; + color: $invertedTextColor; +} + +.ui.inverted.grey.buttons .button:hover, +.ui.inverted.grey.button:hover, +.ui.inverted.grey.buttons .button:focus, +.ui.inverted.grey.button:focus, +.ui.inverted.grey.buttons .button.active, +.ui.inverted.grey.button.active, +.ui.inverted.grey.buttons .button:active, +.ui.inverted.grey.button:active { + box-shadow: none !important; + color: $lightGreyTextColor; +} + +.ui.inverted.grey.buttons .button:hover, +.ui.inverted.grey.button:hover { + background-color: colors.$lightGreyHover; +} + +.ui.inverted.grey.buttons .button:focus, +.ui.inverted.grey.button:focus { + background-color: colors.$lightGreyFocus; +} + +.ui.inverted.grey.buttons .active.button, +.ui.inverted.grey.active.button { + background-color: colors.$lightGreyActive; +} + +.ui.inverted.grey.buttons .button:active, +.ui.inverted.grey.button:active { + background-color: colors.$lightGreyDown; +} + +/* Inverted Basic */ +.ui.inverted.grey.basic.buttons .button, +.ui.inverted.grey.buttons .basic.button, +.ui.inverted.grey.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.grey.basic.buttons .button:hover, +.ui.inverted.grey.buttons .basic.button:hover, +.ui.inverted.grey.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreyHover inset !important; + color: colors.$white !important; +} + +.ui.inverted.grey.basic.buttons .button:focus, +.ui.inverted.grey.basic.buttons .button:focus, +.ui.inverted.grey.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreyFocus inset !important; + color: colors.$lightGrey !important; +} + +.ui.inverted.grey.basic.buttons .active.button, +.ui.inverted.grey.buttons .basic.active.button, +.ui.inverted.grey.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreyActive inset !important; + color: colors.$white !important; +} + +.ui.inverted.grey.basic.buttons .button:active, +.ui.inverted.grey.buttons .basic.button:active, +.ui.inverted.grey.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreyDown inset !important; + color: colors.$white !important; +} + +/*--- Brown ---*/ +.ui.brown.buttons .button, +.ui.brown.button { + background-color: colors.$brown; + color: $brownTextColor; + text-shadow: $brownTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.brown.button { + box-shadow: $coloredBoxShadow; +} + +.ui.brown.buttons .button:hover, +.ui.brown.button:hover { + background-color: colors.$brownHover; + color: $brownTextColor; + text-shadow: $brownTextShadow; +} + +.ui.brown.buttons .button:focus, +.ui.brown.button:focus { + background-color: colors.$brownFocus; + color: $brownTextColor; + text-shadow: $brownTextShadow; +} + +.ui.brown.buttons .button:active, +.ui.brown.button:active { + background-color: colors.$brownDown; + color: $brownTextColor; + text-shadow: $brownTextShadow; +} + +.ui.brown.buttons .active.button, +.ui.brown.buttons .active.button:active, +.ui.brown.active.button, +.ui.brown.button .active.button:active { + background-color: colors.$brownActive; + color: $brownTextColor; + text-shadow: $brownTextShadow; +} + +/* Basic */ +.ui.basic.brown.buttons .button, +.ui.basic.brown.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$brown inset !important; + color: colors.$brown !important; +} + +.ui.basic.brown.buttons .button:hover, +.ui.basic.brown.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$brownHover inset !important; + color: colors.$brownHover !important; +} + +.ui.basic.brown.buttons .button:focus, +.ui.basic.brown.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$brownFocus inset !important; + color: colors.$brownHover !important; +} + +.ui.basic.brown.buttons .active.button, +.ui.basic.brown.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$brownActive inset !important; + color: colors.$brownDown !important; +} + +.ui.basic.brown.buttons .button:active, +.ui.basic.brown.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$brownDown inset !important; + color: colors.$brownDown !important; +} + +.ui.buttons:not(.vertical)>.basic.brown.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.brown.buttons .button, +.ui.inverted.brown.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBrown inset !important; + color: colors.$lightBrown; +} + +.ui.inverted.brown.buttons .button:hover, +.ui.inverted.brown.button:hover, +.ui.inverted.brown.buttons .button:focus, +.ui.inverted.brown.button:focus, +.ui.inverted.brown.buttons .button.active, +.ui.inverted.brown.button.active, +.ui.inverted.brown.buttons .button:active, +.ui.inverted.brown.button:active { + box-shadow: none !important; + color: $lightBrownTextColor; +} + +.ui.inverted.brown.buttons .button:hover, +.ui.inverted.brown.button:hover { + background-color: colors.$lightBrownHover; +} + +.ui.inverted.brown.buttons .button:focus, +.ui.inverted.brown.button:focus { + background-color: colors.$lightBrownFocus; +} + +.ui.inverted.brown.buttons .active.button, +.ui.inverted.brown.active.button { + background-color: colors.$lightBrownActive; +} + +.ui.inverted.brown.buttons .button:active, +.ui.inverted.brown.button:active { + background-color: colors.$lightBrownDown; +} + +/* Inverted Basic */ +.ui.inverted.brown.basic.buttons .button, +.ui.inverted.brown.buttons .basic.button, +.ui.inverted.brown.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.brown.basic.buttons .button:hover, +.ui.inverted.brown.buttons .basic.button:hover, +.ui.inverted.brown.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBrownHover inset !important; + color: colors.$lightBrown !important; +} + +.ui.inverted.brown.basic.buttons .button:focus, +.ui.inverted.brown.basic.buttons .button:focus, +.ui.inverted.brown.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBrownFocus inset !important; + color: colors.$lightBrown !important; +} + +.ui.inverted.brown.basic.buttons .active.button, +.ui.inverted.brown.buttons .basic.active.button, +.ui.inverted.brown.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBrownActive inset !important; + color: colors.$lightBrown !important; +} + +.ui.inverted.brown.basic.buttons .button:active, +.ui.inverted.brown.buttons .basic.button:active, +.ui.inverted.brown.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBrownDown inset !important; + color: colors.$lightBrown !important; +} + +/*--- Blue ---*/ +.ui.blue.buttons .button, +.ui.blue.button { + background-color: colors.$blue; + color: $blueTextColor; + text-shadow: $blueTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.blue.button { + box-shadow: $coloredBoxShadow; +} + +.ui.blue.buttons .button:hover, +.ui.blue.button:hover { + background-color: colors.$blueHover; + color: $blueTextColor; + text-shadow: $blueTextShadow; +} + +.ui.blue.buttons .button:focus, +.ui.blue.button:focus { + background-color: colors.$blueFocus; + color: $blueTextColor; + text-shadow: $blueTextShadow; +} + +.ui.blue.buttons .button:active, +.ui.blue.button:active { + background-color: colors.$blueDown; + color: $blueTextColor; + text-shadow: $blueTextShadow; +} + +.ui.blue.buttons .active.button, +.ui.blue.buttons .active.button:active, +.ui.blue.active.button, +.ui.blue.button .active.button:active { + background-color: colors.$blueActive; + color: $blueTextColor; + text-shadow: $blueTextShadow; +} + +/* Basic */ +.ui.basic.blue.buttons .button, +.ui.basic.blue.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$blue inset !important; + color: colors.$blue !important; +} + +.ui.basic.blue.buttons .button:hover, +.ui.basic.blue.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blueHover inset !important; + color: colors.$blueHover !important; +} + +.ui.basic.blue.buttons .button:focus, +.ui.basic.blue.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blueFocus inset !important; + color: colors.$blueHover !important; +} + +.ui.basic.blue.buttons .active.button, +.ui.basic.blue.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blueActive inset !important; + color: colors.$blueDown !important; +} + +.ui.basic.blue.buttons .button:active, +.ui.basic.blue.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$blueDown inset !important; + color: colors.$blueDown !important; +} + +.ui.buttons:not(.vertical)>.basic.blue.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.blue.buttons .button, +.ui.inverted.blue.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlue inset !important; + color: colors.$lightBlue; +} + +.ui.inverted.blue.buttons .button:hover, +.ui.inverted.blue.button:hover, +.ui.inverted.blue.buttons .button:focus, +.ui.inverted.blue.button:focus, +.ui.inverted.blue.buttons .button.active, +.ui.inverted.blue.button.active, +.ui.inverted.blue.buttons .button:active, +.ui.inverted.blue.button:active { + box-shadow: none !important; + color: $lightBlueTextColor; +} + +.ui.inverted.blue.buttons .button:hover, +.ui.inverted.blue.button:hover { + background-color: colors.$lightBlueHover; +} + +.ui.inverted.blue.buttons .button:focus, +.ui.inverted.blue.button:focus { + background-color: colors.$lightBlueFocus; +} + +.ui.inverted.blue.buttons .active.button, +.ui.inverted.blue.active.button { + background-color: colors.$lightBlueActive; +} + +.ui.inverted.blue.buttons .button:active, +.ui.inverted.blue.button:active { + background-color: colors.$lightBlueDown; +} + +/* Inverted Basic */ +.ui.inverted.blue.basic.buttons .button, +.ui.inverted.blue.buttons .basic.button, +.ui.inverted.blue.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.blue.basic.buttons .button:hover, +.ui.inverted.blue.buttons .basic.button:hover, +.ui.inverted.blue.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlueHover inset !important; + color: colors.$lightBlue !important; +} + +.ui.inverted.blue.basic.buttons .button:focus, +.ui.inverted.blue.basic.buttons .button:focus, +.ui.inverted.blue.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlueFocus inset !important; + color: colors.$lightBlue !important; +} + +.ui.inverted.blue.basic.buttons .active.button, +.ui.inverted.blue.buttons .basic.active.button, +.ui.inverted.blue.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlueActive inset !important; + color: colors.$lightBlue !important; +} + +.ui.inverted.blue.basic.buttons .button:active, +.ui.inverted.blue.buttons .basic.button:active, +.ui.inverted.blue.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightBlueDown inset !important; + color: colors.$lightBlue !important; +} + +/*--- Green ---*/ +.ui.green.buttons .button, +.ui.green.button { + background-color: colors.$green; + color: $greenTextColor; + text-shadow: $greenTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.green.button { + box-shadow: $coloredBoxShadow; +} + +.ui.green.buttons .button:hover, +.ui.green.button:hover { + background-color: colors.$greenHover; + color: $greenTextColor; + text-shadow: $greenTextShadow; +} + +.ui.green.buttons .button:focus, +.ui.green.button:focus { + background-color: colors.$greenFocus; + color: $greenTextColor; + text-shadow: $greenTextShadow; +} + +.ui.green.buttons .button:active, +.ui.green.button:active { + background-color: colors.$greenDown; + color: $greenTextColor; + text-shadow: $greenTextShadow; +} + +.ui.green.buttons .active.button, +.ui.green.buttons .active.button:active, +.ui.green.active.button, +.ui.green.button .active.button:active { + background-color: colors.$greenActive; + color: $greenTextColor; + text-shadow: $greenTextShadow; +} + +/* Basic */ +.ui.basic.green.buttons .button, +.ui.basic.green.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$green inset !important; + color: colors.$green !important; +} + +.ui.basic.green.buttons .button:hover, +.ui.basic.green.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greenHover inset !important; + color: colors.$greenHover !important; +} + +.ui.basic.green.buttons .button:focus, +.ui.basic.green.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greenFocus inset !important; + color: colors.$greenHover !important; +} + +.ui.basic.green.buttons .active.button, +.ui.basic.green.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greenActive inset !important; + color: colors.$greenDown !important; +} + +.ui.basic.green.buttons .button:active, +.ui.basic.green.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$greenDown inset !important; + color: colors.$greenDown !important; +} + +.ui.buttons:not(.vertical)>.basic.green.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.green.buttons .button, +.ui.inverted.green.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreen inset !important; + color: colors.$lightGreen; +} + +.ui.inverted.green.buttons .button:hover, +.ui.inverted.green.button:hover, +.ui.inverted.green.buttons .button:focus, +.ui.inverted.green.button:focus, +.ui.inverted.green.buttons .button.active, +.ui.inverted.green.button.active, +.ui.inverted.green.buttons .button:active, +.ui.inverted.green.button:active { + box-shadow: none !important; + color: $greenTextColor; +} + +.ui.inverted.green.buttons .button:hover, +.ui.inverted.green.button:hover { + background-color: colors.$lightGreenHover; +} + +.ui.inverted.green.buttons .button:focus, +.ui.inverted.green.button:focus { + background-color: colors.$lightGreenFocus; +} + +.ui.inverted.green.buttons .active.button, +.ui.inverted.green.active.button { + background-color: colors.$lightGreenActive; +} + +.ui.inverted.green.buttons .button:active, +.ui.inverted.green.button:active { + background-color: colors.$lightGreenDown; +} + +/* Inverted Basic */ +.ui.inverted.green.basic.buttons .button, +.ui.inverted.green.buttons .basic.button, +.ui.inverted.green.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.green.basic.buttons .button:hover, +.ui.inverted.green.buttons .basic.button:hover, +.ui.inverted.green.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreenHover inset !important; + color: colors.$lightGreen !important; +} + +.ui.inverted.green.basic.buttons .button:focus, +.ui.inverted.green.basic.buttons .button:focus, +.ui.inverted.green.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreenFocus inset !important; + color: colors.$lightGreen !important; +} + +.ui.inverted.green.basic.buttons .active.button, +.ui.inverted.green.buttons .basic.active.button, +.ui.inverted.green.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreenActive inset !important; + color: colors.$lightGreen !important; +} + +.ui.inverted.green.basic.buttons .button:active, +.ui.inverted.green.buttons .basic.button:active, +.ui.inverted.green.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightGreenDown inset !important; + color: colors.$lightGreen !important; +} + +/*--- Orange ---*/ +.ui.orange.buttons .button, +.ui.orange.button { + background-color: colors.$orange; + color: $orangeTextColor; + text-shadow: $orangeTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.orange.button { + box-shadow: $coloredBoxShadow; +} + +.ui.orange.buttons .button:hover, +.ui.orange.button:hover { + background-color: colors.$orangeHover; + color: $orangeTextColor; + text-shadow: $orangeTextShadow; +} + +.ui.orange.buttons .button:focus, +.ui.orange.button:focus { + background-color: colors.$orangeFocus; + color: $orangeTextColor; + text-shadow: $orangeTextShadow; +} + +.ui.orange.buttons .button:active, +.ui.orange.button:active { + background-color: colors.$orangeDown; + color: $orangeTextColor; + text-shadow: $orangeTextShadow; +} + +.ui.orange.buttons .active.button, +.ui.orange.buttons .active.button:active, +.ui.orange.active.button, +.ui.orange.button .active.button:active { + background-color: colors.$orangeActive; + color: $orangeTextColor; + text-shadow: $orangeTextShadow; +} + +/* Basic */ +.ui.basic.orange.buttons .button, +.ui.basic.orange.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$orange inset !important; + color: colors.$orange !important; +} + +.ui.basic.orange.buttons .button:hover, +.ui.basic.orange.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$orangeHover inset !important; + color: colors.$orangeHover !important; +} + +.ui.basic.orange.buttons .button:focus, +.ui.basic.orange.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$orangeFocus inset !important; + color: colors.$orangeHover !important; +} + +.ui.basic.orange.buttons .active.button, +.ui.basic.orange.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$orangeActive inset !important; + color: colors.$orangeDown !important; +} + +.ui.basic.orange.buttons .button:active, +.ui.basic.orange.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$orangeDown inset !important; + color: colors.$orangeDown !important; +} + +.ui.buttons:not(.vertical)>.basic.orange.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.orange.buttons .button, +.ui.inverted.orange.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOrange inset !important; + color: colors.$lightOrange; +} + +.ui.inverted.orange.buttons .button:hover, +.ui.inverted.orange.button:hover, +.ui.inverted.orange.buttons .button:focus, +.ui.inverted.orange.button:focus, +.ui.inverted.orange.buttons .button.active, +.ui.inverted.orange.button.active, +.ui.inverted.orange.buttons .button:active, +.ui.inverted.orange.button:active { + box-shadow: none !important; + color: $lightOrangeTextColor; +} + +.ui.inverted.orange.buttons .button:hover, +.ui.inverted.orange.button:hover { + background-color: colors.$lightOrangeHover; +} + +.ui.inverted.orange.buttons .button:focus, +.ui.inverted.orange.button:focus { + background-color: colors.$lightOrangeFocus; +} + +.ui.inverted.orange.buttons .active.button, +.ui.inverted.orange.active.button { + background-color: colors.$lightOrangeActive; +} + +.ui.inverted.orange.buttons .button:active, +.ui.inverted.orange.button:active { + background-color: colors.$lightOrangeDown; +} + +/* Inverted Basic */ +.ui.inverted.orange.basic.buttons .button, +.ui.inverted.orange.buttons .basic.button, +.ui.inverted.orange.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.orange.basic.buttons .button:hover, +.ui.inverted.orange.buttons .basic.button:hover, +.ui.inverted.orange.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOrangeHover inset !important; + color: colors.$lightOrange !important; +} + +.ui.inverted.orange.basic.buttons .button:focus, +.ui.inverted.orange.basic.buttons .button:focus, +.ui.inverted.orange.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOrangeFocus inset !important; + color: colors.$lightOrange !important; +} + +.ui.inverted.orange.basic.buttons .active.button, +.ui.inverted.orange.buttons .basic.active.button, +.ui.inverted.orange.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOrangeActive inset !important; + color: colors.$lightOrange !important; +} + +.ui.inverted.orange.basic.buttons .button:active, +.ui.inverted.orange.buttons .basic.button:active, +.ui.inverted.orange.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOrangeDown inset !important; + color: colors.$lightOrange !important; +} + +/*--- Pink ---*/ +.ui.pink.buttons .button, +.ui.pink.button { + background-color: colors.$pink; + color: $pinkTextColor; + text-shadow: $pinkTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.pink.button { + box-shadow: $coloredBoxShadow; +} + +.ui.pink.buttons .button:hover, +.ui.pink.button:hover { + background-color: colors.$pinkHover; + color: $pinkTextColor; + text-shadow: $pinkTextShadow; +} + +.ui.pink.buttons .button:focus, +.ui.pink.button:focus { + background-color: colors.$pinkFocus; + color: $pinkTextColor; + text-shadow: $pinkTextShadow; +} + +.ui.pink.buttons .button:active, +.ui.pink.button:active { + background-color: colors.$pinkDown; + color: $pinkTextColor; + text-shadow: $pinkTextShadow; +} + +.ui.pink.buttons .active.button, +.ui.pink.buttons .active.button:active, +.ui.pink.active.button, +.ui.pink.button .active.button:active { + background-color: colors.$pinkActive; + color: $pinkTextColor; + text-shadow: $pinkTextShadow; +} + +/* Basic */ +.ui.basic.pink.buttons .button, +.ui.basic.pink.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$pink inset !important; + color: colors.$pink !important; +} + +.ui.basic.pink.buttons .button:hover, +.ui.basic.pink.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$pinkHover inset !important; + color: colors.$pinkHover !important; +} + +.ui.basic.pink.buttons .button:focus, +.ui.basic.pink.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$pinkFocus inset !important; + color: colors.$pinkHover !important; +} + +.ui.basic.pink.buttons .active.button, +.ui.basic.pink.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$pinkActive inset !important; + color: colors.$pinkDown !important; +} + +.ui.basic.pink.buttons .button:active, +.ui.basic.pink.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$pinkDown inset !important; + color: colors.$pinkDown !important; +} + +.ui.buttons:not(.vertical)>.basic.pink.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.pink.buttons .button, +.ui.inverted.pink.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPink inset !important; + color: colors.$lightPink; +} + +.ui.inverted.pink.buttons .button:hover, +.ui.inverted.pink.button:hover, +.ui.inverted.pink.buttons .button:focus, +.ui.inverted.pink.button:focus, +.ui.inverted.pink.buttons .button.active, +.ui.inverted.pink.button.active, +.ui.inverted.pink.buttons .button:active, +.ui.inverted.pink.button:active { + box-shadow: none !important; + color: $lightPinkTextColor; +} + +.ui.inverted.pink.buttons .button:hover, +.ui.inverted.pink.button:hover { + background-color: colors.$lightPinkHover; +} + +.ui.inverted.pink.buttons .button:focus, +.ui.inverted.pink.button:focus { + background-color: colors.$lightPinkFocus; +} + +.ui.inverted.pink.buttons .active.button, +.ui.inverted.pink.active.button { + background-color: colors.$lightPinkActive; +} + +.ui.inverted.pink.buttons .button:active, +.ui.inverted.pink.button:active { + background-color: colors.$lightPinkDown; +} + +/* Inverted Basic */ +.ui.inverted.pink.basic.buttons .button, +.ui.inverted.pink.buttons .basic.button, +.ui.inverted.pink.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.pink.basic.buttons .button:hover, +.ui.inverted.pink.buttons .basic.button:hover, +.ui.inverted.pink.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPinkHover inset !important; + color: colors.$lightPink !important; +} + +.ui.inverted.pink.basic.buttons .button:focus, +.ui.inverted.pink.basic.buttons .button:focus, +.ui.inverted.pink.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPinkFocus inset !important; + color: colors.$lightPink !important; +} + +.ui.inverted.pink.basic.buttons .active.button, +.ui.inverted.pink.buttons .basic.active.button, +.ui.inverted.pink.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPinkActive inset !important; + color: colors.$lightPink !important; +} + +.ui.inverted.pink.basic.buttons .button:active, +.ui.inverted.pink.buttons .basic.button:active, +.ui.inverted.pink.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPinkDown inset !important; + color: colors.$lightPink !important; +} + +/*--- Violet ---*/ +.ui.violet.buttons .button, +.ui.violet.button { + background-color: colors.$violet; + color: $violetTextColor; + text-shadow: $violetTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.violet.button { + box-shadow: $coloredBoxShadow; +} + +.ui.violet.buttons .button:hover, +.ui.violet.button:hover { + background-color: colors.$violetHover; + color: $violetTextColor; + text-shadow: $violetTextShadow; +} + +.ui.violet.buttons .button:focus, +.ui.violet.button:focus { + background-color: colors.$violetFocus; + color: $violetTextColor; + text-shadow: $violetTextShadow; +} + +.ui.violet.buttons .button:active, +.ui.violet.button:active { + background-color: colors.$violetDown; + color: $violetTextColor; + text-shadow: $violetTextShadow; +} + +.ui.violet.buttons .active.button, +.ui.violet.buttons .active.button:active, +.ui.violet.active.button, +.ui.violet.button .active.button:active { + background-color: colors.$violetActive; + color: $violetTextColor; + text-shadow: $violetTextShadow; +} + +/* Basic */ +.ui.basic.violet.buttons .button, +.ui.basic.violet.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$violet inset !important; + color: colors.$violet !important; +} + +.ui.basic.violet.buttons .button:hover, +.ui.basic.violet.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$violetHover inset !important; + color: colors.$violetHover !important; +} + +.ui.basic.violet.buttons .button:focus, +.ui.basic.violet.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$violetFocus inset !important; + color: colors.$violetHover !important; +} + +.ui.basic.violet.buttons .active.button, +.ui.basic.violet.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$violetActive inset !important; + color: colors.$violetDown !important; +} + +.ui.basic.violet.buttons .button:active, +.ui.basic.violet.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$violetDown inset !important; + color: colors.$violetDown !important; +} + +.ui.buttons:not(.vertical)>.basic.violet.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.violet.buttons .button, +.ui.inverted.violet.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightViolet inset !important; + color: colors.$lightViolet; +} + +.ui.inverted.violet.buttons .button:hover, +.ui.inverted.violet.button:hover, +.ui.inverted.violet.buttons .button:focus, +.ui.inverted.violet.button:focus, +.ui.inverted.violet.buttons .button.active, +.ui.inverted.violet.button.active, +.ui.inverted.violet.buttons .button:active, +.ui.inverted.violet.button:active { + box-shadow: none !important; + color: $lightVioletTextColor; +} + +.ui.inverted.violet.buttons .button:hover, +.ui.inverted.violet.button:hover { + background-color: colors.$lightVioletHover; +} + +.ui.inverted.violet.buttons .button:focus, +.ui.inverted.violet.button:focus { + background-color: colors.$lightVioletFocus; +} + +.ui.inverted.violet.buttons .active.button, +.ui.inverted.violet.active.button { + background-color: colors.$lightVioletActive; +} + +.ui.inverted.violet.buttons .button:active, +.ui.inverted.violet.button:active { + background-color: colors.$lightVioletDown; +} + +/* Inverted Basic */ +.ui.inverted.violet.basic.buttons .button, +.ui.inverted.violet.buttons .basic.button, +.ui.inverted.violet.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.violet.basic.buttons .button:hover, +.ui.inverted.violet.buttons .basic.button:hover, +.ui.inverted.violet.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightVioletHover inset !important; + color: colors.$lightViolet !important; +} + +.ui.inverted.violet.basic.buttons .button:focus, +.ui.inverted.violet.basic.buttons .button:focus, +.ui.inverted.violet.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightVioletFocus inset !important; + color: colors.$lightViolet !important; +} + +.ui.inverted.violet.basic.buttons .active.button, +.ui.inverted.violet.buttons .basic.active.button, +.ui.inverted.violet.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightVioletActive inset !important; + color: colors.$lightViolet !important; +} + +.ui.inverted.violet.basic.buttons .button:active, +.ui.inverted.violet.buttons .basic.button:active, +.ui.inverted.violet.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightVioletDown inset !important; + color: colors.$lightViolet !important; +} + +/*--- Purple ---*/ +.ui.purple.buttons .button, +.ui.purple.button { + background-color: colors.$purple; + color: $purpleTextColor; + text-shadow: $purpleTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.purple.button { + box-shadow: $coloredBoxShadow; +} + +.ui.purple.buttons .button:hover, +.ui.purple.button:hover { + background-color: colors.$purpleHover; + color: $purpleTextColor; + text-shadow: $purpleTextShadow; +} + +.ui.purple.buttons .button:focus, +.ui.purple.button:focus { + background-color: colors.$purpleFocus; + color: $purpleTextColor; + text-shadow: $purpleTextShadow; +} + +.ui.purple.buttons .button:active, +.ui.purple.button:active { + background-color: colors.$purpleDown; + color: $purpleTextColor; + text-shadow: $purpleTextShadow; +} + +.ui.purple.buttons .active.button, +.ui.purple.buttons .active.button:active, +.ui.purple.active.button, +.ui.purple.button .active.button:active { + background-color: colors.$purpleActive; + color: $purpleTextColor; + text-shadow: $purpleTextShadow; +} + +/* Basic */ +.ui.basic.purple.buttons .button, +.ui.basic.purple.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$purple inset !important; + color: colors.$purple !important; +} + +.ui.basic.purple.buttons .button:hover, +.ui.basic.purple.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$purpleHover inset !important; + color: colors.$purpleHover !important; +} + +.ui.basic.purple.buttons .button:focus, +.ui.basic.purple.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$purpleFocus inset !important; + color: colors.$purpleHover !important; +} + +.ui.basic.purple.buttons .active.button, +.ui.basic.purple.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$purpleActive inset !important; + color: colors.$purpleDown !important; +} + +.ui.basic.purple.buttons .button:active, +.ui.basic.purple.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$purpleDown inset !important; + color: colors.$purpleDown !important; +} + +.ui.buttons:not(.vertical)>.basic.purple.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.purple.buttons .button, +.ui.inverted.purple.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPurple inset !important; + color: colors.$lightPurple; +} + +.ui.inverted.purple.buttons .button:hover, +.ui.inverted.purple.button:hover, +.ui.inverted.purple.buttons .button:focus, +.ui.inverted.purple.button:focus, +.ui.inverted.purple.buttons .button.active, +.ui.inverted.purple.button.active, +.ui.inverted.purple.buttons .button:active, +.ui.inverted.purple.button:active { + box-shadow: none !important; + color: $lightPurpleTextColor; +} + +.ui.inverted.purple.buttons .button:hover, +.ui.inverted.purple.button:hover { + background-color: colors.$lightPurpleHover; +} + +.ui.inverted.purple.buttons .button:focus, +.ui.inverted.purple.button:focus { + background-color: colors.$lightPurpleFocus; +} + +.ui.inverted.purple.buttons .active.button, +.ui.inverted.purple.active.button { + background-color: colors.$lightPurpleActive; +} + +.ui.inverted.purple.buttons .button:active, +.ui.inverted.purple.button:active { + background-color: colors.$lightPurpleDown; +} + +/* Inverted Basic */ +.ui.inverted.purple.basic.buttons .button, +.ui.inverted.purple.buttons .basic.button, +.ui.inverted.purple.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.purple.basic.buttons .button:hover, +.ui.inverted.purple.buttons .basic.button:hover, +.ui.inverted.purple.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPurpleHover inset !important; + color: colors.$lightPurple !important; +} + +.ui.inverted.purple.basic.buttons .button:focus, +.ui.inverted.purple.basic.buttons .button:focus, +.ui.inverted.purple.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPurpleFocus inset !important; + color: colors.$lightPurple !important; +} + +.ui.inverted.purple.basic.buttons .active.button, +.ui.inverted.purple.buttons .basic.active.button, +.ui.inverted.purple.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPurpleActive inset !important; + color: colors.$lightPurple !important; +} + +.ui.inverted.purple.basic.buttons .button:active, +.ui.inverted.purple.buttons .basic.button:active, +.ui.inverted.purple.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPurpleDown inset !important; + color: colors.$lightPurple !important; +} + +/*--- Red ---*/ +.ui.red.buttons .button, +.ui.red.button { + background-color: colors.$red; + color: $redTextColor; + text-shadow: $redTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.red.button { + box-shadow: $coloredBoxShadow; +} + +.ui.red.buttons .button:hover, +.ui.red.button:hover { + background-color: colors.$redHover; + color: $redTextColor; + text-shadow: $redTextShadow; +} + +.ui.red.buttons .button:focus, +.ui.red.button:focus { + background-color: colors.$redFocus; + color: $redTextColor; + text-shadow: $redTextShadow; +} + +.ui.red.buttons .button:active, +.ui.red.button:active { + background-color: colors.$redDown; + color: $redTextColor; + text-shadow: $redTextShadow; +} + +.ui.red.buttons .active.button, +.ui.red.buttons .active.button:active, +.ui.red.active.button, +.ui.red.button .active.button:active { + background-color: colors.$redActive; + color: $redTextColor; + text-shadow: $redTextShadow; +} + +/* Basic */ +.ui.basic.red.buttons .button, +.ui.basic.red.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$red inset !important; + color: colors.$red !important; +} + +.ui.basic.red.buttons .button:hover, +.ui.basic.red.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$redHover inset !important; + color: colors.$redHover !important; +} + +.ui.basic.red.buttons .button:focus, +.ui.basic.red.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$redFocus inset !important; + color: colors.$redHover !important; +} + +.ui.basic.red.buttons .active.button, +.ui.basic.red.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$redActive inset !important; + color: colors.$redDown !important; +} + +.ui.basic.red.buttons .button:active, +.ui.basic.red.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$redDown inset !important; + color: colors.$redDown !important; +} + +.ui.buttons:not(.vertical)>.basic.red.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.red.buttons .button, +.ui.inverted.red.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightRed inset !important; + color: colors.$lightRed; +} + +.ui.inverted.red.buttons .button:hover, +.ui.inverted.red.button:hover, +.ui.inverted.red.buttons .button:focus, +.ui.inverted.red.button:focus, +.ui.inverted.red.buttons .button.active, +.ui.inverted.red.button.active, +.ui.inverted.red.buttons .button:active, +.ui.inverted.red.button:active { + box-shadow: none !important; + color: $lightRedTextColor; +} + +.ui.inverted.red.buttons .button:hover, +.ui.inverted.red.button:hover { + background-color: colors.$lightRedHover; +} + +.ui.inverted.red.buttons .button:focus, +.ui.inverted.red.button:focus { + background-color: colors.$lightRedFocus; +} + +.ui.inverted.red.buttons .active.button, +.ui.inverted.red.active.button { + background-color: colors.$lightRedActive; +} + +.ui.inverted.red.buttons .button:active, +.ui.inverted.red.button:active { + background-color: colors.$lightRedDown; +} + +/* Inverted Basic */ +.ui.inverted.red.basic.buttons .button, +.ui.inverted.red.buttons .basic.button, +.ui.inverted.red.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.red.basic.buttons .button:hover, +.ui.inverted.red.buttons .basic.button:hover, +.ui.inverted.red.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightRedHover inset !important; + color: colors.$lightRed !important; +} + +.ui.inverted.red.basic.buttons .button:focus, +.ui.inverted.red.basic.buttons .button:focus, +.ui.inverted.red.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightRedFocus inset !important; + color: colors.$lightRed !important; +} + +.ui.inverted.red.basic.buttons .active.button, +.ui.inverted.red.buttons .basic.active.button, +.ui.inverted.red.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightRedActive inset !important; + color: colors.$lightRed !important; +} + +.ui.inverted.red.basic.buttons .button:active, +.ui.inverted.red.buttons .basic.button:active, +.ui.inverted.red.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightRedDown inset !important; + color: colors.$lightRed !important; +} + +/*--- Teal ---*/ +.ui.teal.buttons .button, +.ui.teal.button { + background-color: colors.$teal; + color: $tealTextColor; + text-shadow: $tealTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.teal.button { + box-shadow: $coloredBoxShadow; +} + +.ui.teal.buttons .button:hover, +.ui.teal.button:hover { + background-color: colors.$tealHover; + color: $tealTextColor; + text-shadow: $tealTextShadow; +} + +.ui.teal.buttons .button:focus, +.ui.teal.button:focus { + background-color: colors.$tealFocus; + color: $tealTextColor; + text-shadow: $tealTextShadow; +} + +.ui.teal.buttons .button:active, +.ui.teal.button:active { + background-color: colors.$tealDown; + color: $tealTextColor; + text-shadow: $tealTextShadow; +} + +.ui.teal.buttons .active.button, +.ui.teal.buttons .active.button:active, +.ui.teal.active.button, +.ui.teal.button .active.button:active { + background-color: colors.$tealActive; + color: $tealTextColor; + text-shadow: $tealTextShadow; +} + +/* Basic */ +.ui.basic.teal.buttons .button, +.ui.basic.teal.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$teal inset !important; + color: colors.$teal !important; +} + +.ui.basic.teal.buttons .button:hover, +.ui.basic.teal.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$tealHover inset !important; + color: colors.$tealHover !important; +} + +.ui.basic.teal.buttons .button:focus, +.ui.basic.teal.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$tealFocus inset !important; + color: colors.$tealHover !important; +} + +.ui.basic.teal.buttons .active.button, +.ui.basic.teal.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$tealActive inset !important; + color: colors.$tealDown !important; +} + +.ui.basic.teal.buttons .button:active, +.ui.basic.teal.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$tealDown inset !important; + color: colors.$tealDown !important; +} + +.ui.buttons:not(.vertical)>.basic.teal.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.teal.buttons .button, +.ui.inverted.teal.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightTeal inset !important; + color: colors.$lightTeal; +} + +.ui.inverted.teal.buttons .button:hover, +.ui.inverted.teal.button:hover, +.ui.inverted.teal.buttons .button:focus, +.ui.inverted.teal.button:focus, +.ui.inverted.teal.buttons .button.active, +.ui.inverted.teal.button.active, +.ui.inverted.teal.buttons .button:active, +.ui.inverted.teal.button:active { + box-shadow: none !important; + color: $lightTealTextColor; +} + +.ui.inverted.teal.buttons .button:hover, +.ui.inverted.teal.button:hover { + background-color: colors.$lightTealHover; +} + +.ui.inverted.teal.buttons .button:focus, +.ui.inverted.teal.button:focus { + background-color: colors.$lightTealFocus; +} + +.ui.inverted.teal.buttons .active.button, +.ui.inverted.teal.active.button { + background-color: colors.$lightTealActive; +} + +.ui.inverted.teal.buttons .button:active, +.ui.inverted.teal.button:active { + background-color: colors.$lightTealDown; +} + +/* Inverted Basic */ +.ui.inverted.teal.basic.buttons .button, +.ui.inverted.teal.buttons .basic.button, +.ui.inverted.teal.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.teal.basic.buttons .button:hover, +.ui.inverted.teal.buttons .basic.button:hover, +.ui.inverted.teal.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightTealHover inset !important; + color: colors.$lightTeal !important; +} + +.ui.inverted.teal.basic.buttons .button:focus, +.ui.inverted.teal.basic.buttons .button:focus, +.ui.inverted.teal.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightTealFocus inset !important; + color: colors.$lightTeal !important; +} + +.ui.inverted.teal.basic.buttons .active.button, +.ui.inverted.teal.buttons .basic.active.button, +.ui.inverted.teal.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightTealActive inset !important; + color: colors.$lightTeal !important; +} + +.ui.inverted.teal.basic.buttons .button:active, +.ui.inverted.teal.buttons .basic.button:active, +.ui.inverted.teal.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightTealDown inset !important; + color: colors.$lightTeal !important; +} + +/*--- Olive ---*/ +.ui.olive.buttons .button, +.ui.olive.button { + background-color: colors.$olive; + color: $oliveTextColor; + text-shadow: $oliveTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.olive.button { + box-shadow: $coloredBoxShadow; +} + +.ui.olive.buttons .button:hover, +.ui.olive.button:hover { + background-color: colors.$oliveHover; + color: $oliveTextColor; + text-shadow: $oliveTextShadow; +} + +.ui.olive.buttons .button:focus, +.ui.olive.button:focus { + background-color: colors.$oliveFocus; + color: $oliveTextColor; + text-shadow: $oliveTextShadow; +} + +.ui.olive.buttons .button:active, +.ui.olive.button:active { + background-color: colors.$oliveDown; + color: $oliveTextColor; + text-shadow: $oliveTextShadow; +} + +.ui.olive.buttons .active.button, +.ui.olive.buttons .active.button:active, +.ui.olive.active.button, +.ui.olive.button .active.button:active { + background-color: colors.$oliveActive; + color: $oliveTextColor; + text-shadow: $oliveTextShadow; +} + +/* Basic */ +.ui.basic.olive.buttons .button, +.ui.basic.olive.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$olive inset !important; + color: colors.$olive !important; +} + +.ui.basic.olive.buttons .button:hover, +.ui.basic.olive.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$oliveHover inset !important; + color: colors.$oliveHover !important; +} + +.ui.basic.olive.buttons .button:focus, +.ui.basic.olive.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$oliveFocus inset !important; + color: colors.$oliveHover !important; +} + +.ui.basic.olive.buttons .active.button, +.ui.basic.olive.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$oliveActive inset !important; + color: colors.$oliveDown !important; +} + +.ui.basic.olive.buttons .button:active, +.ui.basic.olive.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$oliveDown inset !important; + color: colors.$oliveDown !important; +} + +.ui.buttons:not(.vertical)>.basic.olive.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.olive.buttons .button, +.ui.inverted.olive.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOlive inset !important; + color: colors.$lightOlive; +} + +.ui.inverted.olive.buttons .button:hover, +.ui.inverted.olive.button:hover, +.ui.inverted.olive.buttons .button:focus, +.ui.inverted.olive.button:focus, +.ui.inverted.olive.buttons .button.active, +.ui.inverted.olive.button.active, +.ui.inverted.olive.buttons .button:active, +.ui.inverted.olive.button:active { + box-shadow: none !important; + color: $lightOliveTextColor; +} + +.ui.inverted.olive.buttons .button:hover, +.ui.inverted.olive.button:hover { + background-color: colors.$lightOliveHover; +} + +.ui.inverted.olive.buttons .button:focus, +.ui.inverted.olive.button:focus { + background-color: colors.$lightOliveFocus; +} + +.ui.inverted.olive.buttons .active.button, +.ui.inverted.olive.active.button { + background-color: colors.$lightOliveActive; +} + +.ui.inverted.olive.buttons .button:active, +.ui.inverted.olive.button:active { + background-color: colors.$lightOliveDown; +} + +/* Inverted Basic */ +.ui.inverted.olive.basic.buttons .button, +.ui.inverted.olive.buttons .basic.button, +.ui.inverted.olive.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.olive.basic.buttons .button:hover, +.ui.inverted.olive.buttons .basic.button:hover, +.ui.inverted.olive.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOliveHover inset !important; + color: colors.$lightOlive !important; +} + +.ui.inverted.olive.basic.buttons .button:focus, +.ui.inverted.olive.basic.buttons .button:focus, +.ui.inverted.olive.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOliveFocus inset !important; + color: colors.$lightOlive !important; +} + +.ui.inverted.olive.basic.buttons .active.button, +.ui.inverted.olive.buttons .basic.active.button, +.ui.inverted.olive.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOliveActive inset !important; + color: colors.$lightOlive !important; +} + +.ui.inverted.olive.basic.buttons .button:active, +.ui.inverted.olive.buttons .basic.button:active, +.ui.inverted.olive.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightOliveDown inset !important; + color: colors.$lightOlive !important; +} + +/*--- Mustard ---*/ +.ui.mustard.buttons .button, +.ui.mustard.button { + background-color: colors.$mustard; + color: #fff; + text-shadow: $invertedTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.mustard.button { + box-shadow: $coloredBoxShadow; +} + +.ui.mustard.buttons .button:hover, +.ui.mustard.button:hover { + background-color: colors.$mustardHover; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.mustard.buttons .button:focus, +.ui.mustard.button:focus { + background-color: colors.$mustardFocus; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.mustard.buttons .button:active, +.ui.mustard.button:active { + background-color: colors.$mustardDown; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +.ui.mustard.buttons .active.button, +.ui.mustard.buttons .active.button:active, +.ui.mustard.active.button, +.ui.mustard.button .active.button:active { + background-color: colors.$mustardActive; + color: $invertedTextColor; + text-shadow: $invertedTextShadow; +} + +/* Basic */ +.ui.basic.mustard.buttons .button, +.ui.basic.mustard.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$mustard inset !important; + color: colors.$mustard !important; +} + +.ui.basic.mustard.buttons .button:hover, +.ui.basic.mustard.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$mustardHover inset !important; + color: colors.$mustardHover !important; +} + +.ui.basic.mustard.buttons .button:focus, +.ui.basic.mustard.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$mustardFocus inset !important; + color: colors.$mustardHover !important; +} + +.ui.basic.mustard.buttons .active.button, +.ui.basic.mustard.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$mustardFocus inset !important; + color: colors.$mustardDown !important; +} + +.ui.basic.mustard.buttons .button:active, +.ui.basic.mustard.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$mustardDown inset !important; + color: colors.$mustardDown !important; +} + +.ui.buttons:not(.vertical)>.basic.mustard.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.mustard.buttons .button, +.ui.inverted.mustard.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$mustard inset !important; + color: colors.$mustard; +} + +.ui.inverted.mustard.buttons .button:hover, +.ui.inverted.mustard.button:hover, +.ui.inverted.mustard.buttons .button:focus, +.ui.inverted.mustard.button:focus, +.ui.inverted.mustard.buttons .button.active, +.ui.inverted.mustard.button.active, +.ui.inverted.mustard.buttons .button:active, +.ui.inverted.mustard.button:active { + box-shadow: none !important; + color: $invertedTextColor; +} + +.ui.inverted.mustard.buttons .button:hover, +.ui.inverted.mustard.button:hover { + background-color: colors.$mustardHover; +} + +.ui.inverted.mustard.buttons .button:focus, +.ui.inverted.mustard.button:focus { + background-color: colors.$mustardFocus; +} + +.ui.inverted.mustard.buttons .active.button, +.ui.inverted.mustard.active.button { + background-color: colors.$mustardActive; +} + +.ui.inverted.mustard.buttons .button:active, +.ui.inverted.mustard.button:active { + background-color: colors.$mustardDown; +} + +/* Inverted Basic */ +.ui.inverted.mustard.basic.buttons .button, +.ui.inverted.mustard.buttons .basic.button, +.ui.inverted.mustard.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.mustard.basic.buttons .button:hover, +.ui.inverted.mustard.buttons .basic.button:hover, +.ui.inverted.mustard.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$mustardHover inset !important; + color: colors.$lightYellow !important; +} + +.ui.inverted.mustard.basic.buttons .button:focus, +.ui.inverted.mustard.basic.buttons .button:focus, +.ui.inverted.mustard.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$mustardFocus inset !important; + color: colors.$lightYellow !important; +} + +.ui.inverted.mustard.basic.buttons .active.button, +.ui.inverted.mustard.buttons .basic.active.button, +.ui.inverted.mustard.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$mustardActive inset !important; + color: colors.$lightYellow !important; +} + +.ui.inverted.mustard.basic.buttons .button:active, +.ui.inverted.mustard.buttons .basic.button:active, +.ui.inverted.mustard.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$mustardDown inset !important; + color: colors.$lightYellow !important; +} + +/*------------------- + Primary + --------------------*/ + +/*--- Standard ---*/ +.ui.primary.buttons .button, +.ui.primary.button { + background-color: colors.$primaryColor; + color: $primaryTextColor; + text-shadow: $primaryTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.primary.button { + box-shadow: $coloredBoxShadow; +} + +.ui.primary.buttons .button:hover, +.ui.primary.button:hover { + background-color: colors.$primaryColorHover; + color: $primaryTextColor; + text-shadow: $primaryTextShadow; +} + +.ui.primary.buttons .button:focus, +.ui.primary.button:focus { + background-color: colors.$primaryColorFocus; + color: $primaryTextColor; + text-shadow: $primaryTextShadow; +} + +.ui.primary.buttons .button:active, +.ui.primary.button:active { + background-color: colors.$primaryColorDown; + color: $primaryTextColor; + text-shadow: $primaryTextShadow; +} + +.ui.primary.buttons .active.button, +.ui.primary.buttons .active.button:active, +.ui.primary.active.button, +.ui.primary.button .active.button:active { + background-color: colors.$primaryColorActive; + color: $primaryTextColor; + text-shadow: $primaryTextShadow; +} + +/* Basic */ +.ui.basic.primary.buttons .button, +.ui.basic.primary.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$primaryColor inset !important; + color: colors.$primaryColor !important; +} + +.ui.basic.primary.buttons .button:hover, +.ui.basic.primary.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$primaryColorHover inset !important; + color: colors.$primaryColorHover !important; +} + +.ui.basic.primary.buttons .button:focus, +.ui.basic.primary.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$primaryColorFocus inset !important; + color: colors.$primaryColorHover !important; +} + +.ui.basic.primary.buttons .active.button, +.ui.basic.primary.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$primaryColorActive inset !important; + color: colors.$primaryColorDown !important; +} + +.ui.basic.primary.buttons .button:active, +.ui.basic.primary.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$primaryColorDown inset !important; + color: colors.$primaryColorDown !important; +} + +.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.primary.buttons .button, +.ui.inverted.primary.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPrimaryColor inset !important; + color: colors.$lightPrimaryColor; +} + +.ui.inverted.primary.buttons .button:hover, +.ui.inverted.primary.button:hover, +.ui.inverted.primary.buttons .button:focus, +.ui.inverted.primary.button:focus, +.ui.inverted.primary.buttons .button.active, +.ui.inverted.primary.button.active, +.ui.inverted.primary.buttons .button:active, +.ui.inverted.primary.button:active { + box-shadow: none !important; + color: $lightPrimaryTextColor; +} + +.ui.inverted.primary.buttons .button:hover, +.ui.inverted.primary.button:hover { + background-color: colors.$lightPrimaryColorHover; +} + +.ui.inverted.primary.buttons .button:focus, +.ui.inverted.primary.button:focus { + background-color: colors.$lightPrimaryColorFocus; +} + +.ui.inverted.primary.buttons .active.button, +.ui.inverted.primary.active.button { + background-color: colors.$lightPrimaryColorActive; +} + +.ui.inverted.primary.buttons .button:active, +.ui.inverted.primary.button:active { + background-color: colors.$lightPrimaryColorDown; +} + +/* Inverted Basic */ +.ui.inverted.primary.basic.buttons .button, +.ui.inverted.primary.buttons .basic.button, +.ui.inverted.primary.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.primary.basic.buttons .button:hover, +.ui.inverted.primary.buttons .basic.button:hover, +.ui.inverted.primary.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPrimaryColorHover inset !important; + color: colors.$lightPrimaryColor !important; +} + +.ui.inverted.primary.basic.buttons .button:focus, +.ui.inverted.primary.basic.buttons .button:focus, +.ui.inverted.primary.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPrimaryColorFocus inset !important; + color: colors.$lightPrimaryColor !important; +} + +.ui.inverted.primary.basic.buttons .active.button, +.ui.inverted.primary.buttons .basic.active.button, +.ui.inverted.primary.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPrimaryColorActive inset !important; + color: colors.$lightPrimaryColor !important; +} + +.ui.inverted.primary.basic.buttons .button:active, +.ui.inverted.primary.buttons .basic.button:active, +.ui.inverted.primary.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightPrimaryColorDown inset !important; + color: colors.$lightPrimaryColor !important; +} + +/*------------------- + Secondary + --------------------*/ + +/* Standard */ +.ui.secondary.buttons .button, +.ui.secondary.button { + background-color: colors.$secondaryColor; + color: $secondaryTextColor; + text-shadow: $secondaryTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.secondary.button { + box-shadow: $coloredBoxShadow; +} + +.ui.secondary.buttons .button:hover, +.ui.secondary.button:hover { + background-color: colors.$secondaryColorHover; + color: $secondaryTextColor; + text-shadow: $secondaryTextShadow; +} + +.ui.secondary.buttons .button:focus, +.ui.secondary.button:focus { + background-color: colors.$secondaryColorFocus; + color: $secondaryTextColor; + text-shadow: $secondaryTextShadow; +} + +.ui.secondary.buttons .button:active, +.ui.secondary.button:active { + background-color: colors.$secondaryColorDown; + color: $secondaryTextColor; + text-shadow: $secondaryTextShadow; +} + +.ui.secondary.buttons .active.button, +.ui.secondary.buttons .active.button:active, +.ui.secondary.active.button, +.ui.secondary.button .active.button:active { + background-color: colors.$secondaryColorActive; + color: $secondaryTextColor; + text-shadow: $secondaryTextShadow; +} + +/* Basic */ +.ui.basic.secondary.buttons .button, +.ui.basic.secondary.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$secondaryColor inset !important; + color: colors.$secondaryColor !important; +} + +.ui.basic.secondary.buttons .button:hover, +.ui.basic.secondary.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$secondaryColorHover inset !important; + color: colors.$secondaryColorHover !important; +} + +.ui.basic.secondary.buttons .button:focus, +.ui.basic.secondary.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$secondaryColorFocus inset !important; + color: colors.$secondaryColorHover !important; +} + +.ui.basic.secondary.buttons .active.button, +.ui.basic.secondary.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$secondaryColorActive inset !important; + color: colors.$secondaryColorDown !important; +} + +.ui.basic.secondary.buttons .button:active, +.ui.basic.secondary.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$secondaryColorDown inset !important; + color: colors.$secondaryColorDown !important; +} + +.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/* Inverted */ +.ui.inverted.secondary.buttons .button, +.ui.inverted.secondary.button { + background-color: transparent; + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightSecondaryColor inset !important; + color: colors.$lightSecondaryColor; +} + +.ui.inverted.secondary.buttons .button:hover, +.ui.inverted.secondary.button:hover, +.ui.inverted.secondary.buttons .button:focus, +.ui.inverted.secondary.button:focus, +.ui.inverted.secondary.buttons .button.active, +.ui.inverted.secondary.button.active, +.ui.inverted.secondary.buttons .button:active, +.ui.inverted.secondary.button:active { + box-shadow: none !important; + color: $lightSecondaryTextColor; +} + +.ui.inverted.secondary.buttons .button:hover, +.ui.inverted.secondary.button:hover { + background-color: colors.$lightSecondaryColorHover; +} + +.ui.inverted.secondary.buttons .button:focus, +.ui.inverted.secondary.button:focus { + background-color: colors.$lightSecondaryColorFocus; +} + +.ui.inverted.secondary.buttons .active.button, +.ui.inverted.secondary.active.button { + background-color: colors.$lightSecondaryColorActive; +} + +.ui.inverted.secondary.buttons .button:active, +.ui.inverted.secondary.button:active { + background-color: colors.$lightSecondaryColorDown; +} + +/* Inverted Basic */ +.ui.inverted.secondary.basic.buttons .button, +.ui.inverted.secondary.buttons .basic.button, +.ui.inverted.secondary.basic.button { + background-color: transparent; + box-shadow: $basicInvertedBoxShadow !important; + color: colors.$white !important; +} + +.ui.inverted.secondary.basic.buttons .button:hover, +.ui.inverted.secondary.buttons .basic.button:hover, +.ui.inverted.secondary.basic.button:hover { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightSecondaryColorHover inset !important; + color: colors.$lightSecondaryColor !important; +} + +.ui.inverted.secondary.basic.buttons .button:focus, +.ui.inverted.secondary.basic.buttons .button:focus, +.ui.inverted.secondary.basic.button:focus { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightSecondaryColorFocus inset !important; + color: colors.$lightSecondaryColor !important; +} + +.ui.inverted.secondary.basic.buttons .active.button, +.ui.inverted.secondary.buttons .basic.active.button, +.ui.inverted.secondary.basic.active.button { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightSecondaryColorActive inset !important; + color: colors.$lightSecondaryColor !important; +} + +.ui.inverted.secondary.basic.buttons .button:active, +.ui.inverted.secondary.buttons .basic.button:active, +.ui.inverted.secondary.basic.button:active { + box-shadow: 0px 0px 0px $invertedBorderSize colors.$lightSecondaryColorDown inset !important; + color: colors.$lightSecondaryColor !important; +} + +/*--------------- + Positive + ----------------*/ + +/* Standard */ +.ui.positive.buttons .button, +.ui.positive.button { + background-color: colors.$positiveColor; + color: $positiveTextColor; + text-shadow: $positiveTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.positive.button { + box-shadow: $coloredBoxShadow; +} + +.ui.positive.buttons .button:hover, +.ui.positive.button:hover { + background-color: colors.$positiveColorHover; + color: $positiveTextColor; + text-shadow: $positiveTextShadow; +} + +.ui.positive.buttons .button:focus, +.ui.positive.button:focus { + background-color: colors.$positiveColorFocus; + color: $positiveTextColor; + text-shadow: $positiveTextShadow; +} + +.ui.positive.buttons .button:active, +.ui.positive.button:active { + background-color: colors.$positiveColorDown; + color: $positiveTextColor; + text-shadow: $positiveTextShadow; +} + +.ui.positive.buttons .active.button, +.ui.positive.buttons .active.button:active, +.ui.positive.active.button, +.ui.positive.button .active.button:active { + background-color: colors.$positiveColorActive; + color: $positiveTextColor; + text-shadow: $positiveTextShadow; +} + +/* Basic */ +.ui.basic.positive.buttons .button, +.ui.basic.positive.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$positiveColor inset !important; + color: colors.$positiveColor !important; +} + +.ui.basic.positive.buttons .button:hover, +.ui.basic.positive.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$positiveColorHover inset !important; + color: colors.$positiveColorHover !important; +} + +.ui.basic.positive.buttons .button:focus, +.ui.basic.positive.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$positiveColorFocus inset !important; + color: colors.$positiveColorHover !important; +} + +.ui.basic.positive.buttons .active.button, +.ui.basic.positive.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$positiveColorActive inset !important; + color: colors.$positiveColorDown !important; +} + +.ui.basic.positive.buttons .button:active, +.ui.basic.positive.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$positiveColorDown inset !important; + color: colors.$positiveColorDown !important; +} + +.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/*--------------- + Negative + ----------------*/ + +/* Standard */ +.ui.negative.buttons .button, +.ui.negative.button { + background-color: colors.$negativeColor; + color: $negativeTextColor; + text-shadow: $negativeTextShadow; + background-image: $coloredBackgroundImage; +} + +.ui.negative.button { + box-shadow: $coloredBoxShadow; +} + +.ui.negative.buttons .button:hover, +.ui.negative.button:hover { + background-color: colors.$negativeColorHover; + color: $negativeTextColor; + text-shadow: $negativeTextShadow; +} + +.ui.negative.buttons .button:focus, +.ui.negative.button:focus { + background-color: colors.$negativeColorFocus; + color: $negativeTextColor; + text-shadow: $negativeTextShadow; +} + +.ui.negative.buttons .button:active, +.ui.negative.button:active { + background-color: colors.$negativeColorDown; + color: $negativeTextColor; + text-shadow: $negativeTextShadow; +} + +.ui.negative.buttons .active.button, +.ui.negative.buttons .active.button:active, +.ui.negative.active.button, +.ui.negative.button .active.button:active { + background-color: colors.$negativeColorActive; + color: $negativeTextColor; + text-shadow: $negativeTextShadow; +} + +/* Basic */ +.ui.basic.negative.buttons .button, +.ui.basic.negative.button { + box-shadow: 0px 0px 0px $basicBorderSize colors.$negativeColor inset !important; + color: colors.$negativeColor !important; +} + +.ui.basic.negative.buttons .button:hover, +.ui.basic.negative.button:hover { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$negativeColorHover inset !important; + color: colors.$negativeColorHover !important; +} + +.ui.basic.negative.buttons .button:focus, +.ui.basic.negative.button:focus { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$negativeColorFocus inset !important; + color: colors.$negativeColorHover !important; +} + +.ui.basic.negative.buttons .active.button, +.ui.basic.negative.active.button { + background: transparent !important; + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$negativeColorActive inset !important; + color: colors.$negativeColorDown !important; +} + +.ui.basic.negative.buttons .button:active, +.ui.basic.negative.button:active { + box-shadow: 0px 0px 0px $basicColoredBorderSize colors.$negativeColorDown inset !important; + color: colors.$negativeColorDown !important; +} + +.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child) { + margin-left: -$basicColoredBorderSize; +} + +/******************************* + Groups + *******************************/ + +.ui.buttons { + display: inline-flex; + flex-direction: row; + font-size: 0em; + vertical-align: baseline; + margin: $verticalMargin $horizontalMargin 0em 0em; +} + +.ui.buttons:not(.basic):not(.inverted) { + box-shadow: $groupBoxShadow; +} + +/* Clearfix */ +.ui.buttons:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +/* Standard Group */ +.ui.buttons .button { + flex: 1 0 auto; + margin: 0em; + border-radius: 0em; + margin: $groupButtonOffset; +} + +.ui.buttons>.ui.button:not(.basic):not(.inverted), +.ui.buttons:not(.basic):not(.inverted)>.button { + box-shadow: $groupButtonBoxShadow; +} + +.ui.buttons .button:first-child { + border-left: none; + margin-left: 0em; + border-top-left-radius: $borderRadius; + border-bottom-left-radius: $borderRadius; +} + +.ui.buttons .button:last-child { + border-top-right-radius: $borderRadius; + border-bottom-right-radius: $borderRadius; +} + +/* Vertical Style */ +.ui.vertical.buttons { + display: inline-flex; + flex-direction: column; +} + +.ui.vertical.buttons .button { + display: block; + float: none; + width: 100%; + margin: $verticalGroupOffset; + box-shadow: $verticalBoxShadow; + border-radius: 0em; +} + +.ui.vertical.buttons .button:first-child { + border-top-left-radius: $borderRadius; + border-top-right-radius: $borderRadius; +} + +.ui.vertical.buttons .button:last-child { + margin-bottom: 0px; + border-bottom-left-radius: $borderRadius; + border-bottom-right-radius: $borderRadius; +} + +.ui.vertical.buttons .button:only-child { + border-radius: $borderRadius; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/checkbox.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/checkbox.scss new file mode 100644 index 00000000..b40722ec --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/checkbox.scss @@ -0,0 +1,815 @@ +/*! + * # Semantic UI - Checkbox + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use 'sass:math'; +@use 'colors'; + + +/******************************* + Checkbox + *******************************/ + +$checkboxSize: 17px; +$checkboxColor: colors.$textColor; +$checkboxLineHeight: $checkboxSize; + + +/* Label */ +$labelDistance: 1.85714em; +/* 26px $ 14/em */ + +/* Checkbox */ +$checkboxBackground: colors.$white; +$checkboxBorder: 1px solid colors.$solidBorderColor; +$checkboxBorderRadius: variables.$u3px; +$checkboxTransition: border variables.$defaultDuration variables.$defaultEasing, +opacity variables.$defaultDuration variables.$defaultEasing, +transform variables.$defaultDuration variables.$defaultEasing, +box-shadow variables.$defaultDuration variables.$defaultEasing; + +/* Checkmark */ +$checkboxCheckFontSize: 14px; +$checkboxCheckTop: 0px; +$checkboxCheckLeft: 0px; +$checkboxCheckSize: $checkboxSize; + +/* Label */ +$labelFontSize: variables.$absoluteMedium; //$relativeMedium; +$labelColor: colors.$textColor; +$labelTransition: color variables.$defaultDuration variables.$defaultEasing; + +/*------------------- + States + --------------------*/ + +/* Hover */ +$checkboxHoverBackground: $checkboxBackground; +$checkboxHoverBorderColor: colors.$selectedBorderColor; +$labelHoverColor: colors.$hoveredTextColor; + +/* Pressed */ +$checkboxPressedBackground: colors.$offWhite; +$checkboxPressedBorderColor: colors.$selectedBorderColor; +$checkboxPressedColor: colors.$selectedTextColor; +$labelPressedColor: colors.$selectedTextColor; + +/* Focus */ +$checkboxFocusBackground: colors.$white; +$checkboxFocusBorderColor: colors.$focusedFormMutedBorderColor; +$checkboxFocusCheckColor: colors.$selectedTextColor; +$labelFocusColor: colors.$selectedTextColor; + +/* Active */ +$labelActiveColor: colors.$selectedTextColor; +$checkboxActiveBackground: colors.$white; +$checkboxActiveBorderColor: colors.$selectedBorderColor; +$checkboxActiveCheckColor: colors.$selectedTextColor; +$checkboxActiveCheckOpacity: 1; + +/* Active Focus */ +$checkboxActiveFocusBackground: colors.$white; +$checkboxActiveFocusBorderColor: $checkboxFocusBorderColor; +$checkboxActiveFocusCheckColor: colors.$selectedTextColor; + +/* Indeterminate */ +$checkboxIndeterminateBackground: $checkboxActiveBackground; +$checkboxIndeterminateBorderColor: $checkboxActiveBorderColor; +$checkboxIndeterminateCheckOpacity: 1; +$checkboxIndeterminateCheckColor: $checkboxActiveCheckColor; + +/* Disabled */ +$disabledCheckboxOpacity: 0.5; +$disabledCheckboxLabelColor: rgba(0, 0, 0, 1); + +/*------------------- + Types + --------------------*/ + +/* Radio */ +/* Uses px to avoid rounding issues with circles */ + +$radioSize: 15px; +$radioTop: 1px; +$radioLeft: 0px; +$radioLabelDistance: $labelDistance; + +$bulletTop: 1px; +$bulletLeft: 0px; +$bulletScale: math.div(7, 15); +/* 7px as unitless value from radio size */ +$bulletColor: colors.$textColor; +$bulletRadius: variables.$circularRadius; + +$radioFocusBackground: $checkboxFocusBackground; +$radioFocusBulletColor: $checkboxFocusCheckColor; + +$radioActiveBackground: $checkboxActiveBackground; +$radioActiveBulletColor: $checkboxActiveCheckColor; + +$radioActiveFocusBackground: $checkboxActiveFocusBackground; +$radioActiveFocusBulletColor: $checkboxActiveFocusCheckColor; + +/* Slider & Toggle Handle */ +$handleBackground: colors.$white variables.$subtleGradient; +$handleBoxShadow: variables.$subtleShadow, +0px 0px 0px 1px colors.$borderColor inset; + +/* Slider */ +$sliderHandleSize: 1.5rem; +$sliderLineWidth: 3.5rem; +$sliderTransitionDuration: 0.3s; + +$sliderHandleOffset: (1rem - $sliderHandleSize) * 0.5; +$sliderHandleTransition: left $sliderTransitionDuration variables.$defaultEasing; + +$sliderWidth: $sliderLineWidth; +$sliderHeight: ($sliderHandleSize + $sliderHandleOffset); + +$sliderLineHeight: variables.$u3px; +$sliderLineVerticalOffset: 0.4rem; +$sliderLineColor: colors.$transparentBlack; +$sliderLineRadius: variables.$circularRadius; +$sliderLineTransition: background $sliderTransitionDuration variables.$defaultEasing; + +$sliderTravelDistance: $sliderLineWidth - $sliderHandleSize; + +$sliderLabelDistance: $sliderLineWidth+1rem; +$sliderOffLabelColor: colors.$unselectedTextColor; + +$sliderLabelLineHeight: 1rem; + +/* Slider States */ +$sliderHoverLaneBackground: colors.$veryStrongTransparentBlack; +$sliderHoverLabelColor: colors.$hoveredTextColor; + +$sliderOnLineColor: colors.$lightBlack; +$sliderOnLabelColor: colors.$selectedTextColor; + +$sliderOnFocusLineColor: colors.$lightBlackFocus; +$sliderOnFocusLabelColor: $sliderOnLabelColor; + + + +/* Toggle */ +$toggleLaneWidth: 3.5rem; +$toggleHandleSize: 1.5rem; +$toggleTransitionDuration: 0.2s; + +$toggleWidth: $toggleLaneWidth; +$toggleHeight: $toggleHandleSize; + +$toggleHandleRadius: variables.$circularRadius; +$toggleHandleOffset: 0rem; +$toggleHandleTransition: background $sliderTransitionDuration variables.$defaultEasing, +left $sliderTransitionDuration variables.$defaultEasing; + +$toggleLaneBackground: colors.$transparentBlack; +$toggleLaneHeight: $toggleHandleSize; +$toggleLaneBoxShadow: none; +$toggleLaneVerticalOffset: 0rem; +$toggleOffOffset: -0.05rem; +$toggleOnOffset: ($toggleLaneWidth - $toggleHandleSize)+0.15rem; + +$toggleLabelDistance: $toggleLaneWidth+1rem; +$toggleLabelLineHeight: 1.5rem; +$toggleLabelOffset: 0.15em; + + +$toggleFocusColor: colors.$veryStrongTransparentBlack; +$toggleHoverColor: $toggleFocusColor; + +$toggleOffLabelColor: $checkboxColor; +$toggleOffHandleBoxShadow: $handleBoxShadow; + +$toggleOnLabelColor: colors.$selectedTextColor; +$toggleOnLaneColor: colors.$primaryColor; + +$toggleOnHandleBoxShadow: $handleBoxShadow; + +$toggleOnFocusLaneColor: colors.$primaryColorFocus; +$toggleOnFocusLabelColor: $toggleOnLabelColor; + + + +/*------------------- + Variations + --------------------*/ + +@font-face { + font-family: "Checkbox"; + src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"); +} + +/******************************* + Checkbox + *******************************/ + +/*-------------- + Content + ---------------*/ + +.ui.checkbox { + position: relative; + display: inline-block; + backface-visibility: hidden; + outline: none; + vertical-align: baseline; + font-style: normal; + + min-height: $checkboxSize; + font-size: variables.$medium; + line-height: $checkboxLineHeight; + min-width: $checkboxSize; +} + +/* HTML Checkbox */ +.ui.checkbox input[type="checkbox"], +.ui.checkbox input[type="radio"] { + cursor: pointer; + position: absolute; + top: 0px; + left: 0px; + opacity: 0 !important; + outline: none; + z-index: 3; + width: $checkboxSize; + height: $checkboxSize; +} + +/*-------------- + Box + ---------------*/ + +.ui.checkbox .box, +.ui.checkbox label { + cursor: auto; + position: relative; + display: block; + padding-left: $labelDistance; + outline: none; + font-size: $labelFontSize; +} + +.ui.checkbox .box:before, +.ui.checkbox label:before { + position: absolute; + top: 0px; + left: 0px; + + width: $checkboxSize; + height: $checkboxSize; + content: ""; + + background: $checkboxBackground; + border-radius: $checkboxBorderRadius; + + transition: $checkboxTransition; + border: $checkboxBorder; +} + +/*-------------- + Checkmark + ---------------*/ + +.ui.checkbox .box:after, +.ui.checkbox label:after { + position: absolute; + font-size: $checkboxCheckFontSize; + top: $checkboxCheckTop; + left: $checkboxCheckLeft; + width: $checkboxCheckSize; + height: $checkboxCheckSize; + text-align: center; + + opacity: 0; + color: $checkboxColor; + transition: $checkboxTransition; + // + font-family: "Checkbox"; +} + +/* Checked */ +.ui.checkbox input:checked~.box:after, +.ui.checkbox input:checked~label:after { + content: "\e800"; +} + +/* Indeterminate */ +.ui.checkbox input:indeterminate~.box:after, +.ui.checkbox input:indeterminate~label:after { + font-size: 12px; + content: "\e801"; +} + +/* UTF Reference + .check:before { content: '\e800'; } + .dash:before { content: '\e801'; } + .plus:before { content: '\e802'; } + */ + +/*-------------- + Label + ---------------*/ + +/* Inside */ +.ui.checkbox label, +.ui.checkbox+label { + color: $labelColor; + transition: $labelTransition; +} + +/* Outside */ +.ui.checkbox+label { + vertical-align: middle; +} + +/******************************* + States + *******************************/ + +/*-------------- + Hover + ---------------*/ + +.ui.checkbox .box:hover::before, +.ui.checkbox label:hover::before { + background: $checkboxHoverBackground; + border-color: $checkboxHoverBorderColor; +} + +.ui.checkbox label:hover, +.ui.checkbox+label:hover { + color: $labelHoverColor; +} + +/*-------------- + Down + ---------------*/ + +.ui.checkbox .box:active::before, +.ui.checkbox label:active::before { + background: $checkboxPressedBackground; + border-color: $checkboxPressedBorderColor; +} + +.ui.checkbox .box:active::after, +.ui.checkbox label:active::after { + color: $checkboxPressedColor; +} + +.ui.checkbox input:active~label { + color: $labelPressedColor; +} + +/*-------------- + Focus + ---------------*/ + +.ui.checkbox input:focus~.box:before, +.ui.checkbox input:focus~label:before { + background: $checkboxFocusBackground; + border-color: $checkboxFocusBorderColor; +} + +.ui.checkbox input:focus~.box:after, +.ui.checkbox input:focus~label:after { + color: $checkboxFocusCheckColor; +} + +.ui.checkbox input:focus~label { + color: $labelFocusColor; +} + +/*-------------- + Active + ---------------*/ + +.ui.checkbox input:checked~.box:before, +.ui.checkbox input:checked~label:before { + background: $checkboxActiveBackground; + border-color: $checkboxActiveBorderColor; +} + +.ui.checkbox input:checked~.box:after, +.ui.checkbox input:checked~label:after { + opacity: $checkboxActiveCheckOpacity; + color: $checkboxActiveCheckColor; +} + +/*-------------- + Indeterminate + ---------------*/ + +.ui.checkbox input:not([type="radio"]):indeterminate~.box:before, +.ui.checkbox input:not([type="radio"]):indeterminate~label:before { + background: $checkboxIndeterminateBackground; + border-color: $checkboxIndeterminateBorderColor; +} + +.ui.checkbox input:not([type="radio"]):indeterminate~.box:after, +.ui.checkbox input:not([type="radio"]):indeterminate~label:after { + opacity: $checkboxIndeterminateCheckOpacity; + color: $checkboxIndeterminateCheckColor; +} + +/*-------------- + Active Focus + ---------------*/ + +.ui.checkbox input:not([type="radio"]):indeterminate:focus~.box:before, +.ui.checkbox input:not([type="radio"]):indeterminate:focus~label:before, +.ui.checkbox input:checked:focus~.box:before, +.ui.checkbox input:checked:focus~label:before { + background: $checkboxActiveFocusBackground; + border-color: $checkboxActiveFocusBorderColor; +} + +.ui.checkbox input:not([type="radio"]):indeterminate:focus~.box:after, +.ui.checkbox input:not([type="radio"]):indeterminate:focus~label:after, +.ui.checkbox input:checked:focus~.box:after, +.ui.checkbox input:checked:focus~label:after { + color: $checkboxActiveFocusCheckColor; +} + +/*-------------- + Read-Only + ---------------*/ + +.ui.read-only.checkbox, +.ui.read-only.checkbox label { + cursor: default; +} + +/*-------------- + Disabled + ---------------*/ + +.ui.disabled.checkbox .box:after, +.ui.disabled.checkbox label, +.ui.checkbox input[disabled]~.box:after, +.ui.checkbox input[disabled]~label { + cursor: default !important; + opacity: $disabledCheckboxOpacity; + color: $disabledCheckboxLabelColor; +} + +/*-------------- + Hidden + ---------------*/ + +/* Initialized checkbox moves input below element + to prevent manually triggering */ +.ui.checkbox input.hidden { + z-index: -1; +} + +/* Selectable Label */ +.ui.checkbox input.hidden+label { + cursor: pointer; + user-select: none; +} + +/******************************* + Types + *******************************/ + +/*-------------- + Radio + ---------------*/ + +.ui.radio.checkbox { + min-height: $radioSize; +} + +.ui.radio.checkbox .box, +.ui.radio.checkbox label { + padding-left: $radioLabelDistance; +} + +/* Box */ +.ui.radio.checkbox .box:before, +.ui.radio.checkbox label:before { + content: ""; + transform: none; + + width: $radioSize; + height: $radioSize; + border-radius: variables.$circularRadius; + top: $radioTop; + left: $radioLeft; +} + +/* Bullet */ +.ui.radio.checkbox .box:after, +.ui.radio.checkbox label:after { + border: none; + content: "" !important; + width: $radioSize; + height: $radioSize; + line-height: $radioSize; +} + +/* Radio Checkbox */ +.ui.radio.checkbox .box:after, +.ui.radio.checkbox label:after { + top: $bulletTop; + left: $bulletLeft; + width: $radioSize; + height: $radioSize; + border-radius: $bulletRadius; + transform: scale($bulletScale); + background-color: $bulletColor; +} + +/* Focus */ +.ui.radio.checkbox input:focus~.box:before, +.ui.radio.checkbox input:focus~label:before { + background-color: $radioFocusBackground; +} + +.ui.radio.checkbox input:focus~.box:after, +.ui.radio.checkbox input:focus~label:after { + background-color: $radioFocusBulletColor; +} + +/* Indeterminate */ +.ui.radio.checkbox input:indeterminate~.box:after, +.ui.radio.checkbox input:indeterminate~label:after { + opacity: 0; +} + +/* Active */ +.ui.radio.checkbox input:checked~.box:before, +.ui.radio.checkbox input:checked~label:before { + background-color: $radioActiveBackground; +} + +.ui.radio.checkbox input:checked~.box:after, +.ui.radio.checkbox input:checked~label:after { + background-color: $radioActiveBulletColor; +} + +/* Active Focus */ +.ui.radio.checkbox input:focus:checked~.box:before, +.ui.radio.checkbox input:focus:checked~label:before { + background-color: $radioActiveFocusBackground; +} + +.ui.radio.checkbox input:focus:checked~.box:after, +.ui.radio.checkbox input:focus:checked~label:after { + background-color: $radioActiveFocusBulletColor; +} + +/*-------------- + Slider + ---------------*/ + +.ui.slider.checkbox { + min-height: $sliderHeight; +} + +/* Input */ +.ui.slider.checkbox input { + width: $sliderWidth; + height: $sliderHeight; +} + +/* Label */ +.ui.slider.checkbox .box, +.ui.slider.checkbox label { + padding-left: $sliderLabelDistance; + line-height: $sliderLabelLineHeight; + color: $sliderOffLabelColor; +} + +/* Line */ +.ui.slider.checkbox .box:before, +.ui.slider.checkbox label:before { + display: block; + position: absolute; + content: ""; + transform: none; + border: none !important; + left: 0em; + z-index: 1; + + top: $sliderLineVerticalOffset; + + background-color: $sliderLineColor; + width: $sliderLineWidth; + height: $sliderLineHeight; + + transform: none; + border-radius: $sliderLineRadius; + transition: $sliderLineTransition; +} + +/* Handle */ +.ui.slider.checkbox .box:after, +.ui.slider.checkbox label:after { + background: $handleBackground; + position: absolute; + content: "" !important; + opacity: 1; + z-index: 2; + + border: none; + box-shadow: $handleBoxShadow; + width: $sliderHandleSize; + height: $sliderHandleSize; + top: $sliderHandleOffset; + left: 0em; + transform: none; + + border-radius: variables.$circularRadius; + transition: $sliderHandleTransition; +} + +/* Focus */ +.ui.slider.checkbox input:focus~.box:before, +.ui.slider.checkbox input:focus~label:before { + background-color: $toggleFocusColor; + border: none; +} + +/* Hover */ +.ui.slider.checkbox .box:hover, +.ui.slider.checkbox label:hover { + color: $sliderHoverLabelColor; +} + +.ui.slider.checkbox .box:hover::before, +.ui.slider.checkbox label:hover::before { + background: $sliderHoverLaneBackground; +} + +/* Active */ +.ui.slider.checkbox input:checked~.box, +.ui.slider.checkbox input:checked~label { + color: $sliderOnLabelColor !important; +} + +.ui.slider.checkbox input:checked~.box:before, +.ui.slider.checkbox input:checked~label:before { + background-color: $sliderOnLineColor !important; +} + +.ui.slider.checkbox input:checked~.box:after, +.ui.slider.checkbox input:checked~label:after { + left: $sliderTravelDistance; +} + +/* Active Focus */ +.ui.slider.checkbox input:focus:checked~.box, +.ui.slider.checkbox input:focus:checked~label { + color: $sliderOnFocusLabelColor !important; +} + +.ui.slider.checkbox input:focus:checked~.box:before, +.ui.slider.checkbox input:focus:checked~label:before { + background-color: $sliderOnFocusLineColor !important; +} + +/*-------------- + Toggle + ---------------*/ + +.ui.toggle.checkbox { + min-height: $toggleHeight; +} + +/* Input */ +.ui.toggle.checkbox input { + width: $toggleWidth; + height: $toggleHeight; +} + +/* Label */ +.ui.toggle.checkbox .box, +.ui.toggle.checkbox label { + min-height: $toggleHandleSize; + padding-left: $toggleLabelDistance; + color: $toggleOffLabelColor; +} + +.ui.toggle.checkbox label { + padding-top: $toggleLabelOffset; +} + +/* Switch */ +.ui.toggle.checkbox .box:before, +.ui.toggle.checkbox label:before { + display: block; + position: absolute; + content: ""; + z-index: 1; + transform: none; + border: none; + + top: $toggleLaneVerticalOffset; + + background: $toggleLaneBackground; + box-shadow: $toggleLaneBoxShadow; + width: $toggleLaneWidth; + height: $toggleLaneHeight; + border-radius: $toggleHandleRadius; +} + +/* Handle */ +.ui.toggle.checkbox .box:after, +.ui.toggle.checkbox label:after { + background: $handleBackground; + position: absolute; + content: "" !important; + opacity: 1; + z-index: 2; + + border: none; + box-shadow: $handleBoxShadow; + width: $toggleHandleSize; + height: $toggleHandleSize; + top: $toggleHandleOffset; + left: 0em; + + border-radius: variables.$circularRadius; + transition: $toggleHandleTransition; +} + +.ui.toggle.checkbox input~.box:after, +.ui.toggle.checkbox input~label:after { + left: $toggleOffOffset; + box-shadow: $toggleOffHandleBoxShadow; +} + +/* Focus */ +.ui.toggle.checkbox input:focus~.box:before, +.ui.toggle.checkbox input:focus~label:before { + background-color: $toggleFocusColor; + border: none; +} + +/* Hover */ +.ui.toggle.checkbox .box:hover::before, +.ui.toggle.checkbox label:hover::before { + background-color: $toggleHoverColor; + border: none; +} + +/* Active */ +.ui.toggle.checkbox input:checked~.box, +.ui.toggle.checkbox input:checked~label { + color: $toggleOnLabelColor !important; +} + +.ui.toggle.checkbox input:checked~.box:before, +.ui.toggle.checkbox input:checked~label:before { + background-color: $toggleOnLaneColor !important; +} + +.ui.toggle.checkbox input:checked~.box:after, +.ui.toggle.checkbox input:checked~label:after { + left: $toggleOnOffset; + box-shadow: $toggleOnHandleBoxShadow; +} + +/* Active Focus */ +.ui.toggle.checkbox input:focus:checked~.box, +.ui.toggle.checkbox input:focus:checked~label { + color: $toggleOnFocusLabelColor !important; +} + +.ui.toggle.checkbox input:focus:checked~.box:before, +.ui.toggle.checkbox input:focus:checked~label:before { + background-color: $toggleOnFocusLaneColor !important; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Fitted + ---------------*/ + +.ui.fitted.checkbox .box, +.ui.fitted.checkbox label { + padding-left: 0em !important; +} + +.ui.fitted.toggle.checkbox, +.ui.fitted.toggle.checkbox { + width: $toggleWidth; +} + +.ui.fitted.slider.checkbox, +.ui.fitted.slider.checkbox { + width: $sliderWidth; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/colors.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/colors.scss new file mode 100644 index 00000000..707001e7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/colors.scss @@ -0,0 +1,516 @@ +// Primitives +$pageBackground : #FFFFFF; +$textColor : #2a2a2a; +$linkColor : #346EAD; +$linkHoverColor : lighten($linkColor, 15); //darken(saturate($linkColor, 20), 15); +$linkVisitedColor : #5D4488; + +// PRC SPECIFIC COLORS +// - Black +$trueBlack: #000; +$slate: #282828; +// - Gray +$gray: #efefef; +$grayLight: #dadbdb; +$grayMedium: #b7b8b9; +$grayDark: #818181; +$grayDarkest: #444444; +$grayAlt: #6b6b6b; +// - Beige (cool oatmeal) +$beige: #f7f7f1; +$beigeMedium: #f0f0e6; +$beigeDark: #b7b8af; +// - Oatmeal (warm oatmeal) +$oatmeal: #ecece3; +$oatmealLight: #f8f9f5; +$oatmealDark: #b2b3a5; +$oatmealText: #58585a; +// - Brand Colors +$democratBlue: #436983; +$republicanRed: #bf3927; +$eggplant: #756a7e; +$orangePrimary: #ea9e2c; +$globalGreen: #949d48; +$mediumBrownPrimary: #a55a26; +$lightBrownPrimary: #d1a730; +$forumBlue: #0090bf; +$tealPrimary: #377668; +$plum: #733d47; +$internetBlue: #006699; +$mustard: #d7b236; +// - Brand Shortcuts +$prc: $slate; +$journalism: $plum; +$religion: $forumBlue; +$hispanic: $mediumBrownPrimary; +$politics: $lightBrownPrimary; +$socialtrends: $tealPrimary; +$internet: $internetBlue; +$science: $orangePrimary; +$global: $globalGreen; + +// Rainbow +$red : #DB2828; +$orange : #F2711C; +$yellow : #FBBD08; +$olive : #B5CC18; +$green : #21BA45; +$teal : #00B5AD; +$blue : #2185D0; +$violet : #6435C9; +$purple : #A333C8; +$pink : #E03997; +$brown : #A5673F; +$grey : #767676; +$black : #1B1C1D; +// - Light Colors +$lightRed : #FF695E; +$lightOrange : #FF851B; +$lightYellow : #FFE21F; +$lightOlive : #D9E778; +$lightGreen : #2ECC40; +$lightTeal : #6DFFFF; +$lightBlue : #54C8FF; +$lightViolet : #A291FB; +$lightPurple : #DC73FF; +$lightPink : #FF8EDF; +$lightBrown : #D67C1C; +$lightGrey : #DCDDDE; +$lightBlack : #545454; +// - Backgrounds +$redBackground : #FFE8E6; +$orangeBackground : #FFEDDE; +$yellowBackground : #FFF8DB; +$oliveBackground : #FBFDEF; +$greenBackground : #E5F9E7; +$tealBackground : #E1F7F7; +$blueBackground : #DFF0FF; +$violetBackground : #EAE7FF; +$purpleBackground : #F6E7FF; +$pinkBackground : #FFE3FB; +$brownBackground : #F1E2D3; + +// - Text +$redTextColor : $red; +$orangeTextColor : $orange; +$yellowTextColor : #B58105; // Yellow text is difficult to read +$oliveTextColor : #8ABC1E; // Olive is difficult to read +$greenTextColor : #1EBC30; // Green is difficult to read +$tealTextColor : #10A3A3; // Teal text is difficult to read +$blueTextColor : $blue; +$violetTextColor : $violet; +$purpleTextColor : $purple; +$pinkTextColor : $pink; +$brownTextColor : $brown; + +// - Headers +$redHeaderColor : darken($redTextColor, 5); +$oliveHeaderColor : darken($oliveTextColor, 5); +$greenHeaderColor : darken($greenTextColor, 5); +$yellowHeaderColor : darken($yellowTextColor, 5); +$blueHeaderColor : darken($blueTextColor, 5); +$tealHeaderColor : darken($tealTextColor, 5); +$pinkHeaderColor : darken($pinkTextColor, 5); +$violetHeaderColor : darken($violetTextColor, 5); +$purpleHeaderColor : darken($purpleTextColor, 5); +$orangeHeaderColor : darken($orangeTextColor, 5); +$brownHeaderColor : darken($brownTextColor, 5); + +// - Border +$redBorderColor : $redTextColor; +$orangeBorderColor : $orangeTextColor; +$yellowBorderColor : $yellowTextColor; +$oliveBorderColor : $oliveTextColor; +$greenBorderColor : $greenTextColor; +$tealBorderColor : $tealTextColor; +$blueBorderColor : $blueTextColor; +$violetBorderColor : $violetTextColor; +$purpleBorderColor : $purpleTextColor; +$pinkBorderColor : $pinkTextColor; +$brownBorderColor : $brownTextColor; + +// /******************************* +// UI Colors +// *******************************/ + +//Neutrals +$fullBlack : #000000; +$offWhite : #F9FAFB; +$darkWhite : #F3F4F5; +$midWhite : #DCDDDE; +$white : #FFFFFF; + +// - Text +$darkTextColor : rgba(0, 0, 0, 0.85); +$mutedTextColor : rgba(0, 0, 0, 0.6); +$lightTextColor : rgba(0, 0, 0, 0.4); + +// Form + +$inputBackground : $white; +$inputColor : $textColor; +$inputPlaceholderColor : #999; //lighten($inputColor, 75); +$inputPlaceholderFocusColor : lighten($inputColor, 45); + +// - Focused +$focusedFormBorderColor : #85B7D9; +$focusedFormMutedBorderColor : #96C8DA; + +// Scroll Bars +$trackBackground : rgba(0, 0, 0, 0.1); +$thumbBackground : rgba(0, 0, 0, 0.25); +$thumbInactiveBackground : rgba(0, 0, 0, 0.15); +$thumbHoverBackground : rgba(128, 135, 139, 0.8); + +// - Inverted +$trackInvertedBackground : rgba(255, 255, 255, 0.1); +$thumbInvertedBackground : rgba(255, 255, 255, 0.25); +$thumbInvertedInactiveBackground : rgba(255, 255, 255, 0.15); +$thumbInvertedHoverBackground : rgba(255, 255, 255, 0.35); + +// Highlighted Text +$highlightBackground : black; +$highlightColor : white; +$inputHighlightBackground : rgba(100, 100, 100, 0.4); +$inputHighlightColor : $textColor; + +// Loader +$loaderFillColor : rgba(0, 0, 0, 0.1); +$loaderLineColor : $grey; +$invertedLoaderFillColor : rgba(255, 255, 255, 0.15); +$invertedLoaderLineColor : $white; + + +$unselectedTextColor : rgba(0, 0, 0, 0.4); +$hoveredTextColor : rgba(0, 0, 0, 0.8); +$pressedTextColor : rgba(0, 0, 0, 0.9); +$selectedTextColor : rgba(0, 0, 0, 0.95); +$disabledTextColor : rgba(0, 0, 0, 0.2); + +$invertedTextColor : rgba(255, 255, 255, 0.9); +$invertedMutedTextColor : rgba(255, 255, 255, 0.8); +$invertedLightTextColor : rgba(255, 255, 255, 0.7); +$invertedUnselectedTextColor : rgba(255, 255, 255, 0.5); +$invertedHoveredTextColor : rgba(255, 255, 255, 1); +$invertedPressedTextColor : rgba(255, 255, 255, 1); +$invertedSelectedTextColor : rgba(255, 255, 255, 1); +$invertedDisabledTextColor : rgba(255, 255, 255, 0.2); + +// Borders +$borderColor : rgba(34, 36, 38, 0.15); +$strongBorderColor : rgba(34, 36, 38, 0.22); +$internalBorderColor : rgba(34, 36, 38, 0.1); +$selectedBorderColor : rgba(34, 36, 38, 0.35); +$strongSelectedBorderColor : rgba(34, 36, 38, 0.5); +$disabledBorderColor : rgba(34, 36, 38, 0.5); +$solidInternalBorderColor : #FAFAFA; +$solidBorderColor : #D4D4D5; +$solidSelectedBorderColor : #BCBDBD; +$whiteBorderColor : rgba(255, 255, 255, 0.1); +$selectedWhiteBorderColor : rgba(255, 255, 255, 0.8); +$solidWhiteBorderColor : #555555; +$selectedSolidWhiteBorderColor : #999999; + +// Social Brands +$facebookColor : #3B5998; +$twitterColor : #55ACEE; +$googlePlusColor : #DD4B39; +$linkedInColor : #1F88BE; +$youtubeColor : #FF0000; +$pinterestColor : #BD081C; +$vkColor : #4D7198; +$instagramColor : #49769C; + +// Alpha Transparency Colors +$subtleTransparentBlack : rgba(0, 0, 0, 0.03); +$transparentBlack : rgba(0, 0, 0, 0.05); +$strongTransparentBlack : rgba(0, 0, 0, 0.10); +$veryStrongTransparentBlack : rgba(0, 0, 0, 0.15); +$subtleTransparentWhite : rgba(255, 255, 255, 0.02); +$transparentWhite : rgba(255, 255, 255, 0.08); +$strongTransparentWhite : rgba(255, 255, 255, 0.15); + +// Emotives +// - Positive +$positiveColor : $green; +$positiveBackgroundColor : #FCFFF5; +$positiveBorderColor : #A3C293; +$positiveHeaderColor : #1A531B; +$positiveTextColor : #2C662D; + +// - Negative +$negativeColor : $red; +$negativeBackgroundColor : #FFF6F6; +$negativeBorderColor : #E0B4B4; +$negativeHeaderColor : #912D2B; +$negativeTextColor : #9F3A38; + +// - Info +$infoColor : #31CCEC; +$infoBackgroundColor : #F8FFFF; +$infoBorderColor : #A9D5DE; +$infoHeaderColor : #0E566C; +$infoTextColor : #276F86; + +// - Warning +$warningColor : #F2C037; +$warningBorderColor : #C9BA9B; +$warningBackgroundColor : #FFFAF3; +$warningHeaderColor : #794B02; +$warningTextColor : #573A08; + +// - Positive / Negative Dupes +$successBackgroundColor : $positiveBackgroundColor; +$successColor : $positiveColor; +$successBorderColor : $positiveBorderColor; +$successHeaderColor : $positiveHeaderColor; +$successTextColor : $positiveTextColor; + +$errorBackgroundColor : $negativeBackgroundColor; +$errorColor : $negativeColor; +$errorBorderColor : $negativeBorderColor; +$errorHeaderColor : $negativeHeaderColor; +$errorTextColor : $negativeTextColor; + +// UI Brand Colors +$primaryColor : $blue; +$secondaryColor : $black; + +$lightPrimaryColor : $lightBlue; +$lightSecondaryColor : $lightBlack; + +//Hover Colors +$primaryColorHover : saturate(darken($primaryColor, 5), 10); +$secondaryColorHover : saturate(lighten($secondaryColor, 5), 10); +$lightPrimaryColorHover : saturate(darken($lightPrimaryColor, 5), 10); +$lightSecondaryColorHover : saturate(lighten($lightSecondaryColor, 5), 10); + +// - Rainbow +$redHover : saturate(darken($red, 5), 10); +$orangeHover : saturate(darken($orange, 5), 10); +$yellowHover : saturate(darken($yellow, 5), 10); +$mustardHover : saturate(darken($mustard, 5), 10); +$oliveHover : saturate(darken($olive, 5), 10); +$greenHover : saturate(darken($green, 5), 10); +$tealHover : saturate(darken($teal, 5), 10); +$blueHover : saturate(darken($blue, 5), 10); +$violetHover : saturate(darken($violet, 5), 10); +$purpleHover : saturate(darken($purple, 5), 10); +$pinkHover : saturate(darken($pink, 5), 10); +$brownHover : saturate(darken($brown, 5), 10); + +//- Rainbow Light +$lightRedHover : saturate(darken($lightRed, 5), 10); +$lightOrangeHover : saturate(darken($lightOrange, 5), 10); +$lightYellowHover : saturate(darken($lightYellow, 5), 10); +$lightOliveHover : saturate(darken($lightOlive, 5), 10); +$lightGreenHover : saturate(darken($lightGreen, 5), 10); +$lightTealHover : saturate(darken($lightTeal, 5), 10); +$lightBlueHover : saturate(darken($lightBlue, 5), 10); +$lightVioletHover : saturate(darken($lightViolet, 5), 10); +$lightPurpleHover : saturate(darken($lightPurple, 5), 10); +$lightPinkHover : saturate(darken($lightPink, 5), 10); +$lightBrownHover : saturate(darken($lightBrown, 5), 10); +$lightGreyHover : saturate(darken($lightGrey, 5), 10); +$lightBlackHover : saturate(darken($fullBlack, 5), 10); + +//- Emotive +$positiveColorHover : saturate(darken($positiveColor, 5), 10); +$negativeColorHover : saturate(darken($negativeColor, 5), 10); + +//- Social Brands +$facebookHoverColor : saturate(darken($facebookColor, 5), 10); +$twitterHoverColor : saturate(darken($twitterColor, 5), 10); +$googlePlusHoverColor : saturate(darken($googlePlusColor, 5), 10); +$linkedInHoverColor : saturate(darken($linkedInColor, 5), 10); +$youtubeHoverColor : saturate(darken($youtubeColor, 5), 10); +$instagramHoverColor : saturate(darken($instagramColor, 5), 10); +$pinterestHoverColor : saturate(darken($pinterestColor, 5), 10); +$vkHoverColor : saturate(darken($vkColor, 5), 10); + +//- Dark Tones +$fullBlackHover : lighten($fullBlack, 5); +$blackHover : lighten($black, 5); +$greyHover : lighten($grey, 5); + +//- Light Tones +$whiteHover : darken($white, 5); +$offWhiteHover : darken($offWhite, 5); +$darkWhiteHover : darken($darkWhite, 5); + +//Focus Colors +$primaryColorFocus : saturate(darken($primaryColor, 8), 20); +$secondaryColorFocus : saturate(lighten($secondaryColor, 8), 20); +$lightPrimaryColorFocus : saturate(darken($lightPrimaryColor, 8), 20); +$lightSecondaryColorFocus : saturate(lighten($lightSecondaryColor, 8), 20); + +//- Rainbow +$redFocus : saturate(darken($red, 8), 20); +$orangeFocus : saturate(darken($orange, 8), 20); +$yellowFocus : saturate(darken($yellow, 8), 20); +$mustardFocus : saturate(darken($mustard, 8), 20); +$oliveFocus : saturate(darken($olive, 8), 20); +$greenFocus : saturate(darken($green, 8), 20); +$tealFocus : saturate(darken($teal, 8), 20); +$blueFocus : saturate(darken($blue, 8), 20); +$violetFocus : saturate(darken($violet, 8), 20); +$purpleFocus : saturate(darken($purple, 8), 20); +$pinkFocus : saturate(darken($pink, 8), 20); +$brownFocus : saturate(darken($brown, 8), 20); + +//- Rainbow Light +$lightRedFocus : saturate(darken($lightRed, 8), 20); +$lightOrangeFocus : saturate(darken($lightOrange, 8), 20); +$lightYellowFocus : saturate(darken($lightYellow, 8), 20); +$lightOliveFocus : saturate(darken($lightOlive, 8), 20); +$lightGreenFocus : saturate(darken($lightGreen, 8), 20); +$lightTealFocus : saturate(darken($lightTeal, 8), 20); +$lightBlueFocus : saturate(darken($lightBlue, 8), 20); +$lightVioletFocus : saturate(darken($lightViolet, 8), 20); +$lightPurpleFocus : saturate(darken($lightPurple, 8), 20); +$lightPinkFocus : saturate(darken($lightPink, 8), 20); +$lightBrownFocus : saturate(darken($lightBrown, 8), 20); +$lightGreyFocus : saturate(darken($lightGrey, 8), 20); +$lightBlackFocus : saturate(darken($fullBlack, 8), 20); + +//- Emotive +$positiveColorFocus : saturate(darken($positiveColor, 8), 20); +$negativeColorFocus : saturate(darken($negativeColor, 8), 20); + +//- Social Brands +$facebookFocusColor : saturate(darken($facebookColor, 8), 20); +$twitterFocusColor : saturate(darken($twitterColor, 8), 20); +$googlePlusFocusColor : saturate(darken($googlePlusColor, 8), 20); +$linkedInFocusColor : saturate(darken($linkedInColor, 8), 20); +$youtubeFocusColor : saturate(darken($youtubeColor, 8), 20); +$instagramFocusColor : saturate(darken($instagramColor, 8), 20); +$pinterestFocusColor : saturate(darken($pinterestColor, 8), 20); +$vkFocusColor : saturate(darken($vkColor, 8), 20); + +//- Dark Tones +$fullBlackFocus : lighten($fullBlack, 8); +$blackFocus : lighten($black, 8); +$greyFocus : lighten($grey, 8); + +//- Light Tones +$whiteFocus : darken($white, 8); +$offWhiteFocus : darken($offWhite, 8); +$darkWhiteFocus : darken($darkWhite, 8); + +//Down (:active) Colors +$primaryColorDown : darken($primaryColor, 10); +$secondaryColorDown : lighten($secondaryColor, 10); +$lightPrimaryColorDown : darken($lightPrimaryColor, 10); +$lightSecondaryColorDown : lighten($lightSecondaryColor, 10); + +//- Rainbow +$redDown : darken($red, 10); +$orangeDown : darken($orange, 10); +$yellowDown : darken($yellow, 10); +$mustardDown : darken($mustard, 10); +$oliveDown : darken($olive, 10); +$greenDown : darken($green, 10); +$tealDown : darken($teal, 10); +$blueDown : darken($blue, 10); +$violetDown : darken($violet, 10); +$purpleDown : darken($purple, 10); +$pinkDown : darken($pink, 10); +$brownDown : darken($brown, 10); + +//- Rainbow Light +$lightRedDown : darken($lightRed, 10); +$lightOrangeDown : darken($lightOrange, 10); +$lightYellowDown : darken($lightYellow, 10); +$lightOliveDown : darken($lightOlive, 10); +$lightGreenDown : darken($lightGreen, 10); +$lightTealDown : darken($lightTeal, 10); +$lightBlueDown : darken($lightBlue, 10); +$lightVioletDown : darken($lightViolet, 10); +$lightPurpleDown : darken($lightPurple, 10); +$lightPinkDown : darken($lightPink, 10); +$lightBrownDown : darken($lightBrown, 10); +$lightGreyDown : darken($lightGrey, 10); +$lightBlackDown : darken($fullBlack, 10); + +// - Emotive +$positiveColorDown : darken($positiveColor, 10); +$negativeColorDown : darken($negativeColor, 10); + +// - Brand +$facebookDownColor : darken($facebookColor, 10); +$twitterDownColor : darken($twitterColor, 10); +$googlePlusDownColor : darken($googlePlusColor, 10); +$linkedInDownColor : darken($linkedInColor, 10); +$youtubeDownColor : darken($youtubeColor, 10); +$instagramDownColor : darken($instagramColor, 10); +$pinterestDownColor : darken($pinterestColor, 10); +$vkDownColor : darken($vkColor, 10); + +// - Dark Tones +$fullBlackDown : lighten($fullBlack, 10); +$blackDown : lighten($black, 10); +$greyDown : lighten($grey, 10); + +// - Light Tones +$whiteDown : darken($white, 10); +$offWhiteDown : darken($offWhite, 10); +$darkWhiteDown : darken($darkWhite, 10); + +// Active Colors +$primaryColorActive : saturate(darken($primaryColor, 5), 15); +$secondaryColorActive : saturate(lighten($secondaryColor, 5), 15); +$lightPrimaryColorActive : saturate(darken($lightPrimaryColor, 5), 15); +$lightSecondaryColorActive : saturate(lighten($lightSecondaryColor, 5), 15); + +// - Rainbow +$redActive : saturate(darken($red, 5), 15); +$orangeActive : saturate(darken($orange, 5), 15); +$yellowActive : saturate(darken($yellow, 5), 15); +$mustardActive : saturate(darken($mustard, 5), 15); +$oliveActive : saturate(darken($olive, 5), 15); +$greenActive : saturate(darken($green, 5), 15); +$tealActive : saturate(darken($teal, 5), 15); +$blueActive : saturate(darken($blue, 5), 15); +$violetActive : saturate(darken($violet, 5), 15); +$purpleActive : saturate(darken($purple, 5), 15); +$pinkActive : saturate(darken($pink, 5), 15); +$brownActive : saturate(darken($brown, 5), 15); + +// - Rainbow Light +$lightRedActive : saturate(darken($lightRed, 5), 15); +$lightOrangeActive : saturate(darken($lightOrange, 5), 15); +$lightYellowActive : saturate(darken($lightYellow, 5), 15); +$lightOliveActive : saturate(darken($lightOlive, 5), 15); +$lightGreenActive : saturate(darken($lightGreen, 5), 15); +$lightTealActive : saturate(darken($lightTeal, 5), 15); +$lightBlueActive : saturate(darken($lightBlue, 5), 15); +$lightVioletActive : saturate(darken($lightViolet, 5), 15); +$lightPurpleActive : saturate(darken($lightPurple, 5), 15); +$lightPinkActive : saturate(darken($lightPink, 5), 15); +$lightBrownActive : saturate(darken($lightBrown, 5), 15); +$lightGreyActive : saturate(darken($lightGrey, 5), 15); +$lightBlackActive : saturate(darken($fullBlack, 5), 15); + +// - Emotive +$positiveColorActive : saturate(darken($positiveColor, 5), 15); +$negativeColorActive : saturate(darken($negativeColor, 5), 15); + +// - Social Brands +$facebookActiveColor : saturate(darken($facebookColor, 5), 15); +$twitterActiveColor : saturate(darken($twitterColor, 5), 15); +$googlePlusActiveColor : saturate(darken($googlePlusColor, 5), 15); +$linkedInActiveColor : saturate(darken($linkedInColor, 5), 15); +$youtubeActiveColor : saturate(darken($youtubeColor, 5), 15); +$instagramActiveColor : saturate(darken($instagramColor, 5), 15); +$pinterestActiveColor : saturate(darken($pinterestColor, 5), 15); +$vkActiveColor : saturate(darken($vkColor, 5), 15); + +// - Dark Tones +$fullBlackActive : darken($fullBlack, 5); +$blackActive : darken($black, 5); +$greyActive : darken($grey, 5); + +// - Light Tones +$whiteActive : darken($white, 5); +$offWhiteActive : darken($offWhite, 5); +$darkWhiteActive : darken($darkWhite, 5); \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/container.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/container.scss new file mode 100644 index 00000000..b20d1d3a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/container.scss @@ -0,0 +1,162 @@ +/*! + * # Semantic UI - Container + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; + +/******************************* + Container + *******************************/ + +/*------------------- + Element + --------------------*/ + +/* Minimum Gutter is used to determine the maximum container width for a given device */ + +$maxWidth: 100%; + +$largeMaxWidth: 1168px; + +/* Devices */ +$mobileMinimumGutter: 0em; +$mobileWidth: auto; +$mobileGutter: 1em; + +$tabletMinimumGutter: (variables.$emSize * 1); +$tabletWidth: variables.$tabletBreakpoint - ($tabletMinimumGutter * 2) - variables.$scrollbarWidth; +$tabletGutter: auto; + +$computerMinimumGutter: (variables.$emSize * 1.5); +$computerWidth: $largeMaxWidth; //variables.$computerBreakpoint - ($computerMinimumGutter * 2) - variables.$scrollbarWidth; +$computerGutter: auto; + +$largeMonitorMinimumGutter: (variables.$emSize * 2); +$largeMonitorWidth: $computerWidth; //$largeMonitorBreakpoint - ($largeMonitorMinimumGutter * 2) - variables.$scrollbarWidth; +$largeMonitorGutter: auto; + +/* Coupling (Add Negative Margin to container size) */ +$gridGutterWidth: 2rem; +$relaxedGridGutterWidth: 3rem; +$veryRelaxedGridGutterWidth: 5rem; + +$mobileGridWidth: $mobileWidth; +$tabletGridWidth: calc(#{$tabletWidth} + #{$gridGutterWidth}); +$computerGridWidth: calc(#{$computerWidth} + #{$gridGutterWidth}); +$largeMonitorGridWidth: calc(#{largeMonitorWidth} + #{$gridGutterWidth}); + +$mobileRelaxedGridWidth: $mobileWidth; +$tabletRelaxedGridWidth: calc(#{$tabletWidth} + #{$relaxedGridGutterWidth}); +$computerRelaxedGridWidth: calc(#{$computerWidth} + #{$relaxedGridGutterWidth}); +$largeMonitorRelaxedGridWidth: calc(#{$largeMonitorWidth} + #{$relaxedGridGutterWidth}); + +$mobileVeryRelaxedGridWidth: $mobileWidth; +$tabletVeryRelaxedGridWidth: calc(#{$tabletWidth} + #{$veryRelaxedGridGutterWidth}); +$computerVeryRelaxedGridWidth: calc(#{$computerWidth} + #{$veryRelaxedGridGutterWidth}); +$largeMonitorVeryRelaxedGridWidth: calc(#{$largeMonitorWidth} + #{$veryRelaxedGridGutterWidth}); + +/*------------------- + Types + --------------------*/ +$postContentWidth: 640px; + +/******************************* + Container + *******************************/ + +/* All Sizes */ +.ui.container, +.wp-block-group__inner-container { + display: block; + max-width: $maxWidth !important; + + &.large { + max-width: $largeMaxWidth !important; + } + + /* Fluid */ + &.fluid { + width: 100%; + } + + /* Mobile */ + @media only screen and (max-width: variables.$largestMobileScreen) { + width: $mobileWidth !important; + margin-left: $mobileGutter !important; + margin-right: $mobileGutter !important; + } + + /* Tablet */ + @media only screen and (min-width: variables.$tabletBreakpoint) and (max-width: variables.$largestTabletScreen) { + width: $tabletWidth; + margin-left: $tabletGutter !important; + margin-right: $tabletGutter !important; + } + + /* Computer */ + @media only screen and (min-width: variables.$computerBreakpoint) { + width: $computerWidth; + margin-left: $computerGutter !important; + margin-right: $computerGutter !important; + } +} + +.ui.container { + /* Computer */ + @media only screen and (min-width: variables.$computerBreakpoint) { + padding-left: 1em; + padding-right: 1em; + } +} + + + +/******************************* + Types + *******************************/ + +.ui.text.container { + width: 100% !important; + max-width: $postContentWidth !important; + margin-left: auto !important; + margin-right: auto !important; + padding-left: 0; + padding-right: 0; + + // On computers a not centered text container should not auto center. + &:not(.centered) { + + // Default to centered except on what is clearly desktop + @media only screen and (min-width: variables.$computerBreakpoint) { + margin-left: 0 !important; + margin-right: 0 !important; + } + } +} + +/******************************* + Variations + *******************************/ + +.ui[class*="left aligned"].container { + text-align: left; +} + +.ui[class*="center aligned"].container { + text-align: center; +} + +.ui[class*="right aligned"].container { + text-align: right; +} + +.ui.justified.container { + text-align: justify; + hyphens: auto; +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/dimmer.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/dimmer.scss new file mode 100644 index 00000000..c94e0507 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/dimmer.scss @@ -0,0 +1,292 @@ +/*! + * # Semantic UI - Dimmer + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ +@use 'master.variables'as variables; +@use "colors"; + +/******************************* + Dimmer + *******************************/ + +$dimmablePosition: relative; +$dimmerPosition: absolute; + +$backgroundColor: rgba(0, 0, 0, 0.85); +$lineHeight: 1; +$perspective: 2000px; +$padding: 1em; + +$duration: 0.5s; +$transition: background-color $duration linear; +$zIndex: 1000; +$textAlign: center; +$verticalAlign: middle; +$textColor: colors.$white; +$overflow: hidden; + +$blurredStartFilter: blur(0px) grayscale(0); +$blurredEndFilter: blur(5px) grayscale(0.7); +$blurredTransition: 800ms filter variables.$defaultEasing; + +$blurredBackgroundColor: rgba(0, 0, 0, 0.6); +$blurredInvertedBackgroundColor: rgba(255, 255, 255, 0.6); + +/* Hidden (Default) */ +$hiddenOpacity: 0; + +/* Visible */ +$visibleOpacity: 1; + +/*------------------- + Types + --------------------*/ + +/* Page Dimmer*/ +$transformStyle: ''; +$pageDimmerPosition: fixed; + + +/*------------------- + Variations + --------------------*/ + +/* Inverted */ +$invertedBackgroundColor: rgba(255, 255, 255, 0.85); +$invertedTextColor: $textColor; + +/* Simple */ +$simpleZIndex: 1; +$simpleStartBackgroundColor: rgba(0, 0, 0, 0); +$simpleEndBackgroundColor: $backgroundColor; +$simpleInvertedStartBackgroundColor: rgba(255, 255, 255, 0); +$simpleInvertedEndBackgroundColor: $invertedBackgroundColor; + + +/******************************* + Dimmer + *******************************/ + +.dimmable:not(body) { + position: $dimmablePosition; +} + +.ui.dimmer { + display: none; + position: $dimmerPosition; + top: 0em !important; + left: 0em !important; + + width: 100%; + height: 100%; + + text-align: $textAlign; + vertical-align: $verticalAlign; + padding: $padding; + + background-color: $backgroundColor; + opacity: $hiddenOpacity; + line-height: $lineHeight; + + animation-fill-mode: both; + animation-duration: $duration; + transition: $transition; + + flex-direction: column; + align-items: center; + justify-content: center; + + user-select: none; + will-change: opacity; + z-index: $zIndex; +} + +/* Dimmer Content */ +.ui.dimmer>.content { + user-select: text; + color: $textColor; +} + +/* Loose Coupling */ +.ui.segment>.ui.dimmer { + border-radius: inherit !important; +} + + +/* Scrollbars */ + +@mixin addScrollbars() { + .ui.dimmer:not(.inverted)::-webkit-scrollbar-track { + background: colors.$trackInvertedBackground; + } + + .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb { + background: colors.$thumbInvertedBackground; + } + + .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive { + background: colors.$thumbInvertedInactiveBackground; + } + + .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover { + background: colors.$thumbInvertedHoverBackground; + } +} + +@if(variables.$useCustomScrollbars) { + @include addScrollbars() +} + +/******************************* + States + *******************************/ + +/* Animating */ +.animating.dimmable:not(body), +.dimmed.dimmable:not(body) { + overflow: $overflow; +} + +/* Animating / Active / Visible */ +.dimmed.dimmable>.ui.animating.dimmer, +.dimmed.dimmable>.ui.visible.dimmer, +.ui.active.dimmer { + display: flex; + opacity: $visibleOpacity; +} + +/* Disabled */ +.ui.disabled.dimmer { + width: 0 !important; + height: 0 !important; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Legacy + ---------------*/ + +/* Animating / Active / Visible */ +.dimmed.dimmable>.ui.animating.legacy.dimmer, +.dimmed.dimmable>.ui.visible.legacy.dimmer, +.ui.active.legacy.dimmer { + display: block; +} + +/*-------------- + Alignment + ---------------*/ + +.ui[class*="top aligned"].dimmer { + justify-content: flex-start; +} + +.ui[class*="bottom aligned"].dimmer { + justify-content: flex-end; +} + +/*-------------- + Page + ---------------*/ + +.ui.page.dimmer { + position: $pageDimmerPosition; + transform-style: $transformStyle; + perspective: $perspective; + transform-origin: center center; +} + +body.animating.in.dimmable, +body.dimmed.dimmable { + overflow: hidden; +} + +body.dimmable>.dimmer { + position: fixed; +} + +/*-------------- + Blurring + ---------------*/ + +.blurring.dimmable> :not(.dimmer) { + filter: $blurredStartFilter; + transition: $blurredTransition; +} + +.blurring.dimmed.dimmable> :not(.dimmer) { + filter: $blurredEndFilter; +} + +/* Dimmer Color */ +.blurring.dimmable>.dimmer { + background-color: $blurredBackgroundColor; +} + +.blurring.dimmable>.inverted.dimmer { + background-color: $blurredInvertedBackgroundColor; +} + +/*-------------- + Aligned + ---------------*/ + +.ui.dimmer>.top.aligned.content>* { + vertical-align: top; +} + +.ui.dimmer>.bottom.aligned.content>* { + vertical-align: bottom; +} + +/*-------------- + Inverted + ---------------*/ + +.ui.inverted.dimmer { + background-color: $invertedBackgroundColor; +} + +.ui.inverted.dimmer>.content>* { + color: $invertedTextColor; +} + +/*-------------- + Simple + ---------------*/ + +/* Displays without javascript */ +.ui.simple.dimmer { + display: block; + overflow: hidden; + opacity: 1; + width: 0%; + height: 0%; + z-index: -100; + background-color: $simpleStartBackgroundColor; +} + +.dimmed.dimmable>.ui.simple.dimmer { + overflow: visible; + opacity: 1; + width: 100%; + height: 100%; + background-color: $simpleEndBackgroundColor; + z-index: $simpleZIndex; +} + +.ui.simple.inverted.dimmer { + background-color: $simpleInvertedStartBackgroundColor; +} + +.dimmed.dimmable>.ui.simple.inverted.dimmer { + background-color: $simpleInvertedEndBackgroundColor; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/divider.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/divider.scss new file mode 100644 index 00000000..9e432db7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/divider.scss @@ -0,0 +1,346 @@ +/*! + * # Semantic UI - Divider + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ +@use "functions" as functions; +@use "master.variables"as variables; +@use 'colors'; + +/******************************* + Divider +*******************************/ + +/*------------------- + Element +--------------------*/ + +$margin: 1rem 0rem; + +$highlightWidth: 1px; +$highlightColor: colors.$whiteBorderColor; + +$shadowWidth: 1px; +$shadowColor: colors.$borderColor; + +/* Text */ +$letterSpacing: 0.05em; +$fontWeight: variables.$bold; +$color: colors.$darkTextColor; +$textTransform: uppercase; + +/*------------------- + Coupling +--------------------*/ + +/* Icon */ +$dividerIconSize: 1rem; +$dividerIconMargin: 0rem; + + +/******************************* + Variations +*******************************/ + +/* Horizontal / Vertical */ +$horizontalMargin: ''; +$horizontalDividerMargin: 1em; +$horizontalRulerOffset: calc(-50% - 1em); + +$verticalDividerMargin: 1rem; +$verticalDividerHeight: calc(100% - 1em); + +/* Dotted */ +$dottedBorderColor: #AAA; + +/* Inverted */ +$invertedTextColor: colors.$white; +$invertedHighlightColor: rgba(255, 255, 255, 0.15); +$invertedShadowColor: colors.$borderColor; + +/* Section */ +$sectionMargin: 2rem; + +/* Sizes */ +$medium: 1rem; + + +/******************************* + Divider +*******************************/ + + +.ui.divider { + margin: $margin; + + line-height: 1; + height: 0em; + + font-size: $medium; + font-weight: $fontWeight; + text-transform: $textTransform; + letter-spacing: $letterSpacing; + color: $color; + + user-select: none; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + + /*-------------- + Basic + ---------------*/ + + &:not(.vertical):not(.horizontal):not(.is-style-wide):not(.is-style-dots):not(.dotted) { + border-top: $shadowWidth solid $shadowColor; + border-bottom: $highlightWidth solid $highlightColor; + max-width: 100%; + } + + /*-------------- + Horizontal + ---------------*/ + + &.horizontal { + display: table; + white-space: nowrap; + + height: auto; + margin: $horizontalMargin; + line-height: 1; + text-align: center; + + &:before, + &:after { + content: ""; + display: table-cell; + position: relative; + top: 50%; + width: 50%; + background-repeat: no-repeat; + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); + } + + &:before { + background-position: right $horizontalDividerMargin top 50%; + } + + &:after { + background-position: left $horizontalDividerMargin top 50%; + } + } + + /*-------------- + Vertical + ---------------*/ + + &.vertical { + position: absolute; + z-index: 2; + top: 50%; + left: 50%; + + margin: 0rem; + padding: 0em; + width: auto; + height: 50%; + + line-height: 0em; + text-align: center; + transform: translateX(-50%); + + &:before, + &:after { + position: absolute; + left: 50%; + content: ""; + z-index: 3; + + border-left: $shadowWidth solid $shadowColor; + border-right: $highlightWidth solid $highlightColor; + + width: 0%; + // height: $verticalDividerHeight; + } + + &:before { + top: -100%; + } + + &:after { + top: auto; + bottom: 0px; + } + } + + /*-------------- + Icon + ---------------*/ + + &>.icon { + margin: $dividerIconMargin; + font-size: $dividerIconSize; + height: 1em; + vertical-align: middle; + } + + /******************************* + Variations + *******************************/ + + /*-------------- + Hidden + ---------------*/ + + &.hidden { + border-color: transparent !important; + + &:before, + &:after { + display: none; + } + } + + // Invisible + &.invisible:not(.wp-block-separator) { + opacity: 0; + } + + /*-------------- + Dotted + ---------------*/ + &.dotted { + border-top: $shadowWidth dotted $dottedBorderColor; + border-bottom: none; + } + + /*-------------- + Dark + ---------------*/ + &.dark:not(.vertical) { + border-top: $shadowWidth solid colors.$strongSelectedBorderColor !important; + } + + + /*-------------- + Inverted + ---------------*/ + + &.inverted { + color: $invertedTextColor; + border-top-color: $invertedShadowColor !important; + border-left-color: $invertedShadowColor !important; + border-bottom-color: $invertedHighlightColor !important; + border-right-color: $invertedHighlightColor !important; + + &:after, + &:before { + border-top-color: $invertedShadowColor !important; + border-left-color: $invertedShadowColor !important; + border-bottom-color: $invertedHighlightColor !important; + border-right-color: $invertedHighlightColor !important; + } + } + + /*-------------- + Attached + ---------------*/ + &.attached, + &.fitted { + margin: 0em; + border-bottom: none !important; + + &.top { + margin-top: $horizontalDividerMargin; + } + + &.bottom { + margin-bottom: $horizontalDividerMargin; + } + } + + /*-------------- + Clearing + ---------------*/ + + &.clearing { + clear: both; + } + + /*-------------- + Section + ---------------*/ + + &.section { + margin-top: $sectionMargin; + margin-bottom: $sectionMargin; + } + +} + +/*-------------- + Coupling +---------------*/ + +/* Allow divider between each column row */ +.ui.grid>.column+.divider, +.ui.grid>.row>.column+.divider { + left: auto; +} + +@media only screen and (max-width : (variables.$tabletBreakpoint - 1px)) { + + .ui.stackable.grid .ui.vertical.divider:before, + .ui.grid .stackable.row .ui.vertical.divider:before, + .ui.stackable.grid .ui.vertical.divider:after, + .ui.grid .stackable.row .ui.vertical.divider:after { + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); + } +} + +/* Inside grid */ +@media only screen and (max-width: variables.$largestMobileScreen) { + + .ui.stackable.grid .ui.vertical.divider, + .ui.grid .stackable.row .ui.vertical.divider { + display: table; + white-space: nowrap; + height: auto; + margin: $horizontalMargin; + overflow: hidden; + line-height: 1; + text-align: center; + position: static; + top: 0; + left: 0; + transform: none; + } + + .ui.stackable.grid .ui.vertical.divider:before, + .ui.grid .stackable.row .ui.vertical.divider:before, + .ui.stackable.grid .ui.vertical.divider:after, + .ui.grid .stackable.row .ui.vertical.divider:after { + position: static; + left: 0; + border-left: none; + border-right: none; + content: ""; + display: table-cell; + position: relative; + top: 50%; + width: 50%; + background-repeat: no-repeat; + } + + .ui.stackable.grid .ui.vertical.divider:before, + .ui.grid .stackable.row .ui.vertical.divider:before { + background-position: right $horizontalDividerMargin top 50%; + } + + .ui.stackable.grid .ui.vertical.divider:after, + .ui.grid .stackable.row .ui.vertical.divider:after { + background-position: left $horizontalDividerMargin top 50%; + } +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/dropdown.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/dropdown.scss new file mode 100644 index 00000000..b518b91f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/dropdown.scss @@ -0,0 +1,1980 @@ +/*! + * # Semantic UI - Dropdown + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "sass:math"; + +@use "master.variables" as variables; +@use "functions" as functions; +@use "colors"; +@use "mixins"; + +/******************************* + Dropdown +*******************************/ + +/*------------------- + Element +--------------------*/ + +$transition: box-shadow variables.$defaultDuration variables.$defaultEasing, +width variables.$defaultDuration variables.$defaultEasing; +$borderRadius: variables.$defaultBorderRadius; + +$raisedShadow: 0px 2px 3px 0px colors.$borderColor; + +/*------------------- + Content +--------------------*/ + +/* Icon */ +$dropdownIconSize: variables.$relative14px; +$dropdownIconMargin: 0rem 0rem 0rem 1rem; + +/* Current Text */ +$textTransition: none; + +/* Menu */ +$menuBackground: #ffffff; +$menuMargin: 0em; +$menuPadding: 0em 0em; +$menuTop: 100%; +$menuTextAlign: left; + +$menuBorderWidth: 1px; +$menuBorderColor: colors.$borderColor; +$menuBorder: $menuBorderWidth solid $menuBorderColor; +$menuBoxShadow: $raisedShadow; +$menuBorderRadius: $borderRadius; +$menuTransition: opacity variables.$defaultDuration variables.$defaultEasing; +$menuMinWidth: calc(100% + (#{$menuBorderWidth} * 2)); +$menuZIndex: 11; + +/* Text */ +$textLineHeight: 1em; +$textLineHeightOffset: ($textLineHeight - 1em); +$textCursorSpacing: 1px; + +/* Menu Item */ +$itemFontSize: variables.$medium; +$itemTextAlign: left; +$itemBorder: none; +$itemHeight: auto; +$itemDivider: none; +$itemColor: colors.$textColor; +$itemVerticalPadding: variables.$mini; +$itemHorizontalPadding: variables.$large; +$itemPadding: $itemVerticalPadding $itemHorizontalPadding; +$itemFontWeight: variables.$normal; +$itemLineHeight: 1em; +$itemLineHeightOffset: ($itemLineHeight - 1em); +$itemTextTransform: none; +$itemBoxShadow: none; + +/* Sub Menu */ +$subMenuTop: 0%; +$subMenuLeft: 100%; +$subMenuRight: auto; +$subMenuDistanceAway: -0.5em; +$subMenuMargin: 0em 0em 0em $subMenuDistanceAway; +$subMenuBorderRadius: $borderRadius; +$subMenuZIndex: 21; + +/* Menu Header */ +$menuHeaderColor: colors.$darkTextColor; +$menuHeaderFontSize: variables.$relative11px; +$menuHeaderFontWeight: variables.$bold; +$menuHeaderTextTransform: uppercase; +$menuHeaderMargin: 1rem 0rem 0.75rem; +$menuHeaderPadding: 0em $itemHorizontalPadding; + +/* Menu Divider */ +$menuDividerMargin: 0.5em 0em; +$menuDividerColor: colors.$internalBorderColor; +$menuDividerSize: 1px; +$menuDividerBorder: $menuDividerSize solid $menuDividerColor; + +/* Menu Input */ +$menuInputMargin: variables.$large variables.$mini; +$menuInputMinWidth: 10rem; +$menuInputVerticalPadding: 0.5em; +$menuInputHorizontalPadding: variables.$inputHorizontalPadding; +$menuInputPadding: $menuInputVerticalPadding $menuInputHorizontalPadding; + +/* Menu Image */ +$menuImageMaxHeight: 2em; +$menuImageVerticalMargin: -($menuImageMaxHeight - 1em) * 0.5; + +/* Item Sub-Element */ +$itemElementFloat: none; +$itemElementDistance: variables.$mini; + +/* Sub-Menu Dropdown Icon */ +$itemDropdownIconDistance: 1em; +$itemDropdownIconFloat: right; +$itemDropdownIconMargin: $itemLineHeightOffset 0em 0em $itemDropdownIconDistance; + +/* Description */ +$itemDescriptionFloat: right; +$itemDescriptionMargin: 0em 0em 0em 1em; +$itemDescriptionColor: colors.$lightTextColor; + +$selectionItemHorizontalPadding: $itemHorizontalPadding; +$selectionItemVerticalPadding: $itemVerticalPadding; +$selectionItemPadding: $selectionItemVerticalPadding $selectionItemHorizontalPadding; + +/* Message */ +$messagePadding: $selectionItemPadding; +$messageFontWeight: variables.$normal; +$messageColor: colors.$unselectedTextColor; + +/* Floated Content */ +$floatedDistance: 1em; + +/*------------------- + Types +--------------------*/ + +/*------------ + Block +--------------*/ +$blockPadding: 1em 0; +$blockBorderTop: 1px solid colors.$grayLight; +$blockBorderBottom: $blockBorderTop; +$blockMargin: 0 0 1rem 0; + +/*------------ + Selection +--------------*/ + +$selectionMinWidth: 14em; +$selectionVerticalPadding: variables.$inputVerticalPadding; +$selectionHorizontalPadding: variables.$inputHorizontalPadding; +$selectionBorderEmWidth: variables.$relative1px; +$selectionMinHeight: variables.$inputLineHeight+($selectionVerticalPadding * 2) - $selectionBorderEmWidth; +$selectionBackground: colors.$inputBackground; +$selectionDisplay: inline-block; +$selectionIconDistance: variables.$inputHorizontalPadding+variables.$glyphWidth; +$selectionPadding: $selectionVerticalPadding $selectionIconDistance $selectionVerticalPadding $selectionHorizontalPadding; +$selectionZIndex: 10; + +$selectionItemDivider: 1px solid colors.$solidInternalBorderColor; +$selectionMessagePadding: $selectionItemPadding; + +/* + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + + + + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/prc-app-ui.zip b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/prc-app-ui.zip new file mode 100644 index 00000000..9c521d99 Binary files /dev/null and b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/prc-app-ui.zip differ diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg-sprite/prc-app-ui-sprite-demo.html b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg-sprite/prc-app-ui-sprite-demo.html new file mode 100644 index 00000000..b99d64d5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg-sprite/prc-app-ui-sprite-demo.html @@ -0,0 +1,7867 @@ + + + + + PRC App User Interface Icons + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
SVG Sprite reference
+

PRC App User Interface Icons

+

+ This document shows two different techniques of using SVG sprite (inlined vs. external) on your website. Please take a look at the HTML source or see the section below the icons for further details. +

+ + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+ + + +
+

Use SVG sprite on your website

+
+ +
+ + +
+ + +
+
+
+
+

External SVG sprite

+

+ Use SVG sprite by referencing the external SVG which you can find in svg/prc-app-ui-sprite.svg.
+ Please use SVG for Everybody polyfill in order to support this technique on Internet Explorer 11 and below. +

+
+ +
+

Add CSS

+

Make sure to include the sprite shape dimensions via CSS.
You may use the your own classes for different icon dimensions or colors.

+
.svg-icon {
+  width: 32px;
+  height: 32px;
+
+  display: inline-block;
+  fill: currentColor;
+}
+
+ +
+

Use your icons

+

Include any icon by using the following code referencing the icon name

+
<svg class="svg-icon">
+  <use xlink:href="svg/prc-app-ui-sprite.svg#icon-name"></use>
+</svg>
+
+
+
+
+

Inline SVG sprite

+

Use SVG sprite by inlining the SVG code on your website.
Your browser has to support inline SVG for this technique to work.

+ +

Include the SVG code

+

This is an inlined version of the generated SVG sprite with <symbol> definitions, which should be included at the top of your page. Icons may be <use>d anywhere + below the code on the same page. Please note the width, height and style attribute of generated SVG code.

+
+
+ +
+

Add CSS

+

Make sure to include the sprite shape dimensions via CSS.
You may use the your own classes for different icon dimensions or colors.

+
.svg-icon {
+  width: 32px;
+  height: 32px;
+
+  display: inline-block;
+  fill: currentColor;
+}
+
+ +
+

Use your icons

+

Include any icon by using the following code referencing the icon name

+
<svg class="svg-icon">
+  <use xlink:href="#icon-name"></use>
+</svg>
+
+
+
+
+ + +
+ + + + + + + + + + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg-sprite/svg/prc-app-ui-sprite.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg-sprite/svg/prc-app-ui-sprite.svg new file mode 100644 index 00000000..9207a216 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg-sprite/svg/prc-app-ui-sprite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/accessible-icon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/accessible-icon.svg new file mode 100644 index 00000000..154dcb4e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/accessible-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/address-book.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/address-book.svg new file mode 100644 index 00000000..9bb6f67e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/address-book.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/address-card.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/address-card.svg new file mode 100644 index 00000000..dd92a034 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/address-card.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/adjust.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/adjust.svg new file mode 100644 index 00000000..b7752cb0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/adjust.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/adversal.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/adversal.svg new file mode 100644 index 00000000..86da8c9c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/adversal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-center.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-center.svg new file mode 100644 index 00000000..569e0a8e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-center.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-justify.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-justify.svg new file mode 100644 index 00000000..cd26cd29 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-justify.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-left.svg new file mode 100644 index 00000000..1dd7b185 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-right.svg new file mode 100644 index 00000000..458e9213 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/align-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/amazon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/amazon.svg new file mode 100644 index 00000000..ac8166f1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ambulance.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ambulance.svg new file mode 100644 index 00000000..0a426f19 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ambulance.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/american-sign-language-interpreting.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/american-sign-language-interpreting.svg new file mode 100644 index 00000000..5a5c32c4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/american-sign-language-interpreting.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/anchor.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/anchor.svg new file mode 100644 index 00000000..d0de42fd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/anchor.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/android.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/android.svg new file mode 100644 index 00000000..43706ac4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-down.svg new file mode 100644 index 00000000..07cf4703 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-left.svg new file mode 100644 index 00000000..ff8490d2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-right.svg new file mode 100644 index 00000000..36fd1d33 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-up.svg new file mode 100644 index 00000000..0e716024 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-double-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-down.svg new file mode 100644 index 00000000..0bd61ba9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-left.svg new file mode 100644 index 00000000..5a21b996 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-right.svg new file mode 100644 index 00000000..8dadf767 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-up.svg new file mode 100644 index 00000000..c4e8c304 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angle-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angular.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angular.svg new file mode 100644 index 00000000..7894b553 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/app-store-ios.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/app-store-ios.svg new file mode 100644 index 00000000..fdf5240c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/app-store-ios.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/app-store.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/app-store.svg new file mode 100644 index 00000000..8091e99d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/app-store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/apple-pay.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/apple-pay.svg new file mode 100644 index 00000000..96322683 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/apple.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/apple.svg new file mode 100644 index 00000000..32788dc4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/archive.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/archive.svg new file mode 100644 index 00000000..24fb5b1b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/archive.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-down.svg new file mode 100644 index 00000000..70936288 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-left.svg new file mode 100644 index 00000000..36bb49ce --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-right.svg new file mode 100644 index 00000000..baf394bf --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-up.svg new file mode 100644 index 00000000..e34f816a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-alt-circle-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-down.svg new file mode 100644 index 00000000..e3434e2d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-left.svg new file mode 100644 index 00000000..31d6ddec --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-right.svg new file mode 100644 index 00000000..dff7b415 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-up.svg new file mode 100644 index 00000000..1fe9c21d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-circle-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-down.svg new file mode 100644 index 00000000..418d1bc8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-left.svg new file mode 100644 index 00000000..84b03c8a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-right.svg new file mode 100644 index 00000000..7a7b9125 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-up.svg new file mode 100644 index 00000000..1ce35eb4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt-h.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt-h.svg new file mode 100644 index 00000000..68cfe44e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt-h.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt-v.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt-v.svg new file mode 100644 index 00000000..e05d22d0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt-v.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt.svg new file mode 100644 index 00000000..94c550e3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/arrows-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/artstation.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/artstation.svg new file mode 100644 index 00000000..529c8ac5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/artstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/assistive-listening-systems.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/assistive-listening-systems.svg new file mode 100644 index 00000000..4c3a99d1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/assistive-listening-systems.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/asterisk.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/asterisk.svg new file mode 100644 index 00000000..a1143a5c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/asterisk.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/at.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/at.svg new file mode 100644 index 00000000..36ac7d50 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/at.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/atlassian.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/atlassian.svg new file mode 100644 index 00000000..5561da70 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/atlassian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/audible.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/audible.svg new file mode 100644 index 00000000..b0e0be6e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/audible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/audio-description.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/audio-description.svg new file mode 100644 index 00000000..afe8da6d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/audio-description.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/aws.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/aws.svg new file mode 100644 index 00000000..ab4516a4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/aws.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/backward.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/backward.svg new file mode 100644 index 00000000..5f7d6ff5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/backward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/balance-scale.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/balance-scale.svg new file mode 100644 index 00000000..5f14a52b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/balance-scale.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ban.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ban.svg new file mode 100644 index 00000000..94f6cb89 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ban.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/band-aid.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/band-aid.svg new file mode 100644 index 00000000..e0326f86 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/band-aid.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bandcamp.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bandcamp.svg new file mode 100644 index 00000000..b0f7a7da --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bandcamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/barcode.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/barcode.svg new file mode 100644 index 00000000..4180f6cd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/barcode.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bars.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bars.svg new file mode 100644 index 00000000..4c7f4ce6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bars.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/baseball-ball.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/baseball-ball.svg new file mode 100644 index 00000000..5626293a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/baseball-ball.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/basketball-ball.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/basketball-ball.svg new file mode 100644 index 00000000..39a02be5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/basketball-ball.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bath.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bath.svg new file mode 100644 index 00000000..7c31f723 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bath.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-empty.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-empty.svg new file mode 100644 index 00000000..3fbd528e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-empty.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-full.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-full.svg new file mode 100644 index 00000000..ed945fb1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-full.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-half.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-half.svg new file mode 100644 index 00000000..25e4c53b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-quarter.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-quarter.svg new file mode 100644 index 00000000..420f7b26 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-quarter.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-three-quarters.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-three-quarters.svg new file mode 100644 index 00000000..5c8a673c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/battery-three-quarters.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bed.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bed.svg new file mode 100644 index 00000000..8c4d2a26 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bed.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/beer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/beer.svg new file mode 100644 index 00000000..68a9e114 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/beer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bell-slash.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bell-slash.svg new file mode 100644 index 00000000..6bfbb4a0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bell-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bell.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bell.svg new file mode 100644 index 00000000..30be732a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bell.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bicycle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bicycle.svg new file mode 100644 index 00000000..1755d975 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bicycle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/binoculars.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/binoculars.svg new file mode 100644 index 00000000..0451025b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/binoculars.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/birthday-cake.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/birthday-cake.svg new file mode 100644 index 00000000..cbbbdb04 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/birthday-cake.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bitcoin.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bitcoin.svg new file mode 100644 index 00000000..dffca0ad --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blind.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blind.svg new file mode 100644 index 00000000..264f2a8d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blind.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blogger-b.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blogger-b.svg new file mode 100644 index 00000000..f8333841 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blogger-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blogger.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blogger.svg new file mode 100644 index 00000000..eda1d7dd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bluetooth-b.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bluetooth-b.svg new file mode 100644 index 00000000..4e611eb1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bluetooth-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bluetooth.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bluetooth.svg new file mode 100644 index 00000000..86032cfd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bold.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bold.svg new file mode 100644 index 00000000..49f7be21 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bold.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bolt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bolt.svg new file mode 100644 index 00000000..7c02aabd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bolt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bomb.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bomb.svg new file mode 100644 index 00000000..7c75f09e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bomb.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/book.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/book.svg new file mode 100644 index 00000000..950390fc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/book.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bookmark.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bookmark.svg new file mode 100644 index 00000000..157ab30b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bookmark.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bootstrap.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bootstrap.svg new file mode 100644 index 00000000..7481bc55 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bootstrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bowling-ball.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bowling-ball.svg new file mode 100644 index 00000000..39e56c11 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bowling-ball.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/box.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/box.svg new file mode 100644 index 00000000..3578d23b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/box.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/boxes.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/boxes.svg new file mode 100644 index 00000000..831d0f68 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/boxes.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/braille.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/braille.svg new file mode 100644 index 00000000..679ccdf8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/braille.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/briefcase.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/briefcase.svg new file mode 100644 index 00000000..ba7c57b7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/briefcase.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/btc.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/btc.svg new file mode 100644 index 00000000..f1f48e0d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/buffer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/buffer.svg new file mode 100644 index 00000000..ed868d31 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/buffer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bug.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bug.svg new file mode 100644 index 00000000..8b71a8f9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bug.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/building.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/building.svg new file mode 100644 index 00000000..c64713c0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/building.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bullhorn.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bullhorn.svg new file mode 100644 index 00000000..d522e9db --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bullhorn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bullseye.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bullseye.svg new file mode 100644 index 00000000..9bd22327 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bullseye.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bus.svg new file mode 100644 index 00000000..0aca0110 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/bus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calculator.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calculator.svg new file mode 100644 index 00000000..946dfc05 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calculator.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-alt.svg new file mode 100644 index 00000000..8bc55f3c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-check.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-check.svg new file mode 100644 index 00000000..e455c11c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-minus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-minus.svg new file mode 100644 index 00000000..f2084251 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-plus.svg new file mode 100644 index 00000000..a066f5b1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-times.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-times.svg new file mode 100644 index 00000000..deb05529 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar-times.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar.svg new file mode 100644 index 00000000..d2d3c62c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/calendar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/camera-retro.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/camera-retro.svg new file mode 100644 index 00000000..a5bd546d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/camera-retro.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/camera.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/camera.svg new file mode 100644 index 00000000..2ae8dfab --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/camera.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/canadian-maple-leaf.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/canadian-maple-leaf.svg new file mode 100644 index 00000000..4996ceba --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/canadian-maple-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/car.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/car.svg new file mode 100644 index 00000000..015d9ecd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/car.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-down.svg new file mode 100644 index 00000000..8f62283e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-left.svg new file mode 100644 index 00000000..119c1bdc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-right.svg new file mode 100644 index 00000000..fac68eff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-down.svg new file mode 100644 index 00000000..d150f827 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-left.svg new file mode 100644 index 00000000..50b438ea --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-right.svg new file mode 100644 index 00000000..59ee7138 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-up.svg new file mode 100644 index 00000000..74ed4a20 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-square-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-up.svg new file mode 100644 index 00000000..e5e77154 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/caret-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cart-arrow-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cart-arrow-down.svg new file mode 100644 index 00000000..a5551cde --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cart-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cart-plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cart-plus.svg new file mode 100644 index 00000000..b4b499a3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cart-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-amex.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-amex.svg new file mode 100644 index 00000000..f269f0a8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-amex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-apple-pay.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-apple-pay.svg new file mode 100644 index 00000000..9f8209fe --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-diners-club.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-diners-club.svg new file mode 100644 index 00000000..3af3c39d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-diners-club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-discover.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-discover.svg new file mode 100644 index 00000000..fc01f824 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-discover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-jcb.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-jcb.svg new file mode 100644 index 00000000..bcbf5f9a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-jcb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-mastercard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-mastercard.svg new file mode 100644 index 00000000..998b9d90 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-mastercard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-paypal.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-paypal.svg new file mode 100644 index 00000000..e8c32140 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-stripe.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-stripe.svg new file mode 100644 index 00000000..c6463ad6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-visa.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-visa.svg new file mode 100644 index 00000000..428a2ec6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cc-visa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/certificate.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/certificate.svg new file mode 100644 index 00000000..f96391a2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/certificate.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-area.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-area.svg new file mode 100644 index 00000000..f8271d1b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-area.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-bar.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-bar.svg new file mode 100644 index 00000000..a72cf3f0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-bar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-line.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-line.svg new file mode 100644 index 00000000..0a554c37 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-line.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-pie.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-pie.svg new file mode 100644 index 00000000..45a3147d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chart-pie.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check-circle.svg new file mode 100644 index 00000000..ce33ebdd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check-square.svg new file mode 100644 index 00000000..bc1146fc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check.svg new file mode 100644 index 00000000..29670739 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-bishop.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-bishop.svg new file mode 100644 index 00000000..9fa46a1c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-bishop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-board.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-board.svg new file mode 100644 index 00000000..4c5ba436 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-board.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-king.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-king.svg new file mode 100644 index 00000000..7bbd4dfe --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-king.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-knight.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-knight.svg new file mode 100644 index 00000000..bd3a3b23 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-knight.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-pawn.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-pawn.svg new file mode 100644 index 00000000..f7936f50 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-pawn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-queen.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-queen.svg new file mode 100644 index 00000000..ecdceb6a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-queen.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-rook.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-rook.svg new file mode 100644 index 00000000..d2f8ca84 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess-rook.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess.svg new file mode 100644 index 00000000..95cfde42 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chess.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-down.svg new file mode 100644 index 00000000..bae4e866 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-left.svg new file mode 100644 index 00000000..8c495a68 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-right.svg new file mode 100644 index 00000000..1da76ec4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-up.svg new file mode 100644 index 00000000..4b49b3a4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-circle-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-down.svg new file mode 100644 index 00000000..8843a298 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-left.svg new file mode 100644 index 00000000..c032c2b6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-right.svg new file mode 100644 index 00000000..e88da5e2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-up.svg new file mode 100644 index 00000000..b7d4c8cf --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chevron-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/child.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/child.svg new file mode 100644 index 00000000..ecd611d6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/child.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chrome.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chrome.svg new file mode 100644 index 00000000..397738de --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chromecast.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chromecast.svg new file mode 100644 index 00000000..091a43dc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/chromecast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/circle-notch.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/circle-notch.svg new file mode 100644 index 00000000..ca2745e1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/circle-notch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/circle.svg new file mode 100644 index 00000000..a6bac15b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard-check.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard-check.svg new file mode 100644 index 00000000..0049f7ad --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard-list.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard-list.svg new file mode 100644 index 00000000..ae4f4d25 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard-list.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard.svg new file mode 100644 index 00000000..48bffa6b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clipboard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clock.svg new file mode 100644 index 00000000..9e402c0a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clone.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clone.svg new file mode 100644 index 00000000..d9b59970 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/clone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/close.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/close.svg new file mode 100644 index 00000000..81cb2377 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/close.svg @@ -0,0 +1,4 @@ + + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/closed-captioning.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/closed-captioning.svg new file mode 100644 index 00000000..4983b3f6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/closed-captioning.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud-download-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud-download-alt.svg new file mode 100644 index 00000000..4d6b28f8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud-download-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud-upload-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud-upload-alt.svg new file mode 100644 index 00000000..5a27b46f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud-upload-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud.svg new file mode 100644 index 00000000..58baf3e8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloud.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloudflare.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloudflare.svg new file mode 100644 index 00000000..d2d48640 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cloudflare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/code-branch.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/code-branch.svg new file mode 100644 index 00000000..05ac0345 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/code-branch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/code.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/code.svg new file mode 100644 index 00000000..c6a3ad5c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/code.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/codepen.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/codepen.svg new file mode 100644 index 00000000..7807f25a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/coffee.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/coffee.svg new file mode 100644 index 00000000..6dbd0f51 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/coffee.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cog.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cog.svg new file mode 100644 index 00000000..ae89c960 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cog.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cogs.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cogs.svg new file mode 100644 index 00000000..e1acf483 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cogs.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/columns.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/columns.svg new file mode 100644 index 00000000..5537a7f8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/columns.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comment-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comment-alt.svg new file mode 100644 index 00000000..1d615c33 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comment-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comment.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comment.svg new file mode 100644 index 00000000..584f355f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comment.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comments.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comments.svg new file mode 100644 index 00000000..a11294d2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/comments.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/compass.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/compass.svg new file mode 100644 index 00000000..f3110ad0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/compass.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/compress.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/compress.svg new file mode 100644 index 00000000..ab17af48 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/compress.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/confluence.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/confluence.svg new file mode 100644 index 00000000..a8db336e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/confluence.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/copy.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/copy.svg new file mode 100644 index 00000000..8c98c143 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/copy.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/copyright.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/copyright.svg new file mode 100644 index 00000000..a12c371c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/copyright.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-by.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-by.svg new file mode 100644 index 00000000..e3e095c0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-by.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc-eu.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc-eu.svg new file mode 100644 index 00000000..d879f00e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc-eu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc-jp.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc-jp.svg new file mode 100644 index 00000000..38ba056d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc-jp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc.svg new file mode 100644 index 00000000..9e9fa720 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nd.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nd.svg new file mode 100644 index 00000000..deddce89 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-nd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-pd-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-pd-alt.svg new file mode 100644 index 00000000..670498e2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-pd-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-pd.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-pd.svg new file mode 100644 index 00000000..c89e7607 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-pd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-remix.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-remix.svg new file mode 100644 index 00000000..4e7d6fff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-remix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sa.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sa.svg new file mode 100644 index 00000000..3cee9e1a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sampling-plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sampling-plus.svg new file mode 100644 index 00000000..aca6d21e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sampling-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sampling.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sampling.svg new file mode 100644 index 00000000..15311cf7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-sampling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-share.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-share.svg new file mode 100644 index 00000000..dc2f7ace --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-zero.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-zero.svg new file mode 100644 index 00000000..2068f9de --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons-zero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons.svg new file mode 100644 index 00000000..baa4257c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/creative-commons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/credit-card.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/credit-card.svg new file mode 100644 index 00000000..e46a11f7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/credit-card.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/crop.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/crop.svg new file mode 100644 index 00000000..a0e47e00 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/crop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/crosshairs.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/crosshairs.svg new file mode 100644 index 00000000..6f9efdf7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/crosshairs.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/css3-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/css3-alt.svg new file mode 100644 index 00000000..82d42121 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/css3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/css3.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/css3.svg new file mode 100644 index 00000000..95f24f69 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cube.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cube.svg new file mode 100644 index 00000000..3b29b54a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cube.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cubes.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cubes.svg new file mode 100644 index 00000000..93cf54b8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cubes.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cut.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cut.svg new file mode 100644 index 00000000..b11d3fbf --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/cut.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dailymotion.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dailymotion.svg new file mode 100644 index 00000000..669d28d8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dailymotion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/database.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/database.svg new file mode 100644 index 00000000..7310583a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/database.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/deaf.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/deaf.svg new file mode 100644 index 00000000..581c7c33 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/deaf.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/deezer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/deezer.svg new file mode 100644 index 00000000..77120fd5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/deezer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/delicious.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/delicious.svg new file mode 100644 index 00000000..b2ec573d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/delicious.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/desktop.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/desktop.svg new file mode 100644 index 00000000..f47b5061 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/desktop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dev.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dev.svg new file mode 100644 index 00000000..ef7fbe74 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dev.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/digg.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/digg.svg new file mode 100644 index 00000000..c8966ca2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/digg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/discord.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/discord.svg new file mode 100644 index 00000000..c02d50c0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/discourse.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/discourse.svg new file mode 100644 index 00000000..179c90c6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/discourse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dna.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dna.svg new file mode 100644 index 00000000..d3060773 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dna.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/docker.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/docker.svg new file mode 100644 index 00000000..015a02cd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dollar-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dollar-sign.svg new file mode 100644 index 00000000..ffdf4184 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dollar-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dolly-flatbed.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dolly-flatbed.svg new file mode 100644 index 00000000..cba51910 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dolly-flatbed.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dolly.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dolly.svg new file mode 100644 index 00000000..bd5a5a8e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dolly.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dot-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dot-circle.svg new file mode 100644 index 00000000..8d596cff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dot-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/download.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/download.svg new file mode 100644 index 00000000..4d43517c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/download.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dropbox.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dropbox.svg new file mode 100644 index 00000000..60edb7a6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edge-legacy.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edge-legacy.svg new file mode 100644 index 00000000..9e95bd18 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edge-legacy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edge.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edge.svg new file mode 100644 index 00000000..a2111ce6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edit.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edit.svg new file mode 100644 index 00000000..7f8092ed --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/edit.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eject.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eject.svg new file mode 100644 index 00000000..80abbde8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eject.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ellipsis-h.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ellipsis-h.svg new file mode 100644 index 00000000..126b3d3a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ellipsis-h.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ellipsis-v.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ellipsis-v.svg new file mode 100644 index 00000000..bb6c2d8a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ellipsis-v.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope-open.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope-open.svg new file mode 100644 index 00000000..a7ca9e06 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope-open.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope-square.svg new file mode 100644 index 00000000..016516cb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope.svg new file mode 100644 index 00000000..0761770d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/envelope.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eraser.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eraser.svg new file mode 100644 index 00000000..a314cc62 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eraser.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ethereum.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ethereum.svg new file mode 100644 index 00000000..499e9190 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ethereum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/euro-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/euro-sign.svg new file mode 100644 index 00000000..daed7147 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/euro-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/evernote.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/evernote.svg new file mode 100644 index 00000000..dc7c565c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/evernote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exchange-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exchange-alt.svg new file mode 100644 index 00000000..21e75a09 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exchange-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation-circle.svg new file mode 100644 index 00000000..d7d3926e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation-triangle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation-triangle.svg new file mode 100644 index 00000000..8bd5126d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation-triangle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation.svg new file mode 100644 index 00000000..86c3605b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/expand-arrows-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/expand-arrows-alt.svg new file mode 100644 index 00000000..1c771212 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/expand-arrows-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/expand.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/expand.svg new file mode 100644 index 00000000..746ee1db --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/expand.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/external-link-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/external-link-alt.svg new file mode 100644 index 00000000..55f03a9a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/external-link-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/external-link-square-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/external-link-square-alt.svg new file mode 100644 index 00000000..0a6a0b70 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/external-link-square-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye-dropper.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye-dropper.svg new file mode 100644 index 00000000..0478313c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye-dropper.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye-slash.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye-slash.svg new file mode 100644 index 00000000..d841a169 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye.svg new file mode 100644 index 00000000..9d68758f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/eye.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-f.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-f.svg new file mode 100644 index 00000000..1db31b0f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-messenger.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-messenger.svg new file mode 100644 index 00000000..d9d8877c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-square.svg new file mode 100644 index 00000000..fd12acdd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook.svg new file mode 100644 index 00000000..77829b4c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fast-backward.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fast-backward.svg new file mode 100644 index 00000000..7a06c7cd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fast-backward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fast-forward.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fast-forward.svg new file mode 100644 index 00000000..5c20b0c4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fast-forward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fax.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fax.svg new file mode 100644 index 00000000..a5c4a343 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fax.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/female.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/female.svg new file mode 100644 index 00000000..43898033 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/female.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fighter-jet.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fighter-jet.svg new file mode 100644 index 00000000..76faf493 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fighter-jet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/figma.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/figma.svg new file mode 100644 index 00000000..f5b541f3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-alt.svg new file mode 100644 index 00000000..1f7cdf19 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-archive.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-archive.svg new file mode 100644 index 00000000..92414f5b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-archive.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-audio.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-audio.svg new file mode 100644 index 00000000..1244f269 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-audio.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-code.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-code.svg new file mode 100644 index 00000000..94df6540 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-code.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-excel.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-excel.svg new file mode 100644 index 00000000..957f2357 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-excel.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-image.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-image.svg new file mode 100644 index 00000000..30a72253 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-image.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-pdf.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-pdf.svg new file mode 100644 index 00000000..06364105 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-pdf.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-powerpoint.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-powerpoint.svg new file mode 100644 index 00000000..f9bcc99a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-powerpoint.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-video.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-video.svg new file mode 100644 index 00000000..2c437e88 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-video.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-word.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-word.svg new file mode 100644 index 00000000..3946fd2c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file-word.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file.svg new file mode 100644 index 00000000..d1588444 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/film.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/film.svg new file mode 100644 index 00000000..ea84e47f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/film.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/filter.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/filter.svg new file mode 100644 index 00000000..2e93f731 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/filter.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fire-extinguisher.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fire-extinguisher.svg new file mode 100644 index 00000000..83a33180 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fire-extinguisher.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fire.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fire.svg new file mode 100644 index 00000000..7106539b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/fire.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/firefox-browser.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/firefox-browser.svg new file mode 100644 index 00000000..e08f6519 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/firefox-browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/firefox.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/firefox.svg new file mode 100644 index 00000000..2d283727 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/firefox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/first-aid.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/first-aid.svg new file mode 100644 index 00000000..ae57d1e8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/first-aid.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flag-checkered.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flag-checkered.svg new file mode 100644 index 00000000..08738f93 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flag-checkered.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flag.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flag.svg new file mode 100644 index 00000000..2d76e78c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flask.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flask.svg new file mode 100644 index 00000000..ad8f950e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flask.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flipboard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flipboard.svg new file mode 100644 index 00000000..d8de48b0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/flipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/folder-open.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/folder-open.svg new file mode 100644 index 00000000..be022ffd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/folder-open.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/folder.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/folder.svg new file mode 100644 index 00000000..cc0a8bef --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/font-awesome-flag.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/font-awesome-flag.svg new file mode 100644 index 00000000..bdc05cab --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/font-awesome-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/font.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/font.svg new file mode 100644 index 00000000..a35811f7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/font.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/football-ball.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/football-ball.svg new file mode 100644 index 00000000..974daec7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/football-ball.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/forward.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/forward.svg new file mode 100644 index 00000000..95066176 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/forward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/frown.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/frown.svg new file mode 100644 index 00000000..ff84a447 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/frown.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/futbol.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/futbol.svg new file mode 100644 index 00000000..49fa05d7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/futbol.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gamepad.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gamepad.svg new file mode 100644 index 00000000..89f30931 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gamepad.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gavel.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gavel.svg new file mode 100644 index 00000000..55882957 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gavel.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gem.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gem.svg new file mode 100644 index 00000000..5a740927 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gem.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/genderless.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/genderless.svg new file mode 100644 index 00000000..983a5b8f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/genderless.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/get-pocket.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/get-pocket.svg new file mode 100644 index 00000000..80b4b47a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/get-pocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gift.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gift.svg new file mode 100644 index 00000000..37820263 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gift.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git-alt.svg new file mode 100644 index 00000000..27fb28e5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git-square.svg new file mode 100644 index 00000000..b748bcab --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git.svg new file mode 100644 index 00000000..bf7ba6d9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/git.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github-alt.svg new file mode 100644 index 00000000..78c39549 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github-square.svg new file mode 100644 index 00000000..592cad7b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github.svg new file mode 100644 index 00000000..1a4d15c1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/glass-martini.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/glass-martini.svg new file mode 100644 index 00000000..663714df --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/glass-martini.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/globe.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/globe.svg new file mode 100644 index 00000000..7ecda944 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/globe.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/golf-ball.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/golf-ball.svg new file mode 100644 index 00000000..57028575 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/golf-ball.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/goodreads-g.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/goodreads-g.svg new file mode 100644 index 00000000..940a576a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/goodreads-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/goodreads.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/goodreads.svg new file mode 100644 index 00000000..021be841 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/goodreads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-drive.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-drive.svg new file mode 100644 index 00000000..8163c820 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-pay.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-pay.svg new file mode 100644 index 00000000..9f1fb237 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-play.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-play.svg new file mode 100644 index 00000000..1543842e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus-g.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus-g.svg new file mode 100644 index 00000000..71d48180 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus-square.svg new file mode 100644 index 00000000..ef114d8e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus.svg new file mode 100644 index 00000000..60ba26f2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-wallet.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-wallet.svg new file mode 100644 index 00000000..50920548 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google.svg new file mode 100644 index 00000000..dc27a94f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/graduation-cap.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/graduation-cap.svg new file mode 100644 index 00000000..4af5e093 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/graduation-cap.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gulp.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gulp.svg new file mode 100644 index 00000000..01e97eab --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/gulp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/h-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/h-square.svg new file mode 100644 index 00000000..9cce67af --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/h-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hacker-news-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hacker-news-square.svg new file mode 100644 index 00000000..20d895f4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hacker-news-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hacker-news.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hacker-news.svg new file mode 100644 index 00000000..7f979387 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hacker-news.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-lizard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-lizard.svg new file mode 100644 index 00000000..60affb47 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-lizard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-paper.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-paper.svg new file mode 100644 index 00000000..e0ad8965 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-paper.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-peace.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-peace.svg new file mode 100644 index 00000000..3ef84564 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-peace.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-down.svg new file mode 100644 index 00000000..c30c5795 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-left.svg new file mode 100644 index 00000000..5d086128 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-right.svg new file mode 100644 index 00000000..511aa806 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-up.svg new file mode 100644 index 00000000..aa9f9ad0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-point-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-pointer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-pointer.svg new file mode 100644 index 00000000..d60c98af --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-pointer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-rock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-rock.svg new file mode 100644 index 00000000..a68e776d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-rock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-scissors.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-scissors.svg new file mode 100644 index 00000000..6c648a91 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-scissors.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-spock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-spock.svg new file mode 100644 index 00000000..49fd870e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hand-spock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/handshake.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/handshake.svg new file mode 100644 index 00000000..e8ea19f7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/handshake.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hashtag.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hashtag.svg new file mode 100644 index 00000000..d28589c3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hashtag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hdd.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hdd.svg new file mode 100644 index 00000000..ebaccc25 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hdd.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heading.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heading.svg new file mode 100644 index 00000000..0594cfd3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heading.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/headphones.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/headphones.svg new file mode 100644 index 00000000..3d8b828a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/headphones.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heart.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heart.svg new file mode 100644 index 00000000..9f4c59e8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heartbeat.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heartbeat.svg new file mode 100644 index 00000000..c97a8996 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/heartbeat.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/history.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/history.svg new file mode 100644 index 00000000..b38e9baa --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/history.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hockey-puck.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hockey-puck.svg new file mode 100644 index 00000000..27735cdb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hockey-puck.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/home.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/home.svg new file mode 100644 index 00000000..49cb9eff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/home.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hospital-symbol.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hospital-symbol.svg new file mode 100644 index 00000000..539a488e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hospital-symbol.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hospital.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hospital.svg new file mode 100644 index 00000000..cec44649 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hospital.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-end.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-end.svg new file mode 100644 index 00000000..22970daf --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-end.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-half.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-half.svg new file mode 100644 index 00000000..72ce8249 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-start.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-start.svg new file mode 100644 index 00000000..3d827073 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass-start.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass.svg new file mode 100644 index 00000000..4b2ebb36 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/hourglass.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/html5.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/html5.svg new file mode 100644 index 00000000..ceb585e5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/i-cursor.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/i-cursor.svg new file mode 100644 index 00000000..37642320 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/i-cursor.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/id-badge.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/id-badge.svg new file mode 100644 index 00000000..5d8d6160 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/id-badge.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/id-card.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/id-card.svg new file mode 100644 index 00000000..4bbd39d7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/id-card.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/image.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/image.svg new file mode 100644 index 00000000..c8980a41 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/image.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/images.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/images.svg new file mode 100644 index 00000000..1c4084f7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/images.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/inbox.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/inbox.svg new file mode 100644 index 00000000..b48aa888 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/inbox.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/indent.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/indent.svg new file mode 100644 index 00000000..123f0eac --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/indent.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/industry.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/industry.svg new file mode 100644 index 00000000..69d24eb1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/industry.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/info-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/info-circle.svg new file mode 100644 index 00000000..0d920eb4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/info-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/info.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/info.svg new file mode 100644 index 00000000..51aaca84 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/info.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/instagram-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/instagram-square.svg new file mode 100644 index 00000000..d22215c0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/instagram-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/instagram.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/instagram.svg new file mode 100644 index 00000000..46aab1a9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/internet-explorer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/internet-explorer.svg new file mode 100644 index 00000000..5e973bda --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/internet-explorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/italic.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/italic.svg new file mode 100644 index 00000000..f25dd1f3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/italic.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/itunes-note.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/itunes-note.svg new file mode 100644 index 00000000..a026bbf4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/itunes-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/itunes.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/itunes.svg new file mode 100644 index 00000000..4e58095d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/itunes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/java.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/java.svg new file mode 100644 index 00000000..92ab2470 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/java.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/jira.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/jira.svg new file mode 100644 index 00000000..a7db9ff8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/jira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/js-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/js-square.svg new file mode 100644 index 00000000..0965a932 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/js-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/js.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/js.svg new file mode 100644 index 00000000..ed42c9b3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/jsfiddle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/jsfiddle.svg new file mode 100644 index 00000000..ac7691c7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/jsfiddle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/key.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/key.svg new file mode 100644 index 00000000..0154310d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/key.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/keyboard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/keyboard.svg new file mode 100644 index 00000000..3f2932b0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/keyboard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/language.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/language.svg new file mode 100644 index 00000000..ccf73267 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/language.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/laptop.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/laptop.svg new file mode 100644 index 00000000..8fa377cc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/laptop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/laravel.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/laravel.svg new file mode 100644 index 00000000..ba164cab --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/laravel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/leaf.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/leaf.svg new file mode 100644 index 00000000..cb9e3a54 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/leaf.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lemon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lemon.svg new file mode 100644 index 00000000..2640f7bb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lemon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/less.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/less.svg new file mode 100644 index 00000000..1caa312c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/level-down-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/level-down-alt.svg new file mode 100644 index 00000000..7625f9e4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/level-down-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/level-up-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/level-up-alt.svg new file mode 100644 index 00000000..78d41b7f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/level-up-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/life-ring.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/life-ring.svg new file mode 100644 index 00000000..13db1376 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/life-ring.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lightbulb.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lightbulb.svg new file mode 100644 index 00000000..09dc9797 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lightbulb.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/line.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/line.svg new file mode 100644 index 00000000..1915b742 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/link.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/link.svg new file mode 100644 index 00000000..0fd83436 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/link.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linkedin-in.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linkedin-in.svg new file mode 100644 index 00000000..23859c38 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linkedin-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linkedin.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linkedin.svg new file mode 100644 index 00000000..95faf46b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linux.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linux.svg new file mode 100644 index 00000000..0d7065ac --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lira-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lira-sign.svg new file mode 100644 index 00000000..b2b5b151 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lira-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-alt.svg new file mode 100644 index 00000000..49d589fb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-ol.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-ol.svg new file mode 100644 index 00000000..3f9f186a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-ol.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-ul.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-ul.svg new file mode 100644 index 00000000..148b8a4d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list-ul.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list.svg new file mode 100644 index 00000000..3736db3b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/list.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/location-arrow.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/location-arrow.svg new file mode 100644 index 00000000..1456cc9c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/location-arrow.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lock-open.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lock-open.svg new file mode 100644 index 00000000..dfbb2c0a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lock-open.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lock.svg new file mode 100644 index 00000000..dc05d240 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-down.svg new file mode 100644 index 00000000..c8d26904 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-left.svg new file mode 100644 index 00000000..87477893 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-right.svg new file mode 100644 index 00000000..aa9dace0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-up.svg new file mode 100644 index 00000000..84a51e0a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/long-arrow-alt-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/low-vision.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/low-vision.svg new file mode 100644 index 00000000..023fda99 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/low-vision.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/magic.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/magic.svg new file mode 100644 index 00000000..f7c5f042 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/magic.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/magnet.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/magnet.svg new file mode 100644 index 00000000..5b8ce50e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/magnet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mailchimp.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mailchimp.svg new file mode 100644 index 00000000..1516c196 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mailchimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/male.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/male.svg new file mode 100644 index 00000000..910f6405 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/male.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-marker-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-marker-alt.svg new file mode 100644 index 00000000..55eb01a2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-marker-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-marker.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-marker.svg new file mode 100644 index 00000000..86a03e68 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-marker.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-pin.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-pin.svg new file mode 100644 index 00000000..8c8e0080 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-pin.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-signs.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-signs.svg new file mode 100644 index 00000000..5f65fee4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map-signs.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map.svg new file mode 100644 index 00000000..e40b792e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/map.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/markdown.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/markdown.svg new file mode 100644 index 00000000..9596cd15 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-double.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-double.svg new file mode 100644 index 00000000..4f35884d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-double.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke-h.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke-h.svg new file mode 100644 index 00000000..ce13b7f1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke-h.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke-v.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke-v.svg new file mode 100644 index 00000000..dd4f292c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke-v.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke.svg new file mode 100644 index 00000000..9162d84e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars-stroke.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars.svg new file mode 100644 index 00000000..db999f32 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mars.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medium-m.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medium-m.svg new file mode 100644 index 00000000..84037271 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medium-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medium.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medium.svg new file mode 100644 index 00000000..580d2189 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medkit.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medkit.svg new file mode 100644 index 00000000..f9310885 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/medkit.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/meh.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/meh.svg new file mode 100644 index 00000000..b6babe45 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/meh.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mercury.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mercury.svg new file mode 100644 index 00000000..b10ee4dc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mercury.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microblog.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microblog.svg new file mode 100644 index 00000000..a062147c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microblog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microchip.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microchip.svg new file mode 100644 index 00000000..466ff3f8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microchip.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microphone-slash.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microphone-slash.svg new file mode 100644 index 00000000..fbef670d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microphone-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microphone.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microphone.svg new file mode 100644 index 00000000..55a4d95f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microphone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microsoft.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microsoft.svg new file mode 100644 index 00000000..f62fdb84 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mins-outline.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mins-outline.svg new file mode 100644 index 00000000..3f5d9ca8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mins-outline.svg @@ -0,0 +1,3 @@ + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus-circle.svg new file mode 100644 index 00000000..400eb0e7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus-square.svg new file mode 100644 index 00000000..6a3e02e5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus.svg new file mode 100644 index 00000000..dbfe87f7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mobile-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mobile-alt.svg new file mode 100644 index 00000000..43eff86f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mobile-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mobile.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mobile.svg new file mode 100644 index 00000000..47127c1b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mobile.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/money-bill-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/money-bill-alt.svg new file mode 100644 index 00000000..0323ada5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/money-bill-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/moon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/moon.svg new file mode 100644 index 00000000..272440cb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/moon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/motorcycle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/motorcycle.svg new file mode 100644 index 00000000..dfb4a914 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/motorcycle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mouse-pointer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mouse-pointer.svg new file mode 100644 index 00000000..07209062 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/mouse-pointer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/music.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/music.svg new file mode 100644 index 00000000..eed228b6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/music.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/napster.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/napster.svg new file mode 100644 index 00000000..c2c911a9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/napster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/newspaper.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/newspaper.svg new file mode 100644 index 00000000..99f3f30a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/newspaper.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/node-js.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/node-js.svg new file mode 100644 index 00000000..ae1cd457 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/node-js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/node.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/node.svg new file mode 100644 index 00000000..8cd84dca --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/node.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/npm.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/npm.svg new file mode 100644 index 00000000..a66b139f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/object-group.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/object-group.svg new file mode 100644 index 00000000..2545d8a1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/object-group.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/object-ungroup.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/object-ungroup.svg new file mode 100644 index 00000000..d503a5eb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/object-ungroup.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/openid.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/openid.svg new file mode 100644 index 00000000..e1ec7e06 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/openid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/opera.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/opera.svg new file mode 100644 index 00000000..5cb4b296 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outdent.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outdent.svg new file mode 100644 index 00000000..9956a8ff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outdent.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-address-book.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-address-book.svg new file mode 100644 index 00000000..4fc615ea --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-address-card.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-address-card.svg new file mode 100644 index 00000000..e85805ff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-address-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-angry.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-angry.svg new file mode 100644 index 00000000..b233d4e4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-down.svg new file mode 100644 index 00000000..f74020a2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-left.svg new file mode 100644 index 00000000..49d48ca2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-right.svg new file mode 100644 index 00000000..542a0357 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-up.svg new file mode 100644 index 00000000..f0f5c0ea --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-arrow-alt-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bell-slash.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bell-slash.svg new file mode 100644 index 00000000..eae738d5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bell.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bell.svg new file mode 100644 index 00000000..85657ff9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bookmark.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bookmark.svg new file mode 100644 index 00000000..5c4f7d20 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-building.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-building.svg new file mode 100644 index 00000000..f92aaa7c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-alt.svg new file mode 100644 index 00000000..3cef7123 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-check.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-check.svg new file mode 100644 index 00000000..294b8991 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-minus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-minus.svg new file mode 100644 index 00000000..379ee776 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-plus.svg new file mode 100644 index 00000000..08bcd088 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-times.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-times.svg new file mode 100644 index 00000000..c5095113 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar.svg new file mode 100644 index 00000000..74e52215 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-down.svg new file mode 100644 index 00000000..9448e3da --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-left.svg new file mode 100644 index 00000000..8f8b952d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-right.svg new file mode 100644 index 00000000..4fef0f32 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-up.svg new file mode 100644 index 00000000..1868faee --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-caret-square-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-chart-bar.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-chart-bar.svg new file mode 100644 index 00000000..9a185998 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-check-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-check-circle.svg new file mode 100644 index 00000000..c08b7464 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-check-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-check-square.svg new file mode 100644 index 00000000..28acc4cb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-circle.svg new file mode 100644 index 00000000..c916c8d9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clipboard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clipboard.svg new file mode 100644 index 00000000..562aa10c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clock.svg new file mode 100644 index 00000000..be67bc08 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clone.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clone.svg new file mode 100644 index 00000000..fb1cd635 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-closed-captioning.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-closed-captioning.svg new file mode 100644 index 00000000..c121f45a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment-alt.svg new file mode 100644 index 00000000..a30ba613 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment-dots.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment-dots.svg new file mode 100644 index 00000000..b0db7c7f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment.svg new file mode 100644 index 00000000..dc06d7b2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comments.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comments.svg new file mode 100644 index 00000000..ba879755 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-compass.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-compass.svg new file mode 100644 index 00000000..f91ced15 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-copy.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-copy.svg new file mode 100644 index 00000000..2fe9c467 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-copyright.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-copyright.svg new file mode 100644 index 00000000..20200db8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-credit-card.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-credit-card.svg new file mode 100644 index 00000000..0831010b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-dizzy.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-dizzy.svg new file mode 100644 index 00000000..92d31fe2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-dot-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-dot-circle.svg new file mode 100644 index 00000000..b99c46f1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-dot-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-edit.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-edit.svg new file mode 100644 index 00000000..bd59b432 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-envelope-open.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-envelope-open.svg new file mode 100644 index 00000000..e8e973dd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-envelope.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-envelope.svg new file mode 100644 index 00000000..24e6760c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-eye-slash.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-eye-slash.svg new file mode 100644 index 00000000..7153e1c0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-eye.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-eye.svg new file mode 100644 index 00000000..353af116 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-alt.svg new file mode 100644 index 00000000..1f3c705d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-archive.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-archive.svg new file mode 100644 index 00000000..5380074c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-audio.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-audio.svg new file mode 100644 index 00000000..79c64abf --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-code.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-code.svg new file mode 100644 index 00000000..6ca3b1fa --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-excel.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-excel.svg new file mode 100644 index 00000000..1b952cca --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-image.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-image.svg new file mode 100644 index 00000000..77a3da4c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-pdf.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-pdf.svg new file mode 100644 index 00000000..4d036004 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-powerpoint.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-powerpoint.svg new file mode 100644 index 00000000..3eb13381 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-video.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-video.svg new file mode 100644 index 00000000..3da4d4bf --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-word.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-word.svg new file mode 100644 index 00000000..6a5a51a2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file.svg new file mode 100644 index 00000000..a3e4b84c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-flag.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-flag.svg new file mode 100644 index 00000000..84863f21 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-flushed.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-flushed.svg new file mode 100644 index 00000000..39533890 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-flushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-folder-open.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-folder-open.svg new file mode 100644 index 00000000..6589eb29 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-folder.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-folder.svg new file mode 100644 index 00000000..230556b7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-frown-open.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-frown-open.svg new file mode 100644 index 00000000..a7cefa75 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-frown-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-frown.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-frown.svg new file mode 100644 index 00000000..017b1399 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-futbol.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-futbol.svg new file mode 100644 index 00000000..540972f3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-gem.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-gem.svg new file mode 100644 index 00000000..d940053a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grimace.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grimace.svg new file mode 100644 index 00000000..74f2aa21 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grimace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-alt.svg new file mode 100644 index 00000000..c64bc8bd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-beam-sweat.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-beam-sweat.svg new file mode 100644 index 00000000..4903d88e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-beam-sweat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-beam.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-beam.svg new file mode 100644 index 00000000..351f9365 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-hearts.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-hearts.svg new file mode 100644 index 00000000..49cfd39b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-hearts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-squint-tears.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-squint-tears.svg new file mode 100644 index 00000000..36e8243d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-squint-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-squint.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-squint.svg new file mode 100644 index 00000000..cdc71352 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-stars.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-stars.svg new file mode 100644 index 00000000..7cec1312 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tears.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tears.svg new file mode 100644 index 00000000..f9c40f18 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue-squint.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue-squint.svg new file mode 100644 index 00000000..6c9bc850 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue-wink.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue-wink.svg new file mode 100644 index 00000000..0ba07c34 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue.svg new file mode 100644 index 00000000..59d6b538 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-wink.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-wink.svg new file mode 100644 index 00000000..3c8472d6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin.svg new file mode 100644 index 00000000..7bdf15f0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-lizard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-lizard.svg new file mode 100644 index 00000000..84747458 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-lizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-paper.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-paper.svg new file mode 100644 index 00000000..8efe2ba1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-peace.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-peace.svg new file mode 100644 index 00000000..5390061a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-down.svg new file mode 100644 index 00000000..8987b5bc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-left.svg new file mode 100644 index 00000000..47ae6bbd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-right.svg new file mode 100644 index 00000000..cd6d0b65 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-up.svg new file mode 100644 index 00000000..7375f964 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-point-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-pointer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-pointer.svg new file mode 100644 index 00000000..ba32921e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-rock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-rock.svg new file mode 100644 index 00000000..c8142cbb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-rock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-scissors.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-scissors.svg new file mode 100644 index 00000000..061773db --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-spock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-spock.svg new file mode 100644 index 00000000..d1ce7cf9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hand-spock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-handshake.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-handshake.svg new file mode 100644 index 00000000..354356a7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hdd.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hdd.svg new file mode 100644 index 00000000..aa0b01f6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-heart.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-heart.svg new file mode 100644 index 00000000..104fe7f6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hospital.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hospital.svg new file mode 100644 index 00000000..0baebd1a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hourglass.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hourglass.svg new file mode 100644 index 00000000..75ae09fb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-id-badge.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-id-badge.svg new file mode 100644 index 00000000..e3186eb6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-id-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-id-card.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-id-card.svg new file mode 100644 index 00000000..14c0d98e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-image.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-image.svg new file mode 100644 index 00000000..4526ee2b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-images.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-images.svg new file mode 100644 index 00000000..f3e84a28 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-keyboard.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-keyboard.svg new file mode 100644 index 00000000..8ccfbfe5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss-beam.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss-beam.svg new file mode 100644 index 00000000..5cb95b7b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss-wink-heart.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss-wink-heart.svg new file mode 100644 index 00000000..01b70ae4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss.svg new file mode 100644 index 00000000..e2dcc734 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-beam.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-beam.svg new file mode 100644 index 00000000..b791fd30 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-squint.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-squint.svg new file mode 100644 index 00000000..d68eb372 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-wink.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-wink.svg new file mode 100644 index 00000000..197afd6c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh.svg new file mode 100644 index 00000000..728fbf06 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-lemon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-lemon.svg new file mode 100644 index 00000000..b8d9cb2a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-life-ring.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-life-ring.svg new file mode 100644 index 00000000..d0aeb11c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-lightbulb.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-lightbulb.svg new file mode 100644 index 00000000..1b175db6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-list-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-list-alt.svg new file mode 100644 index 00000000..5da13df5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-list-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-map.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-map.svg new file mode 100644 index 00000000..185ccce4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh-blank.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh-blank.svg new file mode 100644 index 00000000..f2c7ee48 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh-rolling-eyes.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh-rolling-eyes.svg new file mode 100644 index 00000000..f3dab834 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh.svg new file mode 100644 index 00000000..fc6bb6fb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-minus-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-minus-square.svg new file mode 100644 index 00000000..bda25dc8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-money-bill-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-money-bill-alt.svg new file mode 100644 index 00000000..85a89504 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-money-bill-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-moon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-moon.svg new file mode 100644 index 00000000..54c78535 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-newspaper.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-newspaper.svg new file mode 100644 index 00000000..84539c8f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-object-group.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-object-group.svg new file mode 100644 index 00000000..0bf19f2f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-object-ungroup.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-object-ungroup.svg new file mode 100644 index 00000000..6a2b9d4b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-paper-plane.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-paper-plane.svg new file mode 100644 index 00000000..cef3310d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-pause-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-pause-circle.svg new file mode 100644 index 00000000..268cec68 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-play-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-play-circle.svg new file mode 100644 index 00000000..7030c90e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-plus-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-plus-square.svg new file mode 100644 index 00000000..af4512be --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-question-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-question-circle.svg new file mode 100644 index 00000000..a78517dc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-registered.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-registered.svg new file mode 100644 index 00000000..bd060c83 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sad-cry.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sad-cry.svg new file mode 100644 index 00000000..3193d172 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sad-tear.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sad-tear.svg new file mode 100644 index 00000000..65170d2c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-save.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-save.svg new file mode 100644 index 00000000..cae30ed9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-share-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-share-square.svg new file mode 100644 index 00000000..f857aa75 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-share-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile-beam.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile-beam.svg new file mode 100644 index 00000000..a4177dde --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile-wink.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile-wink.svg new file mode 100644 index 00000000..16e2aaaa --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile.svg new file mode 100644 index 00000000..7a198976 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-snowflake.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-snowflake.svg new file mode 100644 index 00000000..21cf78a8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-square.svg new file mode 100644 index 00000000..cb882b99 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-star-half.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-star-half.svg new file mode 100644 index 00000000..92d8f00d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-star.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-star.svg new file mode 100644 index 00000000..c2f39911 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sticky-note.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sticky-note.svg new file mode 100644 index 00000000..1c0fe53a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sticky-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-stop-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-stop-circle.svg new file mode 100644 index 00000000..34dbeb04 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sun.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sun.svg new file mode 100644 index 00000000..3691e5d9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-surprise.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-surprise.svg new file mode 100644 index 00000000..a56e2fdb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-thumbs-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-thumbs-down.svg new file mode 100644 index 00000000..34320143 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-thumbs-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-thumbs-up.svg new file mode 100644 index 00000000..689868d5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-times-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-times-circle.svg new file mode 100644 index 00000000..3fa26ec9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-tired.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-tired.svg new file mode 100644 index 00000000..b6e4a5b2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-trash-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-trash-alt.svg new file mode 100644 index 00000000..81ea9b63 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-user-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-user-circle.svg new file mode 100644 index 00000000..160702d4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-user.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-user.svg new file mode 100644 index 00000000..749e58eb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-close.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-close.svg new file mode 100644 index 00000000..8787f671 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-maximize.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-maximize.svg new file mode 100644 index 00000000..8bf6aa9b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-minimize.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-minimize.svg new file mode 100644 index 00000000..a7ee6411 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-restore.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-restore.svg new file mode 100644 index 00000000..c8c9682a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/outline-window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paint-brush.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paint-brush.svg new file mode 100644 index 00000000..7bd12baa --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paint-brush.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pallet.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pallet.svg new file mode 100644 index 00000000..4a608e76 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pallet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paper-plane.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paper-plane.svg new file mode 100644 index 00000000..ca99c0a2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paper-plane.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paperclip.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paperclip.svg new file mode 100644 index 00000000..03bda0c0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paperclip.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paragraph.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paragraph.svg new file mode 100644 index 00000000..3adfdf05 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paragraph.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paste.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paste.svg new file mode 100644 index 00000000..e9610402 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paste.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/patreon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/patreon.svg new file mode 100644 index 00000000..5eae6c02 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/patreon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pause-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pause-circle.svg new file mode 100644 index 00000000..0e31b907 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pause-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pause.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pause.svg new file mode 100644 index 00000000..7aeff21a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pause.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paw.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paw.svg new file mode 100644 index 00000000..aa1fd5c2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paw.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paypal.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paypal.svg new file mode 100644 index 00000000..764cc23d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pen-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pen-square.svg new file mode 100644 index 00000000..e8fac703 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pen-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pencil-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pencil-alt.svg new file mode 100644 index 00000000..cef94065 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pencil-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/percent.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/percent.svg new file mode 100644 index 00000000..d6a2e215 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/percent.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone-square.svg new file mode 100644 index 00000000..fa595ba1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone-volume.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone-volume.svg new file mode 100644 index 00000000..20866df7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone-volume.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone.svg new file mode 100644 index 00000000..442e49e8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/phone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/php.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/php.svg new file mode 100644 index 00000000..0ad49e7c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/php.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pills.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pills.svg new file mode 100644 index 00000000..2bb25580 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pills.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest-p.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest-p.svg new file mode 100644 index 00000000..45e438e6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest-p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest-square.svg new file mode 100644 index 00000000..70c47716 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest.svg new file mode 100644 index 00000000..37180394 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plane.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plane.svg new file mode 100644 index 00000000..ad5e11d2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plane.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/play-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/play-circle.svg new file mode 100644 index 00000000..755d683c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/play-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/play.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/play.svg new file mode 100644 index 00000000..1018babe --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/play.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plug.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plug.svg new file mode 100644 index 00000000..6c43db4b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plug.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-circle.svg new file mode 100644 index 00000000..964f09e1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-circle.svg @@ -0,0 +1,3 @@ + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-outline.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-outline.svg new file mode 100644 index 00000000..45aa2381 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-outline.svg @@ -0,0 +1,3 @@ + + + diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-square.svg new file mode 100644 index 00000000..f67d457a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus.svg new file mode 100644 index 00000000..3b571f74 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/podcast.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/podcast.svg new file mode 100644 index 00000000..16371f81 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/podcast.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pound-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pound-sign.svg new file mode 100644 index 00000000..97d73453 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/pound-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/power-off.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/power-off.svg new file mode 100644 index 00000000..4a7386c2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/power-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/print.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/print.svg new file mode 100644 index 00000000..23f8b272 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/print.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/puzzle-piece.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/puzzle-piece.svg new file mode 100644 index 00000000..1ed92007 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/puzzle-piece.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/python.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/python.svg new file mode 100644 index 00000000..ad299483 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/qrcode.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/qrcode.svg new file mode 100644 index 00000000..bf75efcb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/qrcode.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/question-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/question-circle.svg new file mode 100644 index 00000000..696d251a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/question-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/question.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/question.svg new file mode 100644 index 00000000..613048f1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/question.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quora.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quora.svg new file mode 100644 index 00000000..d783db8c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quote-left.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quote-left.svg new file mode 100644 index 00000000..e2256271 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quote-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quote-right.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quote-right.svg new file mode 100644 index 00000000..1813aa37 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/quote-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/r-project.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/r-project.svg new file mode 100644 index 00000000..4f2bb0fb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/r-project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/random.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/random.svg new file mode 100644 index 00000000..3fca244e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/random.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/raspberry-pi.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/raspberry-pi.svg new file mode 100644 index 00000000..3eb9735c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/raspberry-pi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/react.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/react.svg new file mode 100644 index 00000000..91f3535e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/readme.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/readme.svg new file mode 100644 index 00000000..4879e49d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/readme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/recycle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/recycle.svg new file mode 100644 index 00000000..7cae9b39 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/recycle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit-alien.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit-alien.svg new file mode 100644 index 00000000..6c426e8f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit-alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit-square.svg new file mode 100644 index 00000000..ea852dc5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit.svg new file mode 100644 index 00000000..2de59d46 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redhat.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redhat.svg new file mode 100644 index 00000000..b521cb8e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redhat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redo-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redo-alt.svg new file mode 100644 index 00000000..e4aa22b8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redo-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redo.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redo.svg new file mode 100644 index 00000000..f75b0fc1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/redo.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/registered.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/registered.svg new file mode 100644 index 00000000..211b5b27 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/registered.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reply-all.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reply-all.svg new file mode 100644 index 00000000..ede1b88a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reply-all.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reply.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reply.svg new file mode 100644 index 00000000..ec9b9238 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/reply.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/retweet.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/retweet.svg new file mode 100644 index 00000000..7ac13318 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/retweet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rev.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rev.svg new file mode 100644 index 00000000..2ca87bc7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rev.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/road.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/road.svg new file mode 100644 index 00000000..dfa4d003 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/road.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rocket.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rocket.svg new file mode 100644 index 00000000..74fa0998 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rocket.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rss-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rss-square.svg new file mode 100644 index 00000000..e8f39958 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rss-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rss.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rss.svg new file mode 100644 index 00000000..36d67b1f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rss.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ruble-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ruble-sign.svg new file mode 100644 index 00000000..d934a606 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ruble-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rupee-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rupee-sign.svg new file mode 100644 index 00000000..e5a5a904 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/rupee-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/safari.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/safari.svg new file mode 100644 index 00000000..6aef70c6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/safari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/salesforce.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/salesforce.svg new file mode 100644 index 00000000..1eb5576d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/salesforce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sass.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sass.svg new file mode 100644 index 00000000..9024b312 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/save.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/save.svg new file mode 100644 index 00000000..7f4f744b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/save.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/scribd.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/scribd.svg new file mode 100644 index 00000000..18a9421a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/scribd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search-minus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search-minus.svg new file mode 100644 index 00000000..af2fcd02 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search-plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search-plus.svg new file mode 100644 index 00000000..e5b4130d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search.svg new file mode 100644 index 00000000..f6e0cb66 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/search.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/server.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/server.svg new file mode 100644 index 00000000..92b8af32 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/server.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-alt-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-alt-square.svg new file mode 100644 index 00000000..cb560790 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-alt-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-alt.svg new file mode 100644 index 00000000..a6fbf560 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-square.svg new file mode 100644 index 00000000..089f6ea5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share.svg new file mode 100644 index 00000000..960b9d0e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/share.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shekel-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shekel-sign.svg new file mode 100644 index 00000000..7acdb957 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shekel-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shield-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shield-alt.svg new file mode 100644 index 00000000..ffd626f7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shield-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ship.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ship.svg new file mode 100644 index 00000000..755c127d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ship.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shipping-fast.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shipping-fast.svg new file mode 100644 index 00000000..75028d49 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shipping-fast.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-bag.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-bag.svg new file mode 100644 index 00000000..eda7e4aa --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-bag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-basket.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-basket.svg new file mode 100644 index 00000000..494b8493 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-basket.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-cart.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-cart.svg new file mode 100644 index 00000000..fa3dc299 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shopping-cart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shower.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shower.svg new file mode 100644 index 00000000..f7962adc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/shower.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-in-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-in-alt.svg new file mode 100644 index 00000000..888a74d1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-in-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-language.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-language.svg new file mode 100644 index 00000000..ecddd573 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-language.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-out-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-out-alt.svg new file mode 100644 index 00000000..e1f408b9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sign-out-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/signal.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/signal.svg new file mode 100644 index 00000000..a419ac58 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/signal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sitemap.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sitemap.svg new file mode 100644 index 00000000..23109340 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sitemap.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sketch.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sketch.svg new file mode 100644 index 00000000..081ec6ad --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sketch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/skype.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/skype.svg new file mode 100644 index 00000000..ddeefb75 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slack-hash.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slack-hash.svg new file mode 100644 index 00000000..1f0dd8bb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slack-hash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slack.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slack.svg new file mode 100644 index 00000000..45d2553f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sliders-h.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sliders-h.svg new file mode 100644 index 00000000..0e356c16 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sliders-h.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slideshare.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slideshare.svg new file mode 100644 index 00000000..0c542d03 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/slideshare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat-ghost.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat-ghost.svg new file mode 100644 index 00000000..8c0ffd19 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat-ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat-square.svg new file mode 100644 index 00000000..fd626465 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat.svg new file mode 100644 index 00000000..ecf5cf4e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snowflake.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snowflake.svg new file mode 100644 index 00000000..75cb400c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/snowflake.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-alpha-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-alpha-down.svg new file mode 100644 index 00000000..ed9cb04a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-alpha-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-alpha-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-alpha-up.svg new file mode 100644 index 00000000..5e3efb85 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-alpha-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-amount-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-amount-down.svg new file mode 100644 index 00000000..ab1b1901 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-amount-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-amount-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-amount-up.svg new file mode 100644 index 00000000..b9cdd25f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-amount-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-down.svg new file mode 100644 index 00000000..f819e79e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-numeric-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-numeric-down.svg new file mode 100644 index 00000000..1d0b543c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-numeric-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-numeric-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-numeric-up.svg new file mode 100644 index 00000000..da26559c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-numeric-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-up.svg new file mode 100644 index 00000000..cf5a8d8b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort.svg new file mode 100644 index 00000000..94a57d62 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sort.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/space-shuttle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/space-shuttle.svg new file mode 100644 index 00000000..aabde48b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/space-shuttle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/speaker-deck.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/speaker-deck.svg new file mode 100644 index 00000000..633c8950 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/speaker-deck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/spinner.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/spinner.svg new file mode 100644 index 00000000..5095092b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/spinner.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/spotify.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/spotify.svg new file mode 100644 index 00000000..718d2878 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/spotify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/square-full.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/square-full.svg new file mode 100644 index 00000000..739057ff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/square-full.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/square.svg new file mode 100644 index 00000000..49b37b91 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stack-exchange.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stack-exchange.svg new file mode 100644 index 00000000..fa91f82c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stack-exchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stack-overflow.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stack-overflow.svg new file mode 100644 index 00000000..c1793240 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stack-overflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/star-half.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/star-half.svg new file mode 100644 index 00000000..7e602fe9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/star-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/star.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/star.svg new file mode 100644 index 00000000..a45dd6b7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/star.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/step-backward.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/step-backward.svg new file mode 100644 index 00000000..2ed66ab4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/step-backward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/step-forward.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/step-forward.svg new file mode 100644 index 00000000..dc2fff1d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/step-forward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stethoscope.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stethoscope.svg new file mode 100644 index 00000000..547d693e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stethoscope.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sticky-note.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sticky-note.svg new file mode 100644 index 00000000..c6b9f01f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sticky-note.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stop-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stop-circle.svg new file mode 100644 index 00000000..273af40d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stop-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stop.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stop.svg new file mode 100644 index 00000000..49b37b91 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stopwatch.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stopwatch.svg new file mode 100644 index 00000000..318dda5e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stopwatch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/street-view.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/street-view.svg new file mode 100644 index 00000000..a20d294f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/street-view.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/strikethrough.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/strikethrough.svg new file mode 100644 index 00000000..84cf5cec --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/strikethrough.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stripe-s.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stripe-s.svg new file mode 100644 index 00000000..acae317b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stripe-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stripe.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stripe.svg new file mode 100644 index 00000000..d38f0b43 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/subscript.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/subscript.svg new file mode 100644 index 00000000..492e4784 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/subscript.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/subway.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/subway.svg new file mode 100644 index 00000000..d3e41150 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/subway.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/suitcase.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/suitcase.svg new file mode 100644 index 00000000..ca636caf --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/suitcase.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sun.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sun.svg new file mode 100644 index 00000000..8995329f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sun.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/superscript.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/superscript.svg new file mode 100644 index 00000000..413cde2d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/superscript.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/swift.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/swift.svg new file mode 100644 index 00000000..27ddeacb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/swift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sync-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sync-alt.svg new file mode 100644 index 00000000..ec2994fc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sync-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sync.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sync.svg new file mode 100644 index 00000000..94fc91ab --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/sync.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/syringe.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/syringe.svg new file mode 100644 index 00000000..b5d34135 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/syringe.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/table-tennis.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/table-tennis.svg new file mode 100644 index 00000000..cfa5ead4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/table-tennis.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/table.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/table.svg new file mode 100644 index 00000000..73f0357c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/table.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tablet-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tablet-alt.svg new file mode 100644 index 00000000..6a7c4b93 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tablet-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tablet.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tablet.svg new file mode 100644 index 00000000..b2675357 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tablet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tachometer-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tachometer-alt.svg new file mode 100644 index 00000000..4d3ad5ba --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tachometer-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tag.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tag.svg new file mode 100644 index 00000000..b5dca07f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tags.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tags.svg new file mode 100644 index 00000000..df22c52a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tags.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tasks.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tasks.svg new file mode 100644 index 00000000..be535eee --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tasks.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/taxi.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/taxi.svg new file mode 100644 index 00000000..c65696b0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/taxi.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/telegram-plane.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/telegram-plane.svg new file mode 100644 index 00000000..9a03f172 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/telegram-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/telegram.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/telegram.svg new file mode 100644 index 00000000..d60b0948 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/terminal.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/terminal.svg new file mode 100644 index 00000000..046d9d0c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/terminal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/text-height.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/text-height.svg new file mode 100644 index 00000000..adcde366 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/text-height.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/text-width.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/text-width.svg new file mode 100644 index 00000000..0d4acff9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/text-width.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th-large.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th-large.svg new file mode 100644 index 00000000..f0e0d88c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th-large.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th-list.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th-list.svg new file mode 100644 index 00000000..b6a19113 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th-list.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th.svg new file mode 100644 index 00000000..99982aef --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/th.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-empty.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-empty.svg new file mode 100644 index 00000000..197c2e0a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-empty.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-full.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-full.svg new file mode 100644 index 00000000..e2095a23 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-full.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-half.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-half.svg new file mode 100644 index 00000000..849f711f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-quarter.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-quarter.svg new file mode 100644 index 00000000..573ef8f2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-quarter.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-three-quarters.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-three-quarters.svg new file mode 100644 index 00000000..73b9bd66 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer-three-quarters.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer.svg new file mode 100644 index 00000000..0ec3449a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thermometer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbs-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbs-down.svg new file mode 100644 index 00000000..5b8e6a4a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbs-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbs-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbs-up.svg new file mode 100644 index 00000000..22b60f1e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbs-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbtack.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbtack.svg new file mode 100644 index 00000000..45e90a84 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/thumbtack.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ticket-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ticket-alt.svg new file mode 100644 index 00000000..f7f00358 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ticket-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tiktok.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tiktok.svg new file mode 100644 index 00000000..b077a033 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tiktok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/times-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/times-circle.svg new file mode 100644 index 00000000..5ff5dbcb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/times-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/times.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/times.svg new file mode 100644 index 00000000..5feff025 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/times.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tint.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tint.svg new file mode 100644 index 00000000..8882029c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tint.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/toggle-off.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/toggle-off.svg new file mode 100644 index 00000000..70c4e5e8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/toggle-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/toggle-on.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/toggle-on.svg new file mode 100644 index 00000000..6b0c98a2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/toggle-on.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trademark.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trademark.svg new file mode 100644 index 00000000..22457d6a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trademark.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/train.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/train.svg new file mode 100644 index 00000000..ea67331e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/train.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/transgender-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/transgender-alt.svg new file mode 100644 index 00000000..41334cec --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/transgender-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/transgender.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/transgender.svg new file mode 100644 index 00000000..3476e599 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/transgender.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trash-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trash-alt.svg new file mode 100644 index 00000000..85d19e05 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trash-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trash.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trash.svg new file mode 100644 index 00000000..567bcb24 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tree.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tree.svg new file mode 100644 index 00000000..4fd776cd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tree.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trello.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trello.svg new file mode 100644 index 00000000..aa3c5789 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trophy.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trophy.svg new file mode 100644 index 00000000..65c4983c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/trophy.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/truck.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/truck.svg new file mode 100644 index 00000000..68615dbc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/truck.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tty.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tty.svg new file mode 100644 index 00000000..c0f61c1f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tty.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tumblr-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tumblr-square.svg new file mode 100644 index 00000000..a9610841 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tumblr-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tumblr.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tumblr.svg new file mode 100644 index 00000000..a9e93987 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tv.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tv.svg new file mode 100644 index 00000000..dfc80926 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/tv.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitch.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitch.svg new file mode 100644 index 00000000..a3c407a5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitter-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitter-square.svg new file mode 100644 index 00000000..9b77572d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitter-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitter.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitter.svg new file mode 100644 index 00000000..3db10f68 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ubuntu.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ubuntu.svg new file mode 100644 index 00000000..0eb09b58 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/ubuntu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/umbrella.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/umbrella.svg new file mode 100644 index 00000000..58e3f1d1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/umbrella.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/underline.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/underline.svg new file mode 100644 index 00000000..bbca5118 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/underline.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/undo-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/undo-alt.svg new file mode 100644 index 00000000..cb88241f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/undo-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/undo.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/undo.svg new file mode 100644 index 00000000..a46b1418 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/undo.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/universal-access.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/universal-access.svg new file mode 100644 index 00000000..39598e19 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/universal-access.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/university.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/university.svg new file mode 100644 index 00000000..4916f4a6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/university.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlink.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlink.svg new file mode 100644 index 00000000..ce2682b6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlink.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlock-alt.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlock-alt.svg new file mode 100644 index 00000000..72e91612 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlock-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlock.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlock.svg new file mode 100644 index 00000000..86f3bacc --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/unlock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/upload.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/upload.svg new file mode 100644 index 00000000..3d395f06 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/upload.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/usb.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/usb.svg new file mode 100644 index 00000000..51177999 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/usb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-circle.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-circle.svg new file mode 100644 index 00000000..876562fd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-md.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-md.svg new file mode 100644 index 00000000..5663bc5a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-md.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-plus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-plus.svg new file mode 100644 index 00000000..3b70cb57 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-secret.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-secret.svg new file mode 100644 index 00000000..105caa03 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-secret.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-times.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-times.svg new file mode 100644 index 00000000..e381e0cb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user-times.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user.svg new file mode 100644 index 00000000..b28ef9e4 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/user.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/users.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/users.svg new file mode 100644 index 00000000..337ef5e5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/users.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/usps.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/usps.svg new file mode 100644 index 00000000..366e5941 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/usps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/utensil-spoon.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/utensil-spoon.svg new file mode 100644 index 00000000..2c771a5d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/utensil-spoon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/utensils.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/utensils.svg new file mode 100644 index 00000000..8e3d6326 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/utensils.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus-double.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus-double.svg new file mode 100644 index 00000000..e7190ab1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus-double.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus-mars.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus-mars.svg new file mode 100644 index 00000000..7a4cd1ba --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus-mars.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus.svg new file mode 100644 index 00000000..2db126a0 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/venus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/video.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/video.svg new file mode 100644 index 00000000..ed6be0c2 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/video.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo-square.svg new file mode 100644 index 00000000..1f401452 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo-v.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo-v.svg new file mode 100644 index 00000000..2ebd6548 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo.svg new file mode 100644 index 00000000..9b3d6a9c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volleyball-ball.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volleyball-ball.svg new file mode 100644 index 00000000..e477af2d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volleyball-ball.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-down.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-down.svg new file mode 100644 index 00000000..2bcd986e --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-off.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-off.svg new file mode 100644 index 00000000..cc57a917 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-up.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-up.svg new file mode 100644 index 00000000..ea001f2a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/volume-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vuejs.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vuejs.svg new file mode 100644 index 00000000..aa65526f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/warehouse.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/warehouse.svg new file mode 100644 index 00000000..4640745d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/warehouse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weibo.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weibo.svg new file mode 100644 index 00000000..a566b604 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weight.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weight.svg new file mode 100644 index 00000000..87eb4368 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weight.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weixin.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weixin.svg new file mode 100644 index 00000000..a4b2061f --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/weixin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/whatsapp-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/whatsapp-square.svg new file mode 100644 index 00000000..f52bb4d6 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/whatsapp-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/whatsapp.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/whatsapp.svg new file mode 100644 index 00000000..e5bc87b1 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wheelchair.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wheelchair.svg new file mode 100644 index 00000000..656acca8 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wheelchair.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wifi.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wifi.svg new file mode 100644 index 00000000..fc9f6c83 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wifi.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wikipedia-w.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wikipedia-w.svg new file mode 100644 index 00000000..4d33bacd --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wikipedia-w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-close.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-close.svg new file mode 100644 index 00000000..0a573da9 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-close.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-maximize.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-maximize.svg new file mode 100644 index 00000000..730a45f5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-maximize.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-minimize.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-minimize.svg new file mode 100644 index 00000000..de09dbff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-minimize.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-restore.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-restore.svg new file mode 100644 index 00000000..86c49f68 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/window-restore.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/windows.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/windows.svg new file mode 100644 index 00000000..ea188719 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/won-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/won-sign.svg new file mode 100644 index 00000000..a3cd55de --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/won-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wordpress-simple.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wordpress-simple.svg new file mode 100644 index 00000000..e795c12a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wordpress-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wordpress.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wordpress.svg new file mode 100644 index 00000000..27157982 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wpforms.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wpforms.svg new file mode 100644 index 00000000..f5b1fc53 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wpforms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wrench.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wrench.svg new file mode 100644 index 00000000..cf356200 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/wrench.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yammer.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yammer.svg new file mode 100644 index 00000000..62ff9f69 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yarn.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yarn.svg new file mode 100644 index 00000000..9b756e25 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yarn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yen-sign.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yen-sign.svg new file mode 100644 index 00000000..f8a53793 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yen-sign.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yoast.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yoast.svg new file mode 100644 index 00000000..194d904d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/yoast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/youtube-square.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/youtube-square.svg new file mode 100644 index 00000000..6080dd63 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/youtube-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/youtube.svg b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/youtube.svg new file mode 100644 index 00000000..adfe427c --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/icons/ui/svg/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/images/flags/flags.png b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/images/flags/flags.png new file mode 100644 index 00000000..cdd33c3b Binary files /dev/null and b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/images/flags/flags.png differ diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/input.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/input.scss new file mode 100644 index 00000000..3eef7ebb --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/input.scss @@ -0,0 +1,638 @@ +/*! + * # Semantic UI - Input + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use 'sass:math'; +@use 'colors'; + +/******************************* + Input + *******************************/ + +/*------------------- + Element + --------------------*/ + +$inputFont: variables.$sansSerifFont; //$pageFont; +$inputFontSize: 15px; +$verticalPadding: variables.$inputVerticalPadding; +$horizontalPadding: variables.$inputHorizontalPadding; + +$lineHeight: variables.$inputLineHeight; +$lineHeightOffset: math.div(($lineHeight - 1em), 2); + +$padding: ($verticalPadding - $lineHeightOffset) $horizontalPadding; + +$textAlign: left; +$background: colors.$inputBackground; +$borderWidth: 1px; +$border: $borderWidth solid colors.$borderColor; +$boxShadow: none; + +$borderRadius: 5px; // $defaultBorderRadius; +$transition: box-shadow variables.$defaultDuration variables.$defaultEasing, +border-color variables.$defaultDuration variables.$defaultEasing; + +/*------------------- + Types + --------------------*/ + +/* Icon Input */ +$iconWidth: ($verticalPadding * 2)+variables.$glyphWidth; +$iconOpacity: 0.5; +$iconFocusOpacity: 1; +$iconOffset: -0.5em; + +$iconDistance: 0em; +$iconMargin: $iconWidth+$iconDistance; +$iconTransition: opacity 0.3s variables.$defaultEasing; + +$transparentIconWidth: variables.$glyphWidth; +$transparentIconMargin: 2em; + +/* Circular Icon Input */ +$circularIconVerticalOffset: 0.35em; +$circularIconHorizontalOffset: 0.5em; + +/* Labeled Input */ +$labelCornerTop: $borderWidth; +$labelCornerRight: $borderWidth; +$labelCornerSize: variables.$relative9px; +$labelSize: 1em; +$labelVerticalPadding: ($verticalPadding - $lineHeightOffset); + +$labeledMargin: 2.5em; +$labeledIconInputMargin: 3.25em; +$labeledIconMargin: 1.25em; + +/*------------------- + States + --------------------*/ + +/* Placeholder */ +$placeholderColor: colors.$inputPlaceholderColor; +$placeholderFocusColor: colors.$inputPlaceholderFocusColor; + +/* Down */ +$downBorderColor: rgba(0, 0, 0, 0.3); +$downBackground: #fafafa; +$downColor: colors.$textColor; +$downBoxShadow: none; + +/* Focus */ +$focusBorderColor: colors.$grayDark; //$focusedFormBorderColor; +$focusBackground: $background; +$focusColor: colors.$hoveredTextColor; +$focusBoxShadow: none; + +/* Error */ +$errorBackground: colors.$negativeBackgroundColor; +$errorColor: colors.$negativeTextColor; +$errorBorder: colors.$negativeBorderColor; +$errorBoxShadow: none; + +$placeholderErrorColor: lighten($errorColor, 40); +$placeholderErrorFocusColor: lighten($errorColor, 30); + +/* Loader */ +$invertedLoaderFillColor: rgba(0, 0, 0, 0.15); + +/*------------------- + Variations + --------------------*/ + +/* Inverted */ +$transparentInvertedPlaceholderColor: colors.$invertedUnselectedTextColor; +$transparentInvertedColor: colors.$white; + + +/******************************* + Standard + *******************************/ + +/*-------------------- + Inputs + ---------------------*/ + +.ui.input { + position: relative; + font-weight: variables.$normal; + font-style: normal; + display: inline-flex; + color: colors.$inputColor; +} + +.ui.input>input { + margin: 0em; + max-width: 100%; + flex: 1 0 auto; + outline: none; + -webkit-tap-highlight-color: rgba(255, 255, 255, 0); + text-align: $textAlign; + line-height: $lineHeight; + + font-family: $inputFont; + padding: $padding; + + background: $background; + border: $border; + color: colors.$inputColor; + border-radius: $borderRadius; + transition: $transition; + + box-shadow: $boxShadow; +} + +/*-------------------- + Placeholder + ---------------------*/ + +/* browsers require these rules separate */ + +.ui.input>input::-webkit-input-placeholder { + color: $placeholderColor; + font-size: $inputFontSize; +} + +.ui.input>input::-moz-placeholder { + color: $placeholderColor; + font-size: $inputFontSize; +} + +.ui.input>input:-ms-input-placeholder { + color: $placeholderColor; + font-size: $inputFontSize; +} + +/******************************* + States + *******************************/ + +/*-------------------- + Disabled + ---------------------*/ + +.ui.disabled.input, +.ui.input:not(.disabled) input[disabled] { + opacity: variables.$disabledOpacity; +} + +.ui.disabled.input>input, +.ui.input:not(.disabled) input[disabled] { + pointer-events: none; +} + +/*-------------------- + Active + ---------------------*/ + +.ui.input>input:active, +.ui.input.down input { + border-color: $downBorderColor; + background: $downBackground; + color: $downColor; + box-shadow: $downBoxShadow; +} + +/*-------------------- + Loading + ---------------------*/ + +.ui.loading.loading.input>i.icon:before { + position: absolute; + content: ""; + top: 50%; + left: 50%; + + margin: variables.$loaderMargin; + width: variables.$loaderSize; + height: variables.$loaderSize; + + border-radius: variables.$circularRadius; + border: variables.$loaderLineWidth solid colors.$loaderFillColor; +} + +.ui.loading.loading.input>i.icon:after { + position: absolute; + content: ""; + top: 50%; + left: 50%; + + margin: variables.$loaderMargin; + width: variables.$loaderSize; + height: variables.$loaderSize; + + animation: button-spin variables.$loaderSpeed linear; + animation-iteration-count: infinite; + + border-radius: variables.$circularRadius; + + border-color: colors.$loaderLineColor transparent transparent; + border-style: solid; + border-width: variables.$loaderLineWidth; + + box-shadow: 0px 0px 0px 1px transparent; +} + +/*-------------------- + Focus + ---------------------*/ + +.ui.input.focus>input, +.ui.input>input:focus { + border-color: $focusBorderColor; + background: $focusBackground; + color: $focusColor; + box-shadow: $focusBoxShadow; +} + +.ui.input.focus>input::-webkit-input-placeholder, +.ui.input>input:focus::-webkit-input-placeholder { + color: $placeholderFocusColor; +} + +.ui.input.focus>input::-moz-placeholder, +.ui.input>input:focus::-moz-placeholder { + color: $placeholderFocusColor; +} + +.ui.input.focus>input:-ms-input-placeholder, +.ui.input>input:focus:-ms-input-placeholder { + color: $placeholderFocusColor; +} + +/*-------------------- + Error + ---------------------*/ + +.ui.input.error>input { + background-color: $errorBackground; + border-color: $errorBorder; + color: $errorColor; + box-shadow: $errorBoxShadow; +} + +/* Error Placeholder */ +.ui.input.error>input::-webkit-input-placeholder { + color: $placeholderErrorColor; +} + +.ui.input.error>input::-moz-placeholder { + color: $placeholderErrorColor; +} + +.ui.input.error>input:-ms-input-placeholder { + color: $placeholderErrorColor !important; +} + +/* Focused Error Placeholder */ +.ui.input.error>input:focus::-webkit-input-placeholder { + color: $placeholderErrorFocusColor; +} + +.ui.input.error>input:focus::-moz-placeholder { + color: $placeholderErrorFocusColor; +} + +.ui.input.error>input:focus:-ms-input-placeholder { + color: $placeholderErrorFocusColor !important; +} + +/******************************* + Variations + *******************************/ + +/*-------------------- + Transparent + ---------------------*/ + +.ui.transparent.input>input { + border-color: transparent !important; + background-color: transparent !important; + padding: 0em !important; + box-shadow: none !important; + border-radius: 0px !important; +} + +/* Transparent Icon */ +.ui.transparent.icon.input>i.icon { + width: $transparentIconWidth; +} + +.ui.transparent.icon.input>input { + padding-left: 0em !important; + padding-right: $transparentIconMargin !important; +} + +.ui.transparent[class*="left icon"].input>input { + padding-left: $transparentIconMargin !important; + padding-right: 0em !important; +} + +/* Transparent Inverted */ +.ui.transparent.inverted.input { + color: $transparentInvertedColor; +} + +.ui.transparent.inverted.input>input { + color: inherit; +} + +.ui.transparent.inverted.input>input::-webkit-input-placeholder { + color: $transparentInvertedPlaceholderColor; +} + +.ui.transparent.inverted.input>input::-moz-placeholder { + color: $transparentInvertedPlaceholderColor; +} + +.ui.transparent.inverted.input>input:-ms-input-placeholder { + color: $transparentInvertedPlaceholderColor; +} + +/*-------------------- + Icon + ---------------------*/ + +.ui.icon.input>i.icon { + cursor: default; + position: absolute; + line-height: 1; + text-align: center; + top: 0px; + right: 0px; + margin: 0em; + height: 100%; + + width: $iconWidth; + opacity: $iconOpacity; + border-radius: 0em $borderRadius $borderRadius 0em; + transition: $iconTransition; +} + +.ui.icon.input>i.icon:not(.link) { + pointer-events: none; +} + +.ui.icon.input>input { + padding-right: $iconMargin !important; +} + +.ui.icon.input>i.icon:before, +.ui.icon.input>i.icon:after { + left: 0; + position: absolute; + text-align: center; + top: 50%; + width: 100%; + margin-top: $iconOffset; +} + +.ui.icon.input>i.link.icon { + cursor: pointer; +} + +.ui.icon.input>i.circular.icon { + top: $circularIconVerticalOffset; + right: $circularIconHorizontalOffset; +} + +/* Left Icon Input */ +.ui[class*="left icon"].input>i.icon { + right: auto; + left: $borderWidth; + border-radius: $borderRadius 0em 0em $borderRadius; +} + +.ui[class*="left icon"].input>i.circular.icon { + right: auto; + left: $circularIconHorizontalOffset; +} + +.ui[class*="left icon"].input>input { + padding-left: $iconMargin !important; + padding-right: $horizontalPadding !important; +} + +/* Focus */ +.ui.icon.input>input:focus~i.icon { + opacity: 1; +} + +/*-------------------- + Labeled + ---------------------*/ + +/* Adjacent Label */ +.ui.labeled.input>.label { + flex: 0 0 auto; + margin: 0; + font-size: variables.$relativeMedium; +} + +.ui.labeled.input>.label:not(.corner) { + padding-top: $verticalPadding; + padding-bottom: $verticalPadding; +} + +/* Regular Label on Left */ +.ui.labeled.input:not([class*="corner labeled"]) .label:first-child { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; + border-left-color: transparent; +} + +.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input:focus { + border-left-color: $focusBorderColor; +} + +/* Regular Label on Right */ +.ui[class*="right labeled"].input>input { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; + border-right-color: transparent !important; +} + +.ui[class*="right labeled"].input>input+.label { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +.ui[class*="right labeled"].input>input:focus { + border-right-color: $focusBorderColor !important; +} + +/* Corner Label */ +.ui.labeled.input .corner.label { + top: $labelCornerTop; + right: $labelCornerRight; + font-size: $labelCornerSize; + border-radius: 0em $borderRadius 0em 0em; +} + +/* Spacing with corner label */ +.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input>input { + padding-right: $labeledMargin !important; +} + +.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>input { + padding-right: $labeledIconInputMargin !important; +} + +.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>.icon { + margin-right: $labeledIconMargin; +} + +/* Left Labeled */ +.ui[class*="left corner labeled"].labeled.input>input { + padding-left: $labeledMargin !important; +} + +.ui[class*="left corner labeled"].icon.input>input { + padding-left: $labeledIconInputMargin !important; +} + +.ui[class*="left corner labeled"].icon.input>.icon { + margin-left: $labeledIconMargin; +} + +/* Corner Label Position */ +.ui.input>.ui.corner.label { + top: $borderWidth; + right: $borderWidth; +} + +.ui.input>.ui.left.corner.label { + right: auto; + left: $borderWidth; +} + +/*-------------------- + Action + ---------------------*/ + +.ui.action.input>.button, +.ui.action.input>.buttons { + display: flex; + align-items: center; + flex: 0 0 auto; +} + +.ui.action.input>.button, +.ui.action.input>.buttons>.button { + padding-top: $verticalPadding; + padding-bottom: $verticalPadding; + margin: 0; +} + +/* Button on Right */ +.ui.action.input:not([class*="left action"])>input { + border-radius: 0; + border-right-color: transparent !important; +} + +.ui.action.input:not([class*="left action"])>.dropdown:not(:first-child), +.ui.action.input:not([class*="left action"])>.button:not(:first-child), +.ui.action.input:not([class*="left action"])>.buttons:not(:first-child)>.button { + border-radius: 0px; +} + +.ui.action.input:not([class*="left action"])>.dropdown:last-child, +.ui.action.input:not([class*="left action"])>.button:last-child, +.ui.action.input:not([class*="left action"])>.buttons:last-child>.button { + border-radius: 0px; +} + +/* Input Focus */ +.ui.action.input:not([class*="left action"])>input:focus { + border-right-color: $focusBorderColor !important; +} + +/* Button on Left */ +.ui[class*="left action"].input>input { + border-radius: 0px; + border-left-color: transparent !important; +} + +.ui[class*="left action"].input>.dropdown, +.ui[class*="left action"].input>.button, +.ui[class*="left action"].input>.buttons>.button { + border-radius: 0px; +} + +.ui[class*="left action"].input>.dropdown:first-child, +.ui[class*="left action"].input>.button:first-child, +.ui[class*="left action"].input>.buttons:first-child>.button { + border-radius: 0px; +} + +/* Input Focus */ +.ui[class*="left action"].input>input:focus { + border-left-color: $focusBorderColor !important; +} + +/*-------------------- + Inverted + ---------------------*/ + +/* Standard */ +.ui.inverted.input>input { + border: none; +} + +/*-------------------- + Fluid + ---------------------*/ + +.ui.fluid.input { + display: flex; +} + +.ui.fluid.input>input { + // width: 0px !important; +} + +/*-------------------- + Size + ---------------------*/ +// Note: These used to use relative units, I've changed them to absolute and scaled them down a size (small is now tiny, mini we've completly taken out. + +.ui.mini.input { + font-size: variables.$mini; +} + +.ui.small.input { + font-size: variables.$tiny; +} + +.ui.input { + font-size: variables.$small; +} + +.ui.large.input { + font-size: variables.$medium; +} + +.ui.big.input { + font-size: variables.$large; +} + +.ui.huge.input { + font-size: variables.$big; +} + +.ui.massive.input { + font-size: variables.$huge; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/label.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/label.scss new file mode 100644 index 00000000..70716b28 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/label.scss @@ -0,0 +1,1831 @@ +/*! + * # Semantic UI - Label + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "colors"; +@use 'sass:math'; + +/******************************* + Label + *******************************/ + +/*------------------- + Element + --------------------*/ + +$verticalAlign: baseline; +$verticalMargin: 0em; +$horizontalMargin: variables.$relative2px; +$backgroundColor: #E8E8E8; +$color: colors.$mutedTextColor; +$backgroundImage: none; +$verticalPadding: 0.5833em; +/* medium is not $emSize custom value required */ +$horizontalPadding: 0.833em; +$borderRadius: variables.$absoluteBorderRadius; +$textTransform: none; +$fontWeight: variables.$bold; +$borderWidth: 1px; +$border: 0px solid transparent; + +$lineHeightOffset: -(math.div($verticalPadding, 2)); + +$labelTransitionDuration: variables.$defaultDuration; +$labelTransitionEasing: variables.$defaultEasing; +$transition: background $labelTransitionDuration $labelTransitionEasing; + +/* Group */ +$groupVerticalMargin: 0.5em; +$groupHorizontalMargin: 0.5em; + +/*------------------- + Parts + --------------------*/ + +/* Link */ +$linkOpacity: 0.5; +$linkTransition: $labelTransitionDuration opacity $labelTransitionEasing; + +/* Icon */ +$iconDistance: 0.75em; + +/* Image */ +$imageHeight: (1em + $verticalPadding * 2); + +/* Detail */ +$detailFontWeight: variables.$bold; +$detailOpacity: 0.8; +$detailIconDistance: 0.25em; +$detailMargin: 1em; + +/* Delete */ +$deleteOpacity: $linkOpacity; +$deleteSize: variables.$relativeSmall; +$deleteMargin: 0.5em; +$deleteTransition: background $labelTransitionDuration $labelTransitionEasing; + +/*------------------- + Types + --------------------*/ + +/* Image Label */ +$imageLabelBackground: $backgroundColor; +$imageLabelVerticalPadding: $verticalPadding; +$imageLabelHorizontalPadding: $horizontalPadding; +$imageLabelTextDistance: 0.5em; +$imageLabelDetailDistance: $imageLabelTextDistance; +$imageLabelBorderRadius: $borderRadius; +$imageLabelBoxShadow: none; +$imageLabelPadding: $imageLabelVerticalPadding $imageLabelHorizontalPadding $imageLabelVerticalPadding $imageLabelTextDistance; + +$imageLabelImageMargin: -$verticalPadding $imageLabelTextDistance -$verticalPadding -$imageLabelTextDistance; +$imageLabelImageBorderRadius: $imageLabelBorderRadius 0em 0em $imageLabelBorderRadius; +$imageLabelImageHeight: $imageHeight; + +$imageLabelDetailBackground: colors.$strongTransparentBlack; +$imageLabelDetailPadding: $imageLabelVerticalPadding $imageLabelHorizontalPadding; +$imageLabelDetailMargin: -$imageLabelVerticalPadding -$imageLabelHorizontalPadding -$imageLabelVerticalPadding $imageLabelDetailDistance; + +/*------------------- + States + --------------------*/ + +/* Hover */ +$labelHoverBackgroundColor: #E0E0E0; +$labelHoverBackgroundImage: none; +$labelHoverTextColor: colors.$hoveredTextColor; + +/* Active */ +$labelActiveBackgroundColor: #D0D0D0; +$labelActiveBackgroundImage: none; +$labelActiveTextColor: colors.$selectedTextColor; + +/* Active Hover */ +$labelActiveHoverBackgroundColor: #C8C8C8; +$labelActiveHoverBackgroundImage: none; +$labelActiveHoverTextColor: colors.$selectedTextColor; + + +/*------------------- + Variations + --------------------*/ + +/* Basic */ +$basicBackground: none colors.$white; +$basicBorderWidth: 1px; +$basicBorder: $basicBorderWidth solid colors.$borderColor; +$basicColor: colors.$textColor; +$basicBoxShadow: none; + +$basicHoverBackground: $basicBackground; +$basicHoverColor: colors.$linkHoverColor; +$basicHoverBorder: $basicBorder; +$basicHoverBoxShadow: $basicBoxShadow; + +/* Tag */ +$tagCircleColor: colors.$white; +$tagCircleSize: 0.5em; +$tagHorizontalPadding: 1.5em; +$tagCircleBoxShadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); +$tagTriangleRightOffset: 100%; +$tagTriangleTopOffset: 50%; +$tagTriangleSize: 1.56em; +$tagTriangleBackgroundImage: none; +$tagTransition: none; +/* Avoids error with background: inherit; on animation */ + +/* Ribbon */ +$ribbonTriangleSize: 1.2em; +$ribbonShadowColor: rgba(0, 0, 0, 0.15); + +$ribbonMargin: 1rem; +$ribbonOffset: -$ribbonMargin - strip-unit($ribbonTriangleSize); +$ribbonDistance: $ribbonMargin+strip-unit($ribbonTriangleSize); +$rightRibbonOffset: calc(100% + #{$ribbonMargin} + #{$ribbonTriangleSize}); + +$ribbonImageTopDistance: 1rem; +$ribbonImageMargin: -0.05rem; +/* Rounding Offset on Triangle */ +$ribbonImageOffset: -$ribbonImageMargin - strip-unit($ribbonTriangleSize); +$rightRibbonImageOffset: calc(100% + #{$ribbonImageMargin} + #{$ribbonTriangleSize}); + +$ribbonTableMargin: variables.$relativeMini; +/* Rounding Offset on Triangle */ +$ribbonTableOffset: -$ribbonTableMargin - $ribbonTriangleSize; +$rightRibbonTableOffset: calc(100% + #{$ribbonTableMargin} + #{$ribbonTriangleSize}); + + +/* Colors */ +$redTextColor: colors.$white; +$orangeTextColor: colors.$white; +$yellowTextColor: colors.$white; +$oliveTextColor: colors.$white; +$greenTextColor: colors.$white; +$tealTextColor: colors.$white; +$blueTextColor: colors.$white; +$violetTextColor: colors.$white; +$purpleTextColor: colors.$white; +$pinkTextColor: colors.$white; +$brownTextColor: colors.$white; +$greyTextColor: colors.$white; +$blackTextColor: colors.$white; + +$redHoverTextColor: colors.$white; +$orangeHoverTextColor: colors.$white; +$yellowHoverTextColor: colors.$white; +$oliveHoverTextColor: colors.$white; +$greenHoverTextColor: colors.$white; +$tealHoverTextColor: colors.$white; +$blueHoverTextColor: colors.$white; +$violetHoverTextColor: colors.$white; +$purpleHoverTextColor: colors.$white; +$pinkHoverTextColor: colors.$white; +$brownHoverTextColor: colors.$white; +$greyHoverTextColor: colors.$white; +$blackHoverTextColor: colors.$white; + +$redRibbonShadow: darken(colors.$red, 10); +$orangeRibbonShadow: darken(colors.$orange, 10); +$yellowRibbonShadow: darken(colors.$yellow, 10); +$oliveRibbonShadow: darken(colors.$olive, 10); +$greenRibbonShadow: darken(colors.$green, 10); +$tealRibbonShadow: darken(colors.$teal, 10); +$blueRibbonShadow: darken(colors.$blue, 10); +$violetRibbonShadow: darken(colors.$violet, 10); +$purpleRibbonShadow: darken(colors.$purple, 10); +$pinkRibbonShadow: darken(colors.$pink, 10); +$brownRibbonShadow: darken(colors.$brown, 10); +$greyRibbonShadow: darken(colors.$grey, 10); +$blackRibbonShadow: darken(colors.$black, 10); + +/* Attached */ +$attachedSegmentPadding: 2rem; +$attachedVerticalPadding: 0.75em; +$attachedHorizontalPadding: 1em; + +$attachedCornerBorderRadius: variables.$u3px; +$attachedBorderRadius: $borderRadius; + +/* Corner */ +$cornerSizeRatio: 1; +$cornerTransition: color $labelTransitionDuration $labelTransitionEasing; +$cornerTriangleSize: 4em; +$cornerTriangleTransition: border-color $labelTransitionDuration $labelTransitionEasing; +$cornerTriangleZIndex: 1; + +$cornerIconSize: variables.$relativeLarge; +$cornerIconTopOffset: variables.$relative9px; +$cornerIconLeftOffset: variables.$relative11px; + +/* Corner Text */ +$cornerTextWidth: 3em; +$cornerTextWeight: variables.$bold; +$cornerTextSize: 1em; + +/* Horizontal */ +$horizontalLabelMinWidth: 3em; +$horizontalLabelMargin: 0.5em; +$horizontalLabelVerticalPadding: 0.4em; + +/* Circular Padding */ +$circularPadding: 0.5em; +$circularMinSize: 2em; +$emptyCircleSize: 0.5em; + +/* Pointing */ +$pointingBorderColor: inherit; +$pointingBorderWidth: $borderWidth; +$pointingVerticalDistance: 1em; +$pointingTriangleSize: 0.6666em; +$pointingHorizontalDistance: $pointingTriangleSize; + +$pointingTriangleTransition: background $labelTransitionDuration $labelTransitionEasing; +$pointingTriangleZIndex: 2; + +/* Basic Pointing */ +$basicPointingTriangleOffset: -$pointingBorderWidth; + +/* Floating */ +$floatingTopOffset: -1em; +$floatingLeftOffset: -1.5em; +$floatingZIndex: 100; + +/*------------------- + Group + --------------------*/ + +/* Sizing */ +$mini : variables.$u9px; +$tiny : variables.$u10px; +$small : variables.$u11px; +$medium : variables.$u12px; +$large : variables.$absoluteMedium; +$big : variables.$absoluteBig; +$huge : variables.$absoluteHuge; +$massive : variables.$absoluteMassive; + + +/******************************* + Label + *******************************/ + +.ui.label { + display: inline-block; + line-height: 1; + vertical-align: $verticalAlign; + + margin: $verticalMargin $horizontalMargin; + + background-color: $backgroundColor; + background-image: $backgroundImage; + padding: $verticalPadding $horizontalPadding; + color: $color; + + text-transform: $textTransform; + font-weight: $fontWeight; + // + font-family: variables.$sansSerifFont; + + border: $border; + border-radius: $borderRadius; + transition: $transition; +} + +.ui.label:first-child { + margin-left: 0em; +} + +.ui.label:last-child { + margin-right: 0em; +} + +/* Link */ +a.ui.label { + cursor: pointer; +} + +/* Inside Link */ +.ui.label>a { + cursor: pointer; + color: inherit; + opacity: $linkOpacity; + transition: $linkTransition; +} + +.ui.label>a:hover { + opacity: 1; +} + +/* Image */ +.ui.label>img { + width: auto !important; + vertical-align: middle; + height: $imageHeight !important; +} + +/* Icon */ +.ui.label>.icon { + width: auto; + margin: 0em $iconDistance 0em 0em; +} + +/* Detail */ +.ui.label>.detail { + display: inline-block; + vertical-align: top; + font-weight: $detailFontWeight; + margin-left: $detailMargin; + opacity: $detailOpacity; +} + +.ui.label>.detail .icon { + margin: 0em $detailIconDistance 0em 0em; +} + +/* Removable label */ +.ui.label>.close.icon, +.ui.label>.delete.icon { + cursor: pointer; + margin-right: 0em; + margin-left: $deleteMargin; + font-size: $deleteSize; + opacity: $deleteOpacity; + transition: $deleteTransition; +} + +.ui.label>.delete.icon:hover { + opacity: 1; +} + +/*------------------- + Group + --------------------*/ + +.ui.labels>.label { + margin: 0em $groupHorizontalMargin $groupVerticalMargin 0em; +} + +/*------------------- + Coupling + --------------------*/ + +.ui.header>.ui.label { + margin-top: $lineHeightOffset; +} + +/* Remove border radius on attached segment */ +.ui.attached.segment>.ui.top.left.attached.label, +.ui.bottom.attached.segment>.ui.top.left.attached.label { + border-top-left-radius: 0; +} + +.ui.attached.segment>.ui.top.right.attached.label, +.ui.bottom.attached.segment>.ui.top.right.attached.label { + border-top-right-radius: 0; +} + +.ui.top.attached.segment>.ui.bottom.left.attached.label { + border-bottom-left-radius: 0; +} + +.ui.top.attached.segment>.ui.bottom.right.attached.label { + border-bottom-right-radius: 0; +} + +/* Padding on next content after a label */ +.ui.top.attached.label:first-child+ :not(.attached), +.ui.top.attached.label+[class*="right floated"]+* { + margin-top: $attachedSegmentPadding !important; +} + +.ui.bottom.attached.label:first-child~ :last-child:not(.attached) { + margin-top: 0em; + margin-bottom: $attachedSegmentPadding !important; +} + +/******************************* + Types + *******************************/ + +.ui.image.label { + width: auto !important; + margin-top: 0em; + margin-bottom: 0em; + max-width: 9999px; + vertical-align: baseline; + text-transform: none; + + background: $imageLabelBackground; + padding: $imageLabelPadding; + border-radius: $imageLabelBorderRadius; + box-shadow: $imageLabelBoxShadow; +} + +.ui.image.label img { + display: inline-block; + vertical-align: top; + + height: $imageLabelImageHeight; + margin: $imageLabelImageMargin; + border-radius: $imageLabelImageBorderRadius; +} + +.ui.image.label .detail { + background: $imageLabelDetailBackground; + margin: $imageLabelDetailMargin; + padding: $imageLabelDetailPadding; + border-radius: 0em $imageLabelBorderRadius $imageLabelBorderRadius 0em; +} + +/*------------------- + Tag + --------------------*/ + +.ui.tag.labels .label, +.ui.tag.label { + margin-left: 1em; + position: relative; + padding-left: $tagHorizontalPadding; + padding-right: $tagHorizontalPadding; + + border-radius: 0em $borderRadius $borderRadius 0em; + transition: $tagTransition; +} + +.ui.tag.labels .label:before, +.ui.tag.label:before { + position: absolute; + transform: translateY(-50%) translateX(50%) rotate(-45deg); + + top: $tagTriangleTopOffset; + right: $tagTriangleRightOffset; + content: ""; + + background-color: inherit; + background-image: $tagTriangleBackgroundImage; + + width: $tagTriangleSize; + height: $tagTriangleSize; + transition: $tagTransition; +} + +.ui.tag.labels .label:after, +.ui.tag.label:after { + position: absolute; + content: ""; + top: 50%; + left: -($tagCircleSize * 0.5); + + margin-top: -($tagCircleSize * 0.5); + background-color: $tagCircleColor !important; + width: $tagCircleSize; + height: $tagCircleSize; + + box-shadow: $tagCircleBoxShadow; + border-radius: variables.$circularRadius; +} + +/*------------------- + Corner Label + --------------------*/ + +.ui.corner.label { + position: absolute; + top: 0em; + right: 0em; + margin: 0em; + padding: 0em; + text-align: center; + + border-color: $backgroundColor; + + width: $cornerTriangleSize; + height: $cornerTriangleSize; + z-index: $cornerTriangleZIndex; + transition: $cornerTriangleTransition; +} + +/* Icon Label */ +.ui.corner.label { + background-color: transparent !important; +} + +.ui.corner.label:after { + position: absolute; + content: ""; + right: 0em; + top: 0em; + z-index: -1; + + width: 0em; + height: 0em; + background-color: transparent !important; + + border-top: 0em solid transparent; + border-right: $cornerTriangleSize solid transparent; + border-bottom: $cornerTriangleSize solid transparent; + border-left: 0em solid transparent; + + border-right-color: inherit; + transition: $cornerTriangleTransition; +} + +.ui.corner.label .icon { + cursor: default; + position: relative; + top: $cornerIconTopOffset; + left: $cornerIconLeftOffset; + font-size: $cornerIconSize; + margin: 0em; +} + +/* Left Corner */ +.ui.left.corner.label, +.ui.left.corner.label:after { + right: auto; + left: 0em; +} + +.ui.left.corner.label:after { + border-top: $cornerTriangleSize solid transparent; + border-right: $cornerTriangleSize solid transparent; + border-bottom: 0em solid transparent; + border-left: 0em solid transparent; + + border-top-color: inherit; +} + +.ui.left.corner.label .icon { + left: -$cornerIconLeftOffset; +} + +/* Segment */ +.ui.segment>.ui.corner.label { + top: -1px; + right: -1px; +} + +.ui.segment>.ui.left.corner.label { + right: auto; + left: -1px; +} + +/*------------------- + Ribbon + --------------------*/ + +.ui.ribbon.label { + position: relative; + margin: 0em; + min-width: max-content; + border-radius: 0em $borderRadius $borderRadius 0em; + border-color: $ribbonShadowColor; +} + +.ui.ribbon.label:after { + position: absolute; + content: ""; + + top: 100%; + left: 0%; + background-color: transparent !important; + + border-style: solid; + border-width: 0em $ribbonTriangleSize $ribbonTriangleSize 0em; + border-color: transparent; + border-right-color: inherit; + + width: 0em; + height: 0em; +} + +/* Positioning */ +.ui.ribbon.label { + left: $ribbonOffset; + margin-right: -$ribbonTriangleSize; + padding-left: $ribbonDistance; + padding-right: $ribbonTriangleSize; +} + +.ui[class*="right ribbon"].label { + left: $rightRibbonOffset; + padding-left: $ribbonTriangleSize; + padding-right: $ribbonDistance; +} + +/* Right Ribbon */ +.ui[class*="right ribbon"].label { + text-align: left; + transform: translateX(-100%); + border-radius: $borderRadius 0em 0em $borderRadius; +} + +.ui[class*="right ribbon"].label:after { + left: auto; + right: 0%; + + border-style: solid; + border-width: $ribbonTriangleSize $ribbonTriangleSize 0em 0em; + border-color: transparent; + border-top-color: inherit; +} + +/* Inside Table */ +.ui.image>.ribbon.label, +.ui.card .image>.ribbon.label { + position: absolute; + top: $ribbonImageTopDistance; +} + +.ui.card .image>.ui.ribbon.label, +.ui.image>.ui.ribbon.label { + left: $ribbonImageOffset; +} + +.ui.card .image>.ui[class*="right ribbon"].label, +.ui.image>.ui[class*="right ribbon"].label { + left: $rightRibbonImageOffset; + padding-left: $horizontalPadding; +} + +/* Inside Table */ +.ui.table td>.ui.ribbon.label { + left: $ribbonTableOffset; +} + +.ui.table td>.ui[class*="right ribbon"].label { + left: $rightRibbonTableOffset; + padding-left: $horizontalPadding; +} + +/*------------------- + Attached + --------------------*/ + +.ui[class*="top attached"].label, +.ui.attached.label { + width: 100%; + position: absolute; + margin: 0em; + top: 0em; + left: 0em; + + padding: $attachedVerticalPadding $attachedHorizontalPadding; + + border-radius: $attachedCornerBorderRadius $attachedCornerBorderRadius 0em 0em; +} + +.ui[class*="bottom attached"].label { + top: auto; + bottom: 0em; + border-radius: 0em 0em $attachedCornerBorderRadius $attachedCornerBorderRadius; +} + +.ui[class*="top left attached"].label { + width: auto; + margin-top: 0em !important; + border-radius: $attachedCornerBorderRadius 0em $attachedBorderRadius 0em; +} + +.ui[class*="top right attached"].label { + width: auto; + left: auto; + right: 0em; + border-radius: 0em $attachedCornerBorderRadius 0em $attachedBorderRadius; +} + +.ui[class*="bottom left attached"].label { + width: auto; + top: auto; + bottom: 0em; + border-radius: 0em $attachedBorderRadius 0em $attachedCornerBorderRadius; +} + +.ui[class*="bottom right attached"].label { + top: auto; + bottom: 0em; + left: auto; + right: 0em; + width: auto; + border-radius: $attachedBorderRadius 0em $attachedCornerBorderRadius 0em; +} + +/******************************* + States + *******************************/ + +/*------------------- + Disabled + --------------------*/ + +.ui.label.disabled { + opacity: 0.5; +} + +/*------------------- + Hover + --------------------*/ + +a.ui.labels .label:hover, +a.ui.label:hover { + background-color: $labelHoverBackgroundColor; + border-color: $labelHoverBackgroundColor; + + background-image: $labelHoverBackgroundImage; + color: $labelHoverTextColor; +} + +.ui.labels a.label:hover:before, +a.ui.label:hover:before { + color: $labelHoverTextColor; +} + +/*------------------- + Active + --------------------*/ + +.ui.active.label { + background-color: $labelActiveBackgroundColor; + border-color: $labelActiveBackgroundColor; + + background-image: $labelActiveBackgroundImage; + color: $labelActiveTextColor; +} + +.ui.active.label:before { + background-color: $labelActiveBackgroundColor; + background-image: $labelActiveBackgroundImage; + color: $labelActiveTextColor; +} + +/*------------------- + Active Hover + --------------------*/ + +a.ui.labels .active.label:hover, +a.ui.active.label:hover { + background-color: $labelActiveHoverBackgroundColor; + border-color: $labelActiveHoverBackgroundColor; + + background-image: $labelActiveHoverBackgroundImage; + color: $labelActiveHoverTextColor; +} + +.ui.labels a.active.label:activehover:before, +a.ui.active.label:activehover:before { + background-color: $labelActiveHoverBackgroundColor; + background-image: $labelActiveHoverBackgroundImage; + color: $labelActiveHoverTextColor; +} + +/*------------------- + Visible + --------------------*/ + +.ui.labels.visible .label, +.ui.label.visible:not(.dropdown) { + display: inline-block !important; +} + +/*------------------- + Hidden + --------------------*/ + +.ui.labels.hidden .label, +.ui.label.hidden { + display: none !important; +} + +/******************************* + Variations + *******************************/ + +/*------------------- + Colors + --------------------*/ + +/*--- Red ---*/ +.ui.red.labels .label, +.ui.red.label { + background-color: colors.$red !important; + border-color: colors.$red !important; + color: $redTextColor !important; +} + +/* Link */ +.ui.red.labels .label:hover, +a.ui.red.label:hover { + background-color: colors.$redHover !important; + border-color: colors.$redHover !important; + color: $redHoverTextColor !important; +} + +/* Corner */ +.ui.red.corner.label, +.ui.red.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.red.ribbon.label { + border-color: $redRibbonShadow !important; +} + +/* Basic */ +.ui.basic.red.label { + background: $basicBackground !important; + color: colors.$red !important; + border-color: colors.$red !important; +} + +.ui.basic.red.labels a.label:hover, +a.ui.basic.red.label:hover { + background-color: colors.$white !important; + color: colors.$redHover !important; + border-color: colors.$redHover !important; +} + +/*--- Orange ---*/ +.ui.orange.labels .label, +.ui.orange.label { + background-color: colors.$orange !important; + border-color: colors.$orange !important; + color: $orangeTextColor !important; +} + +/* Link */ +.ui.orange.labels .label:hover, +a.ui.orange.label:hover { + background-color: colors.$orangeHover !important; + border-color: colors.$orangeHover !important; + color: $orangeHoverTextColor !important; +} + +/* Corner */ +.ui.orange.corner.label, +.ui.orange.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.orange.ribbon.label { + border-color: $orangeRibbonShadow !important; +} + +/* Basic */ +.ui.basic.orange.label { + background: $basicBackground !important; + color: colors.$orange !important; + border-color: colors.$orange !important; +} + +.ui.basic.orange.labels a.label:hover, +a.ui.basic.orange.label:hover { + background-color: colors.$white !important; + color: colors.$orangeHover !important; + border-color: colors.$orangeHover !important; +} + +/*--- Yellow ---*/ +.ui.yellow.labels .label, +.ui.yellow.label { + background-color: colors.$yellow !important; + border-color: colors.$yellow !important; + color: $yellowTextColor !important; +} + +/* Link */ +.ui.yellow.labels .label:hover, +a.ui.yellow.label:hover { + background-color: colors.$yellowHover !important; + border-color: colors.$yellowHover !important; + color: $yellowHoverTextColor !important; +} + +/* Corner */ +.ui.yellow.corner.label, +.ui.yellow.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.yellow.ribbon.label { + border-color: $yellowRibbonShadow !important; +} + +/* Basic */ +.ui.basic.yellow.label { + background: $basicBackground !important; + color: colors.$yellow !important; + border-color: colors.$yellow !important; +} + +.ui.basic.yellow.labels a.label:hover, +a.ui.basic.yellow.label:hover { + background-color: colors.$white !important; + color: colors.$yellowHover !important; + border-color: colors.$yellowHover !important; +} + +/*--- Olive ---*/ +.ui.olive.labels .label, +.ui.olive.label { + background-color: colors.$olive !important; + border-color: colors.$olive !important; + color: $oliveTextColor !important; +} + +/* Link */ +.ui.olive.labels .label:hover, +a.ui.olive.label:hover { + background-color: colors.$oliveHover !important; + border-color: colors.$oliveHover !important; + color: $oliveHoverTextColor !important; +} + +/* Corner */ +.ui.olive.corner.label, +.ui.olive.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.olive.ribbon.label { + border-color: $greenRibbonShadow !important; +} + +/* Basic */ +.ui.basic.olive.label { + background: $basicBackground !important; + color: colors.$olive !important; + border-color: colors.$olive !important; +} + +.ui.basic.olive.labels a.label:hover, +a.ui.basic.olive.label:hover { + background-color: colors.$white !important; + color: colors.$oliveHover !important; + border-color: colors.$oliveHover !important; +} + +/*--- Green ---*/ +.ui.green.labels .label, +.ui.green.label { + background-color: colors.$green !important; + border-color: colors.$green !important; + color: $greenTextColor !important; +} + +/* Link */ +.ui.green.labels .label:hover, +a.ui.green.label:hover { + background-color: colors.$greenHover !important; + border-color: colors.$greenHover !important; + color: $greenHoverTextColor !important; +} + +/* Corner */ +.ui.green.corner.label, +.ui.green.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.green.ribbon.label { + border-color: $greenRibbonShadow !important; +} + +/* Basic */ +.ui.basic.green.label { + background: $basicBackground !important; + color: colors.$green !important; + border-color: colors.$green !important; +} + +.ui.basic.green.labels a.label:hover, +a.ui.basic.green.label:hover { + background-color: colors.$white !important; + color: colors.$greenHover !important; + border-color: colors.$greenHover !important; +} + +/*--- Teal ---*/ +.ui.teal.labels .label, +.ui.teal.label { + background-color: colors.$teal !important; + border-color: colors.$teal !important; + color: $tealTextColor !important; +} + +/* Link */ +.ui.teal.labels .label:hover, +a.ui.teal.label:hover { + background-color: colors.$tealHover !important; + border-color: colors.$tealHover !important; + color: $tealHoverTextColor !important; +} + +/* Corner */ +.ui.teal.corner.label, +.ui.teal.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.teal.ribbon.label { + border-color: $tealRibbonShadow !important; +} + +/* Basic */ +.ui.basic.teal.label { + background: $basicBackground !important; + color: colors.$teal !important; + border-color: colors.$teal !important; +} + +.ui.basic.teal.labels a.label:hover, +a.ui.basic.teal.label:hover { + background-color: colors.$white !important; + color: colors.$tealHover !important; + border-color: colors.$tealHover !important; +} + +/*--- Blue ---*/ +.ui.blue.labels .label, +.ui.blue.label { + background-color: colors.$blue !important; + border-color: colors.$blue !important; + color: $blueTextColor !important; +} + +/* Link */ +.ui.blue.labels .label:hover, +a.ui.blue.label:hover { + background-color: colors.$blueHover !important; + border-color: colors.$blueHover !important; + color: $blueHoverTextColor !important; +} + +/* Corner */ +.ui.blue.corner.label, +.ui.blue.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.blue.ribbon.label { + border-color: $blueRibbonShadow !important; +} + +/* Basic */ +.ui.basic.blue.label { + background: $basicBackground !important; + color: colors.$blue !important; + border-color: colors.$blue !important; +} + +.ui.basic.blue.labels a.label:hover, +a.ui.basic.blue.label:hover { + background-color: colors.$white !important; + color: colors.$blueHover !important; + border-color: colors.$blueHover !important; +} + +/*--- Violet ---*/ +.ui.violet.labels .label, +.ui.violet.label { + background-color: colors.$violet !important; + border-color: colors.$violet !important; + color: $violetTextColor !important; +} + +/* Link */ +.ui.violet.labels .label:hover, +a.ui.violet.label:hover { + background-color: colors.$violetHover !important; + border-color: colors.$violetHover !important; + color: $violetHoverTextColor !important; +} + +/* Corner */ +.ui.violet.corner.label, +.ui.violet.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.violet.ribbon.label { + border-color: $violetRibbonShadow !important; +} + +/* Basic */ +.ui.basic.violet.label { + background: $basicBackground !important; + color: colors.$violet !important; + border-color: colors.$violet !important; +} + +.ui.basic.violet.labels a.label:hover, +a.ui.basic.violet.label:hover { + background-color: colors.$white !important; + color: colors.$violetHover !important; + border-color: colors.$violetHover !important; +} + +/*--- Purple ---*/ +.ui.purple.labels .label, +.ui.purple.label { + background-color: colors.$purple !important; + border-color: colors.$purple !important; + color: $purpleTextColor !important; +} + +/* Link */ +.ui.purple.labels .label:hover, +a.ui.purple.label:hover { + background-color: colors.$purpleHover !important; + border-color: colors.$purpleHover !important; + color: $purpleHoverTextColor !important; +} + +/* Corner */ +.ui.purple.corner.label, +.ui.purple.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.purple.ribbon.label { + border-color: $purpleRibbonShadow !important; +} + +/* Basic */ +.ui.basic.purple.label { + background: $basicBackground !important; + color: colors.$purple !important; + border-color: colors.$purple !important; +} + +.ui.basic.purple.labels a.label:hover, +a.ui.basic.purple.label:hover { + background-color: colors.$white !important; + color: colors.$purpleHover !important; + border-color: colors.$purpleHover !important; +} + +/*--- Pink ---*/ +.ui.pink.labels .label, +.ui.pink.label { + background-color: colors.$pink !important; + border-color: colors.$pink !important; + color: $pinkTextColor !important; +} + +/* Link */ +.ui.pink.labels .label:hover, +a.ui.pink.label:hover { + background-color: colors.$pinkHover !important; + border-color: colors.$pinkHover !important; + color: $pinkHoverTextColor !important; +} + +/* Corner */ +.ui.pink.corner.label, +.ui.pink.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.pink.ribbon.label { + border-color: $pinkRibbonShadow !important; +} + +/* Basic */ +.ui.basic.pink.label { + background: $basicBackground !important; + color: colors.$pink !important; + border-color: colors.$pink !important; +} + +.ui.basic.pink.labels a.label:hover, +a.ui.basic.pink.label:hover { + background-color: colors.$white !important; + color: colors.$pinkHover !important; + border-color: colors.$pinkHover !important; +} + +/*--- Brown ---*/ +.ui.brown.labels .label, +.ui.brown.label { + background-color: colors.$brown !important; + border-color: colors.$brown !important; + color: $brownTextColor !important; +} + +/* Link */ +.ui.brown.labels .label:hover, +a.ui.brown.label:hover { + background-color: colors.$brownHover !important; + border-color: colors.$brownHover !important; + color: $brownHoverTextColor !important; +} + +/* Corner */ +.ui.brown.corner.label, +.ui.brown.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.brown.ribbon.label { + border-color: $brownRibbonShadow !important; +} + +/* Basic */ +.ui.basic.brown.label { + background: $basicBackground !important; + color: colors.$brown !important; + border-color: colors.$brown !important; +} + +.ui.basic.brown.labels a.label:hover, +a.ui.basic.brown.label:hover { + background-color: colors.$white !important; + color: colors.$brownHover !important; + border-color: colors.$brownHover !important; +} + +/*--- Grey ---*/ +.ui.grey.labels .label:not(.flat), +.ui.grey.label:not(.flat) { + background-color: colors.$grey !important; + border-color: colors.$grey !important; + color: $greyTextColor !important; + + /* Link */ + &:hover { + background-color: colors.$greyHover !important; + border-color: colors.$greyHover !important; + color: $greyHoverTextColor !important; + } +} + +/* Corner */ +.ui.grey.corner.label, +.ui.grey.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.grey.ribbon.label { + border-color: $brownRibbonShadow !important; +} + +/* Basic */ +.ui.basic.grey.label { + background: $basicBackground !important; + color: colors.$grey !important; + border-color: colors.$grey !important; +} + +.ui.basic.grey.labels a.label:hover, +a.ui.basic.grey.label:hover { + background-color: colors.$white !important; + color: colors.$greyHover !important; + border-color: colors.$greyHover !important; +} + +/* Flat */ +.ui.flat.grey.labels .label, +.ui.flat.grey.label { + color: colors.$grey !important; +} + +/*--- Black ---*/ +.ui.black.labels .label, +.ui.black.label { + background-color: colors.$black !important; + border-color: colors.$black !important; + color: $blackTextColor !important; +} + +/* Link */ +.ui.black.labels .label:hover, +a.ui.black.label:hover { + background-color: colors.$blackHover !important; + border-color: colors.$blackHover !important; + color: $blackHoverTextColor !important; +} + +/* Corner */ +.ui.black.corner.label, +.ui.black.corner.label:hover { + background-color: transparent !important; +} + +/* Ribbon */ +.ui.black.ribbon.label { + border-color: $brownRibbonShadow !important; +} + +/* Basic */ +.ui.basic.black.label { + background: $basicBackground !important; + color: colors.$black !important; + border-color: colors.$black !important; +} + +.ui.basic.black.labels a.label:hover, +a.ui.basic.black.label:hover { + background-color: colors.$white !important; + color: colors.$blackHover !important; + border-color: colors.$blackHover !important; +} + +/*------------------- + PRC Projects + --------------------*/ +// Text color only +.label { + &.pewresearch { + color: colors.$slate; + } + + &.politics, + &.u-s-politics { + color: colors.$lightBrownPrimary; + } + + &.journalism, + &.media-news { + color: colors.$plum; + } + + &.religion { + color: colors.$forumBlue; + } + + &.hispanic { + color: colors.$mediumBrownPrimary; + } + + &.social-trends { + color: colors.$tealPrimary; + } + + &.internet, + &.internet-tech { + color: colors.$internetBlue; + } + + &.science { + color: colors.$orangePrimary; + } + + &.global { + color: colors.$globalGreen; + } + + .methodology-report, + .research-methodology { + color: colors.$lightBrownPrimary; + } +} + +// Basic +.ui.basic.label { + &.pewresearch { + color: colors.$slate; + border-color: colors.$slate; + font-weight: lighter; + } + + &.politics, + &.u-s-politics { + color: colors.$lightBrownPrimary; + border-color: colors.$lightBrownPrimary; + font-weight: lighter; + } + + &.journalism, + &.media-news { + color: colors.$plum; + border-color: colors.$plum; + font-weight: lighter; + } + + &.religion { + color: colors.$forumBlue; + border-color: colors.$forumBlue; + font-weight: lighter; + } + + &.hispanic { + color: colors.$mediumBrownPrimary; + border-color: colors.$mediumBrownPrimary; + font-weight: lighter; + } + + &.social-trends { + color: colors.$tealPrimary; + border-color: colors.$tealPrimary; + font-weight: lighter; + } + + &.internet, + &.internet-tech { + color: colors.$internetBlue; + border-color: colors.$internetBlue; + font-weight: lighter; + } + + &.science { + color: colors.$orangePrimary; + border-color: colors.$orangePrimary; + font-weight: lighter; + } + + &.global { + color: colors.$globalGreen; + border-color: colors.$globalGreen; + font-weight: lighter; + } + + .methodology-report, + .research-methodology { + color: colors.$lightBrownPrimary; + border-color: colors.$lightBrownPrimary; + font-weight: lighter; + } +} + +// Background color +.ui.label:not(.basic) { + &.pewresearch { + background-color: colors.$slate; + border-color: colors.$slate; + color: white; + font-weight: lighter; + } + + &.politics, + &.u-s-politics { + background-color: colors.$lightBrownPrimary; + border-color: colors.$lightBrownPrimary; + color: white; + font-weight: lighter; + } + + &.journalism, + &.media-news { + background-color: colors.$plum; + border-color: colors.$plum; + color: white; + font-weight: lighter; + } + + &.religion { + background-color: colors.$forumBlue; + border-color: colors.$forumBlue; + color: white; + font-weight: lighter; + } + + &.hispanic { + background-color: colors.$mediumBrownPrimary; + border-color: colors.$mediumBrownPrimary; + color: white; + font-weight: lighter; + } + + &.social-trends { + background-color: colors.$tealPrimary; + border-color: colors.$tealPrimary; + color: white; + font-weight: lighter; + } + + &.internet, + &.internet-tech { + background-color: colors.$internetBlue; + border-color: colors.$internetBlue; + color: white; + font-weight: lighter; + } + + &.science { + background-color: colors.$orangePrimary; + border-color: colors.$orangePrimary; + color: white; + font-weight: lighter; + } + + &.global { + background-color: colors.$globalGreen; + border-color: colors.$globalGreen; + color: white; + font-weight: lighter; + } + + .methodology-report, + .research-methodology { + background-color: colors.$lightBrownPrimary; + border-color: colors.$lightBrownPrimary; + color: white; + font-weight: lighter; + } +} + +/*------------------- + Basic + --------------------*/ + +.ui.basic.label { + background: $basicBackground; + border: $basicBorder; + color: $basicColor; + box-shadow: $basicBoxShadow; +} + +/* Link */ +a.ui.basic.label:hover { + text-decoration: none; + background: $basicHoverBackground; + color: $basicHoverColor; + box-shadow: $basicHoverBorder; + box-shadow: $basicHoverBoxShadow; +} + +/* Pointing */ +.ui.basic.pointing.label:before { + border-color: inherit; +} + +/*------------------- + Flat + --------------------*/ + +.ui.flat.label { + background: none; + border: none; + color: $basicColor; + box-shadow: none; + padding: 0; + margin: 0; + font-weight: normal; +} + +/* Link */ +a.ui.flat.label:hover { + text-decoration: underline; + background: none; + color: $basicHoverColor; + box-shadow: none; + box-shadow: none; + padding: 0; + margin: 0; + font-weight: normal; +} + +/*------------------- + Fluid + --------------------*/ + +.ui.label.fluid, +.ui.fluid.labels>.label { + width: 100%; + box-sizing: border-box; +} + +/*------------------- + Inverted + --------------------*/ + +.ui.inverted.labels .label, +.ui.inverted.label { + color: colors.$invertedTextColor !important; +} + +/*------------------- + Horizontal + --------------------*/ + +.ui.horizontal.labels .label, +.ui.horizontal.label { + margin: 0em $horizontalLabelMargin 0em 0em; + + padding: $horizontalLabelVerticalPadding $horizontalPadding; + min-width: $horizontalLabelMinWidth; + text-align: center; +} + +/*------------------- + Circular + --------------------*/ + +.ui.circular.labels .label, +.ui.circular.label { + min-width: $circularMinSize; + min-height: $circularMinSize; + + padding: $circularPadding !important; + + line-height: 1em; + text-align: center; + border-radius: variables.$circularRadius; +} + +.ui.empty.circular.labels .label, +.ui.empty.circular.label { + min-width: 0em; + min-height: 0em; + overflow: hidden; + width: $emptyCircleSize; + height: $emptyCircleSize; + vertical-align: baseline; +} + +/*------------------- + Pointing + --------------------*/ + +.ui.pointing.label { + position: relative; +} + +.ui.attached.pointing.label { + position: absolute; +} + +.ui.pointing.label:before { + background-color: inherit; + background-image: inherit; + border-width: none; + border-style: solid; + border-color: $pointingBorderColor; +} + +/* Arrow */ +.ui.pointing.label:before { + position: absolute; + content: ""; + transform: rotate(45deg); + background-image: none; + + z-index: $pointingTriangleZIndex; + width: $pointingTriangleSize; + height: $pointingTriangleSize; + transition: $pointingTriangleTransition; +} + +/*--- Above ---*/ +.ui.pointing.label, +.ui[class*="pointing above"].label { + margin-top: $pointingVerticalDistance; +} + +.ui.pointing.label:before, +.ui[class*="pointing above"].label:before { + border-width: $borderWidth 0px 0px $borderWidth; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + top: 0%; + left: 50%; +} + +/*--- Below ---*/ +.ui[class*="bottom pointing"].label, +.ui[class*="pointing below"].label { + margin-top: 0em; + margin-bottom: $pointingVerticalDistance; +} + +.ui[class*="bottom pointing"].label:before, +.ui[class*="pointing below"].label:before { + border-width: 0px $borderWidth $borderWidth 0px; + top: auto; + right: auto; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + top: 100%; + left: 50%; +} + +/*--- Left ---*/ +.ui[class*="left pointing"].label { + margin-top: 0em; + margin-left: $pointingHorizontalDistance; +} + +.ui[class*="left pointing"].label:before { + border-width: 0px 0px $borderWidth $borderWidth; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + bottom: auto; + right: auto; + top: 50%; + left: 0em; +} + +/*--- Right ---*/ +.ui[class*="right pointing"].label { + margin-top: 0em; + margin-right: $pointingHorizontalDistance; +} + +.ui[class*="right pointing"].label:before { + border-width: $borderWidth $borderWidth 0px 0px; + transform: translateX(50%) translateY(-50%) rotate(45deg); + top: 50%; + right: 0%; + bottom: auto; + left: auto; +} + +/* Basic Pointing */ + +/*--- Above ---*/ +.ui.basic.pointing.label:before, +.ui.basic[class*="pointing above"].label:before { + margin-top: $basicPointingTriangleOffset; +} + +/*--- Below ---*/ +.ui.basic[class*="bottom pointing"].label:before, +.ui.basic[class*="pointing below"].label:before { + bottom: auto; + top: 100%; + margin-top: -$basicPointingTriangleOffset; +} + +/*--- Left ---*/ +.ui.basic[class*="left pointing"].label:before { + top: 50%; + left: $basicPointingTriangleOffset; +} + +/*--- Right ---*/ +.ui.basic[class*="right pointing"].label:before { + top: 50%; + right: $basicPointingTriangleOffset; +} + +/*------------------ + Floating Label + -------------------*/ + +.ui.floating.label { + position: absolute; + z-index: $floatingZIndex; + top: $floatingTopOffset; + left: 100%; + margin: 0em 0em 0em $floatingLeftOffset !important; +} + +/*------------------- + Sizes + --------------------*/ + +.ui.mini.labels .label, +.ui.mini.label { + font-size: $mini; +} + +.ui.tiny.labels .label, +.ui.tiny.label { + font-size: $tiny; +} + +.ui.small.labels .label, +.ui.small.label { + font-size: $small; +} + +.ui.labels .label, +.ui.label { + font-size: $medium; +} + +.ui.large.labels .label, +.ui.large.label { + font-size: $large; +} + +.ui.big.labels .label, +.ui.big.label { + font-size: $big; +} + +.ui.huge.labels .label, +.ui.huge.label { + font-size: $huge; +} + +.ui.massive.labels .label, +.ui.massive.label { + font-size: $massive; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/list.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/list.scss new file mode 100644 index 00000000..93cc4fc5 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/list.scss @@ -0,0 +1,1434 @@ +/*! + * # Semantic UI - List + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use 'colors'; + +/******************************* + List +*******************************/ + +/*------------------- + View +--------------------*/ + +/* List */ +$listStyleType: none; +$listStylePosition: outside; +$margin: 1em 0em; +$verticalPadding: 0em; +$horizontalPadding: 0em; + +/* List Item */ +$itemVerticalPadding: variables.$relative3px; +$itemHorizontalPadding: 0em; +$itemPadding: $itemVerticalPadding $itemHorizontalPadding; +$itemLineHeight: variables.$relativeLarge; + +/* Sub List */ +$childListPadding: 0.75em 0em 0.25em 1em; +$childListIndent: 1.2em; + +/* Sub List Item */ +$childItemVerticalPadding: variables.$relative2px; +$childItemHorizontalPadding: 0em; +$childItemPadding: $childItemVerticalPadding $childItemHorizontalPadding; +$childItemLineHeight: inherit; + +/*------------------- + Elements +--------------------*/ + +/* Icon */ +$iconDistance: variables.$relative4px; +$iconOffset: 0em; +$iconColor: #565656; +$iconTransition: color variables.$defaultDuration variables.$defaultEasing; +$iconVerticalAlign: top; +$iconContentVerticalAlign: top; + +/* Image */ +$imageDistance: 0.5em; +$imageAlign: top; + +/* Content */ +$contentDistance: 0.5em; +$contentLineHeight: $itemLineHeight; +$contentLineHeightOffset: ($contentLineHeight - 1em) * 0.5; +$contentVerticalAlign: top; + +/* Header */ +$itemHeaderFontFamily: variables.$sansSerifFont; +$itemHeaderFontWeight: variables.$bold; +$itemHeaderColor: colors.$textColor; + +/* Description */ +$itemDescriptionColor: rgba(0, 0, 0, 0.7); + +/* Link */ +$itemLinkColor: colors.$trueBlack; //colors.$linkColor; +$itemLinkHoverColor: colors.$linkHoverColor; +$itemLinkUnderline: none; +$itemLinkHoverUnderline: underline; + +/* Header Link */ +$itemHeaderLinkColor: $itemLinkColor; +$itemHeaderLinkHoverColor: $itemLinkHoverColor; + +/* Linked Icon */ +$itemLinkIconColor: colors.$lightTextColor; +$itemLinkIconHoverColor: colors.$textColor; +$invertedIconLinkColor: colors.$invertedLightTextColor; + +/*------------------- + States +--------------------*/ + +$disabledColor: colors.$disabledTextColor; +$invertedDisabledColor: colors.$invertedDisabledTextColor; + +/*------------------- + Variations +--------------------*/ + +/* Float */ +$floatDistance: 1em; +$leftFloatMargin: 0em $floatDistance 0em 0em; +$rightFloatMargin: 0em 0em 0em $floatDistance; + +/* Horizontal */ +$horizontalSpacing: 1em; +$horizontalIconDistance: 0.25em; +$horizontalVerticalAlign: middle; + +/* Inverted */ +$invertedListIconColor: colors.$invertedLightTextColor; +$invertedHeaderColor: colors.$invertedTextColor; +$invertedDescriptionColor: colors.$invertedLightTextColor; +$invertedItemLinkColor: colors.$invertedTextColor; +$invertedItemLinkHoverColor: colors.$linkHoverColor; + +/* Link List */ +$linkListItemColor: colors.$trueBlack; //colors.$unselectedTextColor; +$linkListItemHoverColor: colors.$hoveredTextColor; +$linkListItemDownColor: colors.$pressedTextColor; +$linkListItemActiveColor: colors.$selectedTextColor; +$linkListTransition: variables.$defaultDuration color variables.$defaultEasing; + +/* Inverted Link List */ +$invertedLinkListItemColor: colors.$invertedUnselectedTextColor; +$invertedLinkListItemHoverColor: colors.$invertedHoveredTextColor; +$invertedLinkListItemDownColor: colors.$invertedPressedTextColor; +$invertedLinkListItemActiveColor: colors.$invertedSelectedTextColor; + +/* Selection List */ +$selectionListItemMargin: 0em; +$selectionListItemBorderRadius: 0; //0.5em; +$selectionListItemVerticalPadding: 0.5em; +$selectionListItemHorizontalPadding: 0.5em; +$selectionListTransition: variables.$defaultDuration color variables.$defaultEasing, +variables.$defaultDuration padding-left variables.$defaultEasing, +variables.$defaultDuration background-color variables.$defaultEasing; + +/* Selection List States */ +$selectionListBackground: transparent; +$selectionListColor: colors.$unselectedTextColor; +$selectionListHoverBackground: #F0F0E6; //$subtleTransparentBlack; +$selectionListHoverColor: colors.$hoveredTextColor; +$selectionListDownBackground: colors.$transparentBlack; +$selectionListDownColor: colors.$pressedTextColor; +$selectionListActiveBackground: colors.$transparentBlack; +$selectionListActiveColor: colors.$selectedTextColor; + +/* Inverted Selection List */ +$invertedSelectionListBackground: transparent; +$invertedSelectionListColor: colors.$invertedUnselectedTextColor; +$invertedSelectionListHoverBackground: colors.$subtleTransparentWhite; +$invertedSelectionListHoverColor: colors.$invertedHoveredTextColor; +$invertedSelectionListDownBackground: colors.$transparentWhite; +$invertedSelectionListDownColor: colors.$invertedPressedTextColor; +$invertedSelectionListActiveBackground: colors.$transparentWhite; +$invertedSelectionListActiveColor: colors.$invertedSelectedTextColor; + +/* Animated List */ +$animatedDuration: 0.25s; +$animatedDelay: 0.1s; +$animatedListTransition: $animatedDuration color variables.$defaultEasing $animatedDelay, +$animatedDuration padding-left variables.$defaultEasing $animatedDelay, +$animatedDuration background-color variables.$defaultEasing $animatedDelay; +$animatedListIndent: 1em; + +/* Bulleted */ +$bulletDistance: 1.25rem; +$bulletOffset: -$bulletDistance; + +$bulletOpacity: 1; +$bulletCharacter: '•'; +$bulletColor: inherit; +$bulletLinkColor: colors.$textColor; +$bulletVerticalAlign: top; +$bulletChildDistance: $bulletDistance; + +/* Horizontal Bullets */ +$horizontalBulletColor: colors.$textColor; +$horizontalBulletSpacing: $bulletDistance+strip-unit(0.5em); + +/* Ordered List */ +$orderedCountName: ordered; +$orderedCountContent: counters(ordered, ".") " "; +$orderedCountColor: colors.$textColor; +$orderedCountDistance: 1.25rem; +$orderedCountOpacity: 0.8; +$orderedCountTextAlign: right; +$orderedCountVerticalAlign: middle; + +$orderedChildCountDistance: 1em; +$orderedChildCountOffset: -2em; + +$orderedInvertedCountColor: colors.$invertedLightTextColor; + +/* Horizontal Ordered */ +$horizontalOrderedCountDistance: 0.5em; + +/* Tree */ +$treeItemHeaderFontWeight: variables.$light !important; + +/* Divided */ +$dividedBorderWidth: 1px; +$dividedBorder: $dividedBorderWidth solid colors.$borderColor; +$dividedInvertedBorderColor: colors.$whiteBorderColor; +$dividedChildListBorder: none; +$dividedChildItemBorder: none; + +/* Divided Horizontal */ +$horizontalDividedSpacing: ($horizontalSpacing * 0.5); +$horizontalDividedLineHeight: 0.6; + +/* Divided */ +$celledBorderWidth: 1px; +$celledBorder: $celledBorderWidth solid colors.$borderColor; +$celledInvertedBorder: $dividedBorderWidth solid colors.$whiteBorderColor; +$celledHorizontalPadding: 0.5em; +$celledChildListBorder: none; +$celledChildItemBorder: none; + +/* Divided Horizontal */ +$horizontalCelledSpacing: ($horizontalSpacing * 0.5); +$horizontalCelledLineHeight: 0.6; + +/* Relaxed */ +$relaxedItemVerticalPadding: variables.$relative7px; +$relaxedChildItemVerticalPadding: variables.$relative4px; +$relaxedHeaderMargin: 0.25rem; +$relaxedHorizontalPadding: 1rem; + +/* Very Relaxed */ +$veryRelaxedItemVerticalPadding: variables.$relative13px; +$veryRelaxedChildItemVerticalPadding: variables.$relative5px; +$veryRelaxedHeaderMargin: 0.5rem; +$veryRelaxedHorizontalPadding: 1.5rem; + + + +/******************************* + List +*******************************/ + +ul.ui.list, +ol.ui.list, +.ui.list { + list-style-type: $listStyleType; + margin: $margin; + padding: $verticalPadding $horizontalPadding; + font-family: variables.$sansSerifFont; +} + +ul.ui.list:first-child, +ol.ui.list:first-child, +.ui.list:first-child { + margin-top: 0em; + padding-top: 0em; +} + +ul.ui.list:last-child, +ol.ui.list:last-child, +.ui.list:last-child { + margin-bottom: 0em; + padding-bottom: 0em; +} + +/******************************* + Content +*******************************/ + +/* List Item */ +ul.ui.list li, +ol.ui.list li, +.ui.list>.item, +.ui.list .list>.item { + display: list-item; + table-layout: fixed; + list-style-type: $listStyleType; + list-style-position: $listStylePosition; + + padding: $itemPadding; + line-height: $itemLineHeight; +} + +div.ui.flex.list { + flex-direction: column; + + &>.item { + display: flex; + table-layout: inherit; + width: 100%; + } +} + +ul.ui.list>li:first-child:after, +ol.ui.list>li:first-child:after, +.ui.list>.list>.item, +.ui.list>.item:after { + content: ""; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +ul.ui.list li:first-child, +ol.ui.list li:first-child, +.ui.list .list>.item:first-child, +.ui.list>.item:first-child { + padding-top: 0em; +} + +ul.ui.list li:last-child, +ol.ui.list li:last-child, +.ui.list .list>.item:last-child, +.ui.list>.item:last-child { + padding-bottom: 0em; +} + +/* Child List */ +ul.ui.list ul, +ol.ui.list ol, +.ui.list .list { + clear: both; + margin: 0em; + padding: $childListPadding; +} + +/* Child Item */ +ul.ui.list ul li, +ol.ui.list ol li, +.ui.list .list>.item { + padding: $childItemPadding; + line-height: $childItemLineHeight; + + &:first-child { + padding-top: 0 !important; + } +} + +/* Icon */ +.ui.list .list>.item>i.icon, +.ui.list>.item>i.icon { + margin: 0em; + padding-top: $iconOffset; + padding-left: 0; //$iconDistance; + vertical-align: $iconContentVerticalAlign; + transition: $iconTransition; + color: $iconColor; +} + +.ui.list .list>.item> :nth-of-type(1).icon { + padding-right: $iconDistance; + padding-left: 0; +} + +.ui.list .list>.item>i.icon:only-child, +.ui.list>.item>i.icon:only-child { + display: inline-block; + vertical-align: $iconVerticalAlign; +} + +/* Image */ +.ui.list .list>.item>.image, +.ui.list>.item>.image { + margin: 0em; +} + +.ui.list .list>.item>.image:not(:only-child):not(img), +.ui.list>.item>.image:not(:only-child):not(img) { + padding-right: $imageDistance; +} + +.ui.list .list>.item>.image img, +.ui.list>.item>.image img { + vertical-align: $imageAlign; +} + +.ui.list .list>.item>img.image, +.ui.list .list>.item>.image:only-child, +.ui.list>.item>img.image, +.ui.list>.item>.image:only-child { + display: inline-block; +} + +/* Content */ +.ui.list .list>.item>.content, +.ui.list>.item>.content { + line-height: $contentLineHeight; +} + +.ui.list .list>.item>.image+.content, +.ui.list .list>.item>.icon+.content, +.ui.list>.item>.image+.content, +.ui.list>.item>.icon+.content { + display: table-cell; + width: 100%; + padding: 0em 0em 0em $contentDistance; + vertical-align: $contentVerticalAlign; +} + +.ui.list .list>.item>img.image+.content, +.ui.list>.item>img.image+.content { + display: inline-block; + width: auto; +} + +.ui.list .list>.item>.content>.list, +.ui.list>.item>.content>.list { + margin-left: 0em; + padding-left: 0em; +} + +/* Header */ +.ui.list .list>.item .header, +.ui.list>.item .header { + display: block; + margin: 0em; + font-family: $itemHeaderFontFamily; + font-weight: $itemHeaderFontWeight; + color: $itemHeaderColor; +} + +/* Description */ +.ui.list .list>.item .description, +.ui.list>.item .description { + display: block; + color: $itemDescriptionColor; +} + +/* Child Link */ +.ui.list>.item a, +.ui.list .list>.item a, +.ui.list>a.item { + cursor: pointer; +} + +/* Linking Item */ +.ui.list .list>a.item, +.ui.list>a.item { + cursor: pointer; + color: $itemLinkColor; +} + +.ui.list .list>a.item:hover, +.ui.list>a.item:hover { + color: $itemLinkHoverColor; +} + +/* Linked Item Icons */ +.ui.list .list>a.item i.icon, +.ui.list>a.item i.icon { + color: $itemLinkIconColor; +} + +/* Header Link */ +.ui.list .list>.item a.header, +.ui.list>.item a.header { + cursor: pointer; + color: $itemHeaderLinkColor !important; +} + +.ui.list .list>.item a.header:hover, +.ui.list>.item a.header:hover { + color: $itemHeaderLinkHoverColor !important; +} + +/* Floated Content */ +.ui[class*="left floated"].list { + float: left; +} + +.ui[class*="right floated"].list { + float: right; +} + +.ui.list .list>.item [class*="left floated"], +.ui.list>.item [class*="left floated"] { + float: left; + margin: $leftFloatMargin; +} + +.ui.list .list>.item [class*="right floated"], +.ui.list>.item [class*="right floated"] { + float: right; + margin: $rightFloatMargin; +} + +/******************************* + Coupling +*******************************/ + +.ui.menu .ui.list>.item, +.ui.menu .ui.list .list>.item { + display: list-item; + table-layout: fixed; + background-color: transparent; + + list-style-type: $listStyleType; + list-style-position: $listStylePosition; + + padding: $itemVerticalPadding $itemHorizontalPadding; + line-height: $itemLineHeight; +} + +.ui.menu .ui.list .list>.item:before, +.ui.menu .ui.list>.item:before { + border: none; + background: none; +} + +.ui.menu .ui.list .list>.item:first-child, +.ui.menu .ui.list>.item:first-child { + padding-top: 0em; +} + +.ui.menu .ui.list .list>.item:last-child, +.ui.menu .ui.list>.item:last-child { + padding-bottom: 0em; +} + +/******************************* + Types +*******************************/ + +/*------------------- + Horizontal +--------------------*/ + +.ui.horizontal.list { + display: inline-block; + font-size: 0em; +} + +.ui.horizontal.list>.item { + display: inline-block; + margin-left: $horizontalSpacing; + font-size: 1rem; +} + +.ui.horizontal.list:not(.celled)>.item:first-child { + margin-left: 0em !important; + padding-left: 0em !important; +} + +.ui.horizontal.list .list { + padding-left: 0em; + padding-bottom: 0em; +} + +.ui.horizontal.list>.item>.image, +.ui.horizontal.list .list>.item>.image, +.ui.horizontal.list>.item>.icon, +.ui.horizontal.list .list>.item>.icon, +.ui.horizontal.list>.item>.content, +.ui.horizontal.list .list>.item>.content { + vertical-align: $horizontalVerticalAlign; +} + +/* Padding on all elements */ +.ui.horizontal.list>.item:first-child, +.ui.horizontal.list>.item:last-child { + padding-top: $itemVerticalPadding; + padding-bottom: $itemVerticalPadding; +} + +/* Horizontal List */ +.ui.horizontal.list>.item>i.icon { + margin: 0em; + padding: 0em $horizontalIconDistance 0em 0em; +} + +.ui.horizontal.list>.item>.icon, +.ui.horizontal.list>.item>.icon+.content { + float: none; + display: inline-block; +} + +/*------------------- +Comma Seperated - Seth +--------------------*/ + +.ui.list.comma-seperated { + // display: flex; + // flex-direction: row; + // flex-wrap: wrap; + padding: 0; + + div.item { + color: colors.$grayDark; + } + + a.item { + color: colors.$linkColor; + } + + .item { + margin-left: 0em; + margin-right: 0.4em !important; + } + + a.item:after { + content: ","; + display: inline-block; + height: inherit; + visibility: visible; + } + + a.item:last-of-type:after { + content: ""; + } +} + +/*------------------- + Columns - Seth +--------------------*/ + +.ui.columns.list { + display: flex; + flex-wrap: wrap; + + &.relaxed .item:first-child { + padding-top: 0.70028571em; + } + + .item:first-child { + padding-top: $itemVerticalPadding; + } + + &.four { + .item { + width: 25%; + } + } + + &.three { + .item { + width: 25%; + } + } +} + +/******************************* + States +*******************************/ + +/*------------------- + Disabled +--------------------*/ + +.ui.list .list>.disabled.item, +.ui.list>.disabled.item { + pointer-events: none; + color: $disabledColor !important; +} + +.ui.inverted.list .list>.disabled.item, +.ui.inverted.list>.disabled.item { + color: $invertedDisabledColor !important; +} + +/*------------------- + Hidden +--------------------*/ + +.ui.list>.item>.hidden, +.ui.list .list>.hidden.item, +.ui.list>.hidden.item, +.ui.list>.hidden { + display: none; + + &.visible { + display: list-item; + } +} + +/*------------------- + Hover +--------------------*/ + +.ui.list .list>a.item:hover .icon, +.ui.list>a.item:hover .icon { + color: $itemLinkIconHoverColor; +} + +/******************************* + Variations +*******************************/ + +/*------------------- + Inverted +--------------------*/ + +.ui.inverted.list .list>a.item>.icon, +.ui.inverted.list>a.item>.icon { + color: $invertedIconLinkColor; +} + +.ui.inverted.list .list>.item .header, +.ui.inverted.list>.item .header { + color: $invertedHeaderColor; +} + +.ui.inverted.list .list>.item .description, +.ui.inverted.list>.item .description { + color: $invertedDescriptionColor; +} + +/* Item Link */ +.ui.inverted.list .list>a.item, +.ui.inverted.list>a.item { + cursor: pointer; + color: $invertedItemLinkColor; +} + +.ui.inverted.list .list>a.item:hover, +.ui.inverted.list>a.item:hover { + color: $invertedItemLinkHoverColor; +} + +/* Linking Content */ +.ui.inverted.list .item a:not(.ui) { + color: $invertedItemLinkColor !important; +} + +.ui.inverted.list .item a:not(.ui):hover { + color: $invertedItemLinkHoverColor !important; +} + +/*------------------- + Aligned +--------------------*/ + +.ui.list[class*="top aligned"] .image, +.ui.list[class*="top aligned"] .content, +.ui.list [class*="top aligned"] { + vertical-align: top !important; +} + +.ui.list[class*="middle aligned"] .image, +.ui.list[class*="middle aligned"] .content, +.ui.list [class*="middle aligned"] { + vertical-align: middle !important; +} + +.ui.list[class*="bottom aligned"] .image, +.ui.list[class*="bottom aligned"] .content, +.ui.list [class*="bottom aligned"] { + vertical-align: bottom !important; +} + +/*------------------- + Link +--------------------*/ + +.ui.link.list .item, +.ui.link.list a.item, +.ui.link.list .item a:not(.ui) { + color: $linkListItemColor; + transition: $linkListTransition; + text-decoration: none; + + .meta { + display: block; + padding-bottom: 0.5rem; + } +} + +.ui.link.list a.item, +.ui.link.list .item>a { + &:hover { + text-decoration: $itemLinkHoverUnderline !important; + } +} + +.ui.link.list .blue.item { + color: colors.$linkColor; +} + +.ui.link.list .active.item { + font-weight: bold; + + .list { + font-weight: normal; + } +} + +.ui.link.list.list a.item:hover, +.ui.link.list.list .item a:not(.ui):hover { + color: $linkListItemHoverColor; +} + +.ui.link.list.list a.item:active, +.ui.link.list.list .item a:not(.ui):active { + color: $linkListItemDownColor; +} + +.ui.link.list.list .active.item, +.ui.link.list.list .active.item a:not(.ui) { + color: $linkListItemActiveColor; +} + +/* Inverted */ +.ui.inverted.link.list .item, +.ui.inverted.link.list a.item, +.ui.inverted.link.list .item a:not(.ui) { + color: $invertedLinkListItemColor; +} + +.ui.inverted.link.list.list a.item:hover, +.ui.inverted.link.list.list .item a:not(.ui):hover { + color: $invertedLinkListItemHoverColor; +} + +.ui.inverted.link.list.list a.item:active, +.ui.inverted.link.list.list .item a:not(.ui):active { + color: $invertedLinkListItemDownColor; +} + +.ui.inverted.link.list.list a.active.item, +.ui.inverted.link.list.list .active.item a:not(.ui) { + color: $invertedLinkListItemActiveColor; +} + +/*------------------- + Selection +--------------------*/ + +.ui.selection.list .list>.item, +.ui.selection.list>.item { + cursor: pointer; + background-color: $selectionListBackground; + padding: $selectionListItemVerticalPadding $selectionListItemHorizontalPadding; + margin: $selectionListItemMargin; + color: $selectionListColor; + border-radius: $selectionListItemBorderRadius; + transition: $selectionListTransition; +} + +.ui.selection.list .list>.item:last-child, +.ui.selection.list>.item:last-child { + margin-bottom: 0em; +} + +.ui.selection.list.list>.item:hover, +.ui.selection.list>.item:hover { + background-color: $selectionListHoverBackground; + color: $selectionListHoverColor; +} + +.ui.selection.list .list>.item:active, +.ui.selection.list>.item:active { + background-color: $selectionListDownBackground; + color: $selectionListDownColor; +} + +.ui.selection.list .list>.item.active, +.ui.selection.list>.item.active { + background-color: $selectionListActiveBackground; + color: $selectionListActiveColor; +} + +/* Inverted */ +.ui.inverted.selection.list>.item, +.ui.inverted.selection.list>.item { + background-color: $invertedSelectionListBackground; + color: $invertedSelectionListColor; +} + +.ui.inverted.selection.list>.item:hover, +.ui.inverted.selection.list>.item:hover { + background-color: $invertedSelectionListHoverBackground; + color: $invertedSelectionListHoverColor; +} + +.ui.inverted.selection.list>.item:active, +.ui.inverted.selection.list>.item:active { + background-color: $invertedSelectionListDownBackground; + color: $invertedSelectionListDownColor; +} + +.ui.inverted.selection.list>.item.active, +.ui.inverted.selection.list>.item.active { + background-color: $invertedSelectionListActiveBackground; + color: $invertedSelectionListActiveColor; +} + +/* Celled / Divided Selection List */ +.ui.celled.selection.list .list>.item, +.ui.divided.selection.list .list>.item, +.ui.celled.selection.list>.item, +.ui.divided.selection.list>.item { + border-radius: 0em; +} + +/*------------------- + Animated +--------------------*/ + +.ui.animated.list>.item { + transition: $animatedListTransition; +} + +.ui.animated.list:not(.horizontal)>.item:hover { + padding-left: $animatedListIndent; +} + +/*------------------- + Fitted +--------------------*/ +.ui.fitted.list:not(.selection) { + + .list>.item, + &>.item { + padding-left: 0em; + padding-right: 0em; + } + + &.horizontal { + margin: 0; + } +} + +.ui.fitted.selection.list .list>.item, +.ui.fitted.selection.list>.item { + margin-left: -$selectionListItemHorizontalPadding; + margin-right: -$selectionListItemHorizontalPadding; +} + +/*------------------- + Attached +--------------------*/ +.ui.attached.list { + &.bottom { + margin-bottom: 0 !important; + } + + &.top { + margin-top: 0 !important; + } +} + +/*------------------- + Bulleted +--------------------*/ + +// ul.ui.list, +.ui.bulleted.list { + margin-left: $bulletDistance; +} + +// ul.ui.list li, +.ui.bulleted.list .list>.item, +.ui.bulleted.list>.item { + position: relative; +} + +// ul.ui.list li:before, +.ui.bulleted.list .list>.item:before, +.ui.bulleted.list>.item:before { + user-select: none; + pointer-events: none; + position: absolute; + top: auto; + left: auto; + font-weight: variables.$normal; + margin-left: $bulletOffset; + content: $bulletCharacter; + opacity: $bulletOpacity; + color: $bulletColor; + vertical-align: $bulletVerticalAlign; +} + +// ul.ui.list li:before, +.ui.bulleted.list .list>a.item:before, +.ui.bulleted.list>a.item:before { + color: $bulletLinkColor; +} + +// ul.ui.list ul, +.ui.bulleted.list .list { + padding-left: $bulletChildDistance; +} + +/* Horizontal Bulleted */ +// ul.ui.horizontal.bulleted.list, +.ui.horizontal.bulleted.list { + margin-left: 0em; +} + +// ul.ui.horizontal.bulleted.list li, +.ui.horizontal.bulleted.list>.item { + margin-left: $horizontalBulletSpacing; +} + +// ul.ui.horizontal.bulleted.list li:first-child, +.ui.horizontal.bulleted.list>.item:first-child { + margin-left: 0em; +} + +// ul.ui.horizontal.bulleted.list li::before, +.ui.horizontal.bulleted.list>.item::before { + color: $horizontalBulletColor; +} + +// ul.ui.horizontal.bulleted.list li:first-child::before, +.ui.horizontal.bulleted.list>.item:first-child::before { + display: none; +} + +/*------------------- + Ordered +--------------------*/ + +ol.ui.list, +.ui.ordered.list, +.ui.ordered.list .list, +ol.ui.list ol { + counter-reset: ordered; + margin-left: $orderedCountDistance; + list-style-type: none; +} + +ol.ui.list li, +.ui.ordered.list .list>.item, +.ui.ordered.list>.item { + list-style-type: none; + position: relative; +} + +ol.ui.list li:before, +.ui.ordered.list .list>.item:before, +.ui.ordered.list>.item:before { + position: absolute; + top: auto; + left: auto; + user-select: none; + pointer-events: none; + margin-left: -($orderedCountDistance); + counter-increment: $orderedCountName; + content: $orderedCountContent; + text-align: $orderedCountTextAlign; + color: $orderedCountColor; + vertical-align: $orderedCountVerticalAlign; + opacity: $orderedCountOpacity; +} + +ol.ui.inverted.list li:before, +.ui.ordered.inverted.list .list>.item:before, +.ui.ordered.inverted.list>.item:before { + color: $orderedInvertedCountColor; +} + +/* Value */ +.ui.ordered.list>.list>.item[data-value], +.ui.ordered.list>.item[data-value] { + content: attr(data-value); +} + +ol.ui.list li[value]:before { + content: attr(value); +} + +/* Child Lists */ +ol.ui.list ol, +.ui.ordered.list .list { + margin-left: $orderedChildCountDistance; +} + +ol.ui.list ol li:before, +.ui.ordered.list .list>.item:before { + margin-left: $orderedChildCountOffset; +} + +/* Horizontal Ordered */ +ol.ui.horizontal.list, +.ui.ordered.horizontal.list { + margin-left: 0em; +} + +ol.ui.horizontal.list li:before, +.ui.ordered.horizontal.list .list>.item:before, +.ui.ordered.horizontal.list>.item:before { + position: static; + margin: 0em $horizontalOrderedCountDistance 0em 0em; +} + +/*------------------- + Tree +--------------------*/ +.ui.tree.list, +.ui.tree.list:last-child { + padding-bottom: 0.3em; + + .list { + list-style-type: none; + } + + .list:not(.hidden-list) { + padding-top: 0em; + } + + .item>.header { + font-weight: $treeItemHeaderFontWeight; + opacity: 0.7 !important; + } + + // Pseudo aligns item as child list element + .item>.read-more { + padding-left: $childListIndent; + } + + .hidden-list { + display: none; + } +} + +/*------------------- + Divided +--------------------*/ + +.ui.divided.list>.item { + border-top: $dividedBorder; +} + +.ui.divided.list .list>.item { + border-top: $dividedChildListBorder; +} + +.ui.divided.list .item .list>.item { + border-top: $dividedChildItemBorder; +} + +.ui.divided.list .list>.item:first-child, +.ui.divided.list>.item:first-child { + border-top: none; +} + +/* Sub Menu */ +.ui.divided.list:not(.horizontal) .list>.item:first-child { + border-top-width: $dividedBorderWidth; +} + +/* Divided bulleted */ +.ui.divided.bulleted.list:not(.horizontal), +.ui.divided.bulleted.list .list { + margin-left: 0em; + padding-left: 0em; +} + +.ui.divided.bulleted.list>.item:not(.horizontal) { + padding-left: $bulletDistance; +} + +/* Divided Ordered */ +.ui.divided.ordered.list { + margin-left: 0em; +} + +.ui.divided.ordered.list .list>.item, +.ui.divided.ordered.list>.item { + padding-left: $orderedCountDistance; +} + +.ui.divided.ordered.list .item .list { + margin-left: 0em; + margin-right: 0em; + padding-bottom: $itemVerticalPadding; +} + +.ui.divided.ordered.list .item .list>.item { + padding-left: $orderedChildCountDistance; +} + +/* Divided Selection */ +.ui.divided.selection.list .list>.item, +.ui.divided.selection.list>.item { + margin: 0em; + border-radius: 0em; +} + +/* Divided horizontal */ +.ui.divided.horizontal.list { + margin-left: 0em; +} + +.ui.divided.horizontal.list>.item:not(:first-child) { + padding-left: $horizontalDividedSpacing; +} + +.ui.divided.horizontal.list>.item:not(:last-child) { + padding-right: $horizontalDividedSpacing; +} + +.ui.divided.horizontal.list>.item { + border-top: none; + border-left: $dividedBorder; + margin: 0em; + line-height: $horizontalDividedLineHeight; +} + +.ui.horizontal.divided.list>.item:first-child { + border-left: none; +} + +/* Inverted */ +.ui.divided.inverted.list>.item, +.ui.divided.inverted.list>.list, +.ui.divided.inverted.horizontal.list>.item { + border-color: $dividedInvertedBorderColor; +} + +/*------------------- + Celled +--------------------*/ + +.ui.celled.list>.item, +.ui.celled.list>.list { + border-top: $celledBorder; + padding-left: $celledHorizontalPadding; + padding-right: $celledHorizontalPadding; +} + +.ui.celled.list>.item:last-child { + border-bottom: $celledBorder; +} + +/* Padding on all elements */ +.ui.celled.list>.item:first-child, +.ui.celled.list>.item:last-child { + padding-top: $itemVerticalPadding; + padding-bottom: $itemVerticalPadding; +} + +/* Sub Menu */ +.ui.celled.list .item .list>.item { + border-width: 0px; +} + +.ui.celled.list .list>.item:first-child { + border-top-width: 0px; +} + +/* Celled Bulleted */ +.ui.celled.bulleted.list { + margin-left: 0em; +} + +.ui.celled.bulleted.list .list>.item, +.ui.celled.bulleted.list>.item { + padding-left: ($bulletDistance); +} + +.ui.celled.bulleted.list .item .list { + margin-left: -($bulletDistance); + margin-right: -($bulletDistance); + padding-bottom: $itemVerticalPadding; +} + +/* Celled Ordered */ +.ui.celled.ordered.list { + margin-left: 0em; +} + +.ui.celled.ordered.list .list>.item, +.ui.celled.ordered.list>.item { + padding-left: $orderedCountDistance; +} + +.ui.celled.ordered.list .item .list { + margin-left: 0em; + margin-right: 0em; + padding-bottom: $itemVerticalPadding; +} + +.ui.celled.ordered.list .list>.item { + padding-left: $orderedChildCountDistance; +} + +/* Celled Horizontal */ +.ui.horizontal.celled.list { + margin-left: 0em; +} + +.ui.horizontal.celled.list .list>.item, +.ui.horizontal.celled.list>.item { + border-top: none; + border-left: $celledBorder; + margin: 0em; + padding-left: $horizontalCelledSpacing; + padding-right: $horizontalCelledSpacing; + + line-height: $horizontalCelledLineHeight; +} + +.ui.horizontal.celled.list .list>.item:first-child, +.ui.horizontal.celled.list>.item:first-child { + border-bottom: none; + border-left: none; + padding-left: 0; +} + +.ui.horizontal.celled.list .list>.item:last-child, +.ui.horizontal.celled.list>.item:last-child { + border-bottom: none; +} + +/* Inverted */ +.ui.celled.inverted.list>.item, +.ui.celled.inverted.list>.list { + border-color: $celledInvertedBorder; +} + +.ui.celled.inverted.horizontal.list .list>.item, +.ui.celled.inverted.horizontal.list>.item { + border-color: $celledInvertedBorder; +} + +/*------------------- + Relaxed +--------------------*/ + +.ui.relaxed.list:not(.horizontal)>.item:not(:first-child), +.ui.relaxed.list:not(.horizontal)>li:not(:first-child), +.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>li:not(:first-child), +.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>.item:not(:first-child) { + padding-top: $relaxedItemVerticalPadding * 1.634; //$relaxedItemVerticalPadding; +} + +.ui.relaxed.list:not(.horizontal)>.item:not(:last-child), +.ui.relaxed.list:not(.horizontal)>li:not(:last-child), +.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>li:not(:last-child), +.ui.relaxed.list:not(.horizontal) .list:not(.horizontal)>.item:not(:last-child) { + padding-bottom: $relaxedItemVerticalPadding; +} + +.ui.horizontal.relaxed.list .list>.item:not(:first-child), +.ui.horizontal.relaxed.list>.item:not(:first-child) { + padding-left: $relaxedHorizontalPadding; +} + +.ui.horizontal.relaxed.list .list>.item:not(:last-child), +.ui.horizontal.relaxed.list>.item:not(:last-child) { + padding-right: $relaxedHorizontalPadding; +} + +.ui.relaxed.list>.item.view-more { + cursor: pointer; +} + +/* Very Relaxed */ +.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:first-child) { + padding-top: $veryRelaxedItemVerticalPadding; +} + +.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:last-child) { + padding-bottom: $veryRelaxedItemVerticalPadding; +} + +.ui.horizontal[class*="very relaxed"].list .list>.item:not(:first-child), +.ui.horizontal[class*="very relaxed"].list>.item:not(:first-child) { + padding-left: $veryRelaxedHorizontalPadding; +} + +.ui.horizontal[class*="very relaxed"].list .list>.item:not(:last-child), +.ui.horizontal[class*="very relaxed"].list>.item:not(:last-child) { + padding-right: $veryRelaxedHorizontalPadding; +} + +/*------------------- + Sizes (Should be absolute) +--------------------*/ + +.ui.mini.list { + font-size: variables.$u11px; +} + +.ui.tiny.list { + font-size: variables.$u12px; +} + +.ui.small.list { + font-size: variables.$u13px; +} + +.ui.medium.list { + font-size: variables.$u14px; +} + +.ui.list { + font-size: variables.$u15px; + + .ui.checkbox>label { + font-size: variables.$u15px !important; + } +} + +.ui.large.list { + font-size: variables.$u16px; +} + +.ui.mini.horizontal.list .list>.item, +.ui.mini.horizontal.list>.item { + font-size: variables.$u11px; +} + +.ui.tiny.horizontal.list .list>.item, +.ui.tiny.horizontal.list>.item { + font-size: variables.$u12px; +} + +.ui.small.horizontal.list .list>.item, +.ui.small.horizontal.list>.item { + font-size: variables.$u13px; +} + +.ui.medium.horizontal.list .list>.item, +.ui.medium.horizontal.list>.item { + font-size: variables.$u14px; +} + +.ui.horizontal.list .list>.item, +.ui.horizontal.list>.item { + font-size: variables.$u15px; + + .ui.checkbox>label { + font-size: variables.$u15px !important; + } +} + +.ui.large.horizontal.list .list>.item, +.ui.large.horizontal.list>.item { + font-size: variables.$u16px; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/loader.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/loader.scss new file mode 100644 index 00000000..a50d4a04 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/loader.scss @@ -0,0 +1,423 @@ +/*! + * # Semantic UI - Loader + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "functions" as functions; +@use 'colors'; +@use 'sass:math'; +/******************************* + Loader +*******************************/ + +/* Some global loader styles defined in site.variables */ +// variables.$loaderSpeed +// variables.$loaderLineWidth +// colors.$loaderFillColor +// $loaderLineColor +// colors.$invertedLoaderFillColor +// colors.$invertedLoaderLineColor + +/*------------------- + Standard +--------------------*/ + +$loaderTopOffset: 50%; +$loaderLeftOffset: 50%; + +$shapeBorderColor: colors.$loaderLineColor transparent transparent; +$invertedShapeBorderColor: colors.$invertedLoaderLineColor transparent transparent; + +/*------------------- + Types +--------------------*/ + +/* Text */ +$textDistance: variables.$relativeMini; +$loaderTextColor: colors.$textColor; +$invertedLoaderTextColor: colors.$invertedTextColor; + + +/*------------------- + States +--------------------*/ + +$indeterminateDirection: reverse; +$indeterminateSpeed: (2 * variables.$loaderSpeed); + +/*------------------- + Variations +--------------------*/ + +$inlineVerticalAlign: middle; +$inlineMargin: 0em; + +/* Exact Sizes (Avoids Rounding Errors) */ +$mini : variables.$u14px; +$tiny : variables.$u16px; +$small : variables.$u24px; +$medium : variables.$u32px; +$large : variables.$u48px; +$big : variables.$u52px; +$huge : variables.$u58px; +$massive : variables.$u64px; + +$miniOffset: 0em 0em 0em (-($mini * 0.5)); +$tinyOffset: 0em 0em 0em (-($tiny * 0.5)); +$smallOffset: 0em 0em 0em (-($small * 0.5)); +$mediumOffset: 0em 0em 0em (-($medium * 0.5)); +$largeOffset: 0em 0em 0em (-($large * 0.5)); +$bigOffset: 0em 0em 0em (-($big * 0.5)); +$hugeOffset: 0em 0em 0em (-($huge * 0.5)); +$massiveOffset: 0em 0em 0em (-($massive * 0.5)); + +$tinyFontSize: variables.$relativeTiny; +$miniFontSize: variables.$relativeMini; +$smallFontSize: variables.$relativeSmall; +$mediumFontSize: variables.$relativeMedium; +$largeFontSize: variables.$relativeLarge; +$bigFontSize: variables.$relativeBig; +$hugeFontSize: variables.$relativeHuge; +$massiveFontSize: variables.$relativeMassive; + + +/******************************* + Loader +*******************************/ + +/* Standard Size */ +.ui.loader { + display: none; + position: absolute; + top: $loaderTopOffset; + left: $loaderLeftOffset; + margin: 0px; + text-align: center; + z-index: 1000; + transform: translateX(-50%) translateY(-50%); +} + +/* Static Shape */ +.ui.loader:before { + position: absolute; + content: ""; + top: 0%; + left: 50%; + width: 100%; + height: 100%; + + border-radius: variables.$circularRadius; + border: variables.$loaderLineWidth solid colors.$loaderFillColor; +} + +/* Active Shape */ +.ui.loader:after { + position: absolute; + content: ""; + top: 0%; + left: 50%; + width: 100%; + height: 100%; + + animation: loader variables.$loaderSpeed linear; + animation-iteration-count: infinite; + + border-radius: variables.$circularRadius; + + border-color: $shapeBorderColor; + border-style: solid; + border-width: variables.$loaderLineWidth; + + box-shadow: 0px 0px 0px 1px transparent; +} + +/* Active Animation */ +@keyframes loader { + from { + transform: rotate(0deg); + } + + to { + transform: rotate(360deg); + } +} + +/* Sizes */ +.ui.mini.loader:before, +.ui.mini.loader:after { + width: $mini; + height: $mini; + margin: $miniOffset; +} + +.ui.tiny.loader:before, +.ui.tiny.loader:after { + width: $tiny; + height: $tiny; + margin: $tinyOffset; +} + +.ui.small.loader:before, +.ui.small.loader:after { + width: $small; + height: $small; + margin: $smallOffset; +} + +.ui.loader:before, +.ui.loader:after { + width: $medium; + height: $medium; + margin: $mediumOffset; +} + +.ui.large.loader:before, +.ui.large.loader:after { + width: $large; + height: $large; + margin: $largeOffset; +} + +.ui.big.loader:before, +.ui.big.loader:after { + width: $big; + height: $big; + margin: $bigOffset; +} + +.ui.huge.loader:before, +.ui.huge.loader:after { + width: $huge; + height: $huge; + margin: $hugeOffset; +} + +.ui.massive.loader:before, +.ui.massive.loader:after { + width: $massive; + height: $massive; + margin: $massiveOffset; +} + +/*------------------- + Coupling +--------------------*/ + +/* Show inside active dimmer */ +.ui.dimmer .loader { + display: block; +} + +/* Black Dimmer */ +.ui.dimmer .ui.loader { + color: $invertedLoaderTextColor; +} + +.ui.dimmer .ui.loader:before { + border-color: colors.$invertedLoaderFillColor; +} + +.ui.dimmer .ui.loader:after { + border-color: $invertedShapeBorderColor; +} + +/* White Dimmer (Inverted) */ +.ui.inverted.dimmer .ui.loader { + color: $loaderTextColor; +} + +.ui.inverted.dimmer .ui.loader:before { + border-color: colors.$loaderFillColor; +} + +.ui.inverted.dimmer .ui.loader:after { + border-color: $shapeBorderColor; +} + +/******************************* + Types +*******************************/ + +/*------------------- + Text +--------------------*/ + +.ui.text.loader { + width: auto !important; + height: auto !important; + text-align: center; + font-style: normal; +} + +/******************************* + States +*******************************/ + +.ui.indeterminate.loader:after { + animation-direction: $indeterminateDirection; + animation-duration: $indeterminateSpeed; +} + +.ui.loader.active, +.ui.loader.visible { + display: block; +} + +.ui.loader.disabled, +.ui.loader.hidden { + display: none; +} + +/******************************* + Variations +*******************************/ + +/*------------------- + Sizes +--------------------*/ + +/* Loader */ +.ui.inverted.dimmer .ui.mini.loader, +.ui.mini.loader { + width: $mini; + height: $mini; + font-size: $miniFontSize; +} + +.ui.inverted.dimmer .ui.tiny.loader, +.ui.tiny.loader { + width: $tiny; + height: $tiny; + font-size: $tinyFontSize; +} + +.ui.inverted.dimmer .ui.small.loader, +.ui.small.loader { + width: $small; + height: $small; + font-size: $smallFontSize; +} + +.ui.inverted.dimmer .ui.loader, +.ui.loader { + width: $medium; + height: $medium; + font-size: $mediumFontSize; +} + +.ui.inverted.dimmer .ui.large.loader, +.ui.large.loader { + width: $large; + height: $large; + font-size: $largeFontSize; +} + +.ui.inverted.dimmer .ui.big.loader, +.ui.big.loader { + width: $big; + height: $big; + font-size: $bigFontSize; +} + +.ui.inverted.dimmer .ui.huge.loader, +.ui.huge.loader { + width: $huge; + height: $huge; + font-size: $hugeFontSize; +} + +.ui.inverted.dimmer .ui.massive.loader, +.ui.massive.loader { + width: $massive; + height: $massive; + font-size: $massiveFontSize; +} + +/* Text Loader */ +.ui.mini.text.loader { + min-width: $mini; + padding-top: ($mini + functions.strip-unit($textDistance)); +} + +.ui.tiny.text.loader { + min-width: $tiny; + padding-top: ($tiny + functions.strip-unit($textDistance)); +} + +.ui.small.text.loader { + min-width: $small; + padding-top: ($small + functions.strip-unit($textDistance)); +} + +.ui.text.loader { + min-width: $medium; + padding-top: ($medium + functions.strip-unit($textDistance)); +} + +.ui.large.text.loader { + min-width: $large; + padding-top: ($large + functions.strip-unit($textDistance)); +} + +.ui.big.text.loader { + min-width: $big; + padding-top: ($big + functions.strip-unit($textDistance)); +} + +.ui.huge.text.loader { + min-width: $huge; + padding-top: ($huge + functions.strip-unit($textDistance)); +} + +.ui.massive.text.loader { + min-width: $massive; + padding-top: ($massive + functions.strip-unit($textDistance)); +} + +/*------------------- + Inverted +--------------------*/ + +.ui.inverted.loader { + color: $invertedLoaderTextColor; +} + +.ui.inverted.loader:before { + border-color: colors.$invertedLoaderFillColor; +} + +.ui.inverted.loader:after { + border-top-color: colors.$invertedLoaderLineColor; +} + +/*------------------- + Inline +--------------------*/ + +.ui.inline.loader { + position: relative; + vertical-align: $inlineVerticalAlign; + margin: $inlineMargin; + left: 0em; + top: 0em; + transform: none; +} + +.ui.inline.loader.active, +.ui.inline.loader.visible { + display: inline-block; +} + +/* Centered Inline */ +.ui.centered.inline.loader.active, +.ui.centered.inline.loader.visible { + display: block; + margin-left: auto; + margin-right: auto; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/master.variables.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/master.variables.scss new file mode 100644 index 00000000..aa8d6570 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/master.variables.scss @@ -0,0 +1,516 @@ +@use 'colors'; +@use "functions" as functions; +@use "sass:math"; +@use "sass:string"; +@use "sass:map"; + + +/******************************* + Site Settings +*******************************/ + +/*------------------- + Fonts +--------------------*/ +$franklinGothic : 'franklin-gothic-urw'; +$abrilText : 'abril-text'; + +$defaultFont : var(--wp--preset--font-family--default); +$serifFont : var(--wp--preset--font-family--serif); +$sansSerifFont : var(--wp--preset--font-family--sans-serif); +$sansSerif : $sansSerifFont; // Alias for $sansSerifFont + +$pageFont : $defaultFont; +$headerFont : $sansSerifFont; +$postTitleFont : $serifFont; + +$fontSmoothing : antialiased; + +$bold : bold; +$normal : normal; +$light : lighter; + + +/*------------------- + Base Sizes +--------------------*/ +/* This is the single variable that controls them all */ +$baseUnit : 14; + +/* Convert the base unit to a pixel value. */ +$emSize : functions.replace-unit($baseUnit, px); + +/* The size of page text */ +$fontSize : $emSize; + + +/*------------------- + Grid +--------------------*/ + +$maxWidth: 1152px; +$columnCount: 16; + +// /*------------------- +// Exact Pixel Values +// --------------------*/ + +/* + These are used to specify exact pixel values in em + for things like borders that remain constantly + sized as emSize adjusts + + Since there are many more sizes than names for sizes, + these are named by their original pixel values. + +*/ +$u1px : functions.replace-unit(math.div(1, functions.strip-unit($emSize)), rem); +$u2px : functions.replace-unit(math.div(2, functions.strip-unit($emSize)), rem); +$u3px : functions.replace-unit(math.div(3, functions.strip-unit($emSize)), rem); +$u4px : functions.replace-unit(math.div(4, functions.strip-unit($emSize)), rem); +$u5px : functions.replace-unit(math.div(5, functions.strip-unit($emSize)), rem); +$u6px : functions.replace-unit(math.div(6, functions.strip-unit($emSize)), rem); +$u7px : functions.replace-unit(math.div(7, functions.strip-unit($emSize)), rem); +$u8px : functions.replace-unit(math.div(8, functions.strip-unit($emSize)), rem); +$u9px : functions.replace-unit(math.div(9, functions.strip-unit($emSize)), rem); +$u10px : functions.replace-unit(math.div(10, functions.strip-unit($emSize)), rem); +$u11px : functions.replace-unit(math.div(11, functions.strip-unit($emSize)), rem); +$u12px : functions.replace-unit(math.div(12, functions.strip-unit($emSize)), rem); +$u13px : functions.replace-unit(math.div(13, functions.strip-unit($emSize)), rem); +$u14px : functions.replace-unit(math.div(14, functions.strip-unit($emSize)), rem); +$u15px : functions.replace-unit(math.div(15, functions.strip-unit($emSize)), rem); +$u16px : functions.replace-unit(math.div(16, functions.strip-unit($emSize)), rem); +$u17px : functions.replace-unit(math.div(17, functions.strip-unit($emSize)), rem); +$u18px : functions.replace-unit(math.div(18, functions.strip-unit($emSize)), rem); +$u19px : functions.replace-unit(math.div(19, functions.strip-unit($emSize)), rem); +$u20px : functions.replace-unit(math.div(20, functions.strip-unit($emSize)), rem); +$u21px : functions.replace-unit(math.div(21, functions.strip-unit($emSize)), rem); +$u22px : functions.replace-unit(math.div(22, functions.strip-unit($emSize)), rem); +$u23px : functions.replace-unit(math.div(23, functions.strip-unit($emSize)), rem); +$u24px : functions.replace-unit(math.div(24, functions.strip-unit($emSize)), rem); +$u25px : functions.replace-unit(math.div(25, functions.strip-unit($emSize)), rem); +$u26px : functions.replace-unit(math.div(26, functions.strip-unit($emSize)), rem); +$u27px : functions.replace-unit(math.div(27, functions.strip-unit($emSize)), rem); +$u28px : functions.replace-unit(math.div(28, functions.strip-unit($emSize)), rem); +$u29px : functions.replace-unit(math.div(29, functions.strip-unit($emSize)), rem); +$u30px : functions.replace-unit(math.div(30, functions.strip-unit($emSize)), rem); +$u31px : functions.replace-unit(math.div(31, functions.strip-unit($emSize)), rem); +$u32px : functions.replace-unit(math.div(32, functions.strip-unit($emSize)), rem); +$u33px : functions.replace-unit(math.div(33, functions.strip-unit($emSize)), rem); +$u34px : functions.replace-unit(math.div(34, functions.strip-unit($emSize)), rem); +$u35px : functions.replace-unit(math.div(35, functions.strip-unit($emSize)), rem); +$u36px : functions.replace-unit(math.div(36, functions.strip-unit($emSize)), rem); +$u37px : functions.replace-unit(math.div(37, functions.strip-unit($emSize)), rem); +$u38px : functions.replace-unit(math.div(38, functions.strip-unit($emSize)), rem); +$u39px : functions.replace-unit(math.div(39, functions.strip-unit($emSize)), rem); +$u40px : functions.replace-unit(math.div(40, functions.strip-unit($emSize)), rem); +$u41px : functions.replace-unit(math.div(41, functions.strip-unit($emSize)), rem); +$u42px : functions.replace-unit(math.div(42, functions.strip-unit($emSize)), rem); +$u43px : functions.replace-unit(math.div(43, functions.strip-unit($emSize)), rem); +$u44px : functions.replace-unit(math.div(44, functions.strip-unit($emSize)), rem); +$u45px : functions.replace-unit(math.div(45, functions.strip-unit($emSize)), rem); +$u46px : functions.replace-unit(math.div(46, functions.strip-unit($emSize)), rem); +$u47px : functions.replace-unit(math.div(47, functions.strip-unit($emSize)), rem); +$u48px : functions.replace-unit(math.div(48, functions.strip-unit($emSize)), rem); +$u49px : functions.replace-unit(math.div(49, functions.strip-unit($emSize)), rem); +$u50px : functions.replace-unit(math.div(50, functions.strip-unit($emSize)), rem); +$u51px : functions.replace-unit(math.div(51, functions.strip-unit($emSize)), rem); +$u52px : functions.replace-unit(math.div(52, functions.strip-unit($emSize)), rem); +$u53px : functions.replace-unit(math.div(53, functions.strip-unit($emSize)), rem); +$u54px : functions.replace-unit(math.div(54, functions.strip-unit($emSize)), rem); +$u55px : functions.replace-unit(math.div(55, functions.strip-unit($emSize)), rem); +$u56px : functions.replace-unit(math.div(56, functions.strip-unit($emSize)), rem); +$u57px : functions.replace-unit(math.div(57, functions.strip-unit($emSize)), rem); +$u58px : functions.replace-unit(math.div(58, functions.strip-unit($emSize)), rem); +$u59px : functions.replace-unit(math.div(59, functions.strip-unit($emSize)), rem); +$u60px : functions.replace-unit(math.div(60, functions.strip-unit($emSize)), rem); +$u61px : functions.replace-unit(math.div(61, functions.strip-unit($emSize)), rem); +$u62px : functions.replace-unit(math.div(62, functions.strip-unit($emSize)), rem); +$u63px : functions.replace-unit(math.div(63, functions.strip-unit($emSize)), rem); +$u64px : functions.replace-unit(math.div(64, functions.strip-unit($emSize)), rem); + +$relative1px : functions.replace-unit(math.div(1, functions.strip-unit($emSize)), em); +$relative2px : functions.replace-unit(math.div(2, functions.strip-unit($emSize)), em); +$relative3px : functions.replace-unit(math.div(3, functions.strip-unit($emSize)), em); +$relative4px : functions.replace-unit(math.div(4, functions.strip-unit($emSize)), em); +$relative5px : functions.replace-unit(math.div(5, functions.strip-unit($emSize)), em); +$relative6px : functions.replace-unit(math.div(6, functions.strip-unit($emSize)), em); +$relative7px : functions.replace-unit(math.div(7, functions.strip-unit($emSize)), em); +$relative8px : functions.replace-unit(math.div(8, functions.strip-unit($emSize)), em); +$relative9px : functions.replace-unit(math.div(9, functions.strip-unit($emSize)), em); +$relative10px : functions.replace-unit(math.div(10, functions.strip-unit($emSize)), em); +$relative11px : functions.replace-unit(math.div(11, functions.strip-unit($emSize)), em); +$relative12px : functions.replace-unit(math.div(12, functions.strip-unit($emSize)), em); +$relative13px : functions.replace-unit(math.div(13, functions.strip-unit($emSize)), em); +$relative14px : functions.replace-unit(math.div(14, functions.strip-unit($emSize)), em); +$relative15px : functions.replace-unit(math.div(15, functions.strip-unit($emSize)), em); +$relative16px : functions.replace-unit(math.div(16, functions.strip-unit($emSize)), em); +$relative17px : functions.replace-unit(math.div(17, functions.strip-unit($emSize)), em); +$relative18px : functions.replace-unit(math.div(18, functions.strip-unit($emSize)), em); +$relative19px : functions.replace-unit(math.div(19, functions.strip-unit($emSize)), em); +$relative20px : functions.replace-unit(math.div(20, functions.strip-unit($emSize)), em); +$relative21px : functions.replace-unit(math.div(21, functions.strip-unit($emSize)), em); +$relative22px : functions.replace-unit(math.div(22, functions.strip-unit($emSize)), em); +$relative23px : functions.replace-unit(math.div(23, functions.strip-unit($emSize)), em); +$relative24px : functions.replace-unit(math.div(24, functions.strip-unit($emSize)), em); +$relative25px : functions.replace-unit(math.div(25, functions.strip-unit($emSize)), em); +$relative26px : functions.replace-unit(math.div(26, functions.strip-unit($emSize)), em); +$relative27px : functions.replace-unit(math.div(27, functions.strip-unit($emSize)), em); +$relative28px : functions.replace-unit(math.div(28, functions.strip-unit($emSize)), em); +$relative29px : functions.replace-unit(math.div(29, functions.strip-unit($emSize)), em); +$relative30px : functions.replace-unit(math.div(30, functions.strip-unit($emSize)), em); +$relative31px : functions.replace-unit(math.div(31, functions.strip-unit($emSize)), em); +$relative32px : functions.replace-unit(math.div(32, functions.strip-unit($emSize)), em); +$relative33px : functions.replace-unit(math.div(33, functions.strip-unit($emSize)), em); +$relative34px : functions.replace-unit(math.div(34, functions.strip-unit($emSize)), em); +$relative35px : functions.replace-unit(math.div(35, functions.strip-unit($emSize)), em); +$relative36px : functions.replace-unit(math.div(36, functions.strip-unit($emSize)), em); +$relative37px : functions.replace-unit(math.div(37, functions.strip-unit($emSize)), em); +$relative38px : functions.replace-unit(math.div(38, functions.strip-unit($emSize)), em); +$relative39px : functions.replace-unit(math.div(39, functions.strip-unit($emSize)), em); +$relative40px : functions.replace-unit(math.div(40, functions.strip-unit($emSize)), em); +$relative41px : functions.replace-unit(math.div(41, functions.strip-unit($emSize)), em); +$relative42px : functions.replace-unit(math.div(42, functions.strip-unit($emSize)), em); +$relative43px : functions.replace-unit(math.div(43, functions.strip-unit($emSize)), em); +$relative44px : functions.replace-unit(math.div(44, functions.strip-unit($emSize)), em); +$relative45px : functions.replace-unit(math.div(45, functions.strip-unit($emSize)), em); +$relative46px : functions.replace-unit(math.div(46, functions.strip-unit($emSize)), em); +$relative47px : functions.replace-unit(math.div(47, functions.strip-unit($emSize)), em); +$relative48px : functions.replace-unit(math.div(48, functions.strip-unit($emSize)), em); +$relative49px : functions.replace-unit(math.div(49, functions.strip-unit($emSize)), em); +$relative50px : functions.replace-unit(math.div(50, functions.strip-unit($emSize)), em); +$relative51px : functions.replace-unit(math.div(51, functions.strip-unit($emSize)), em); +$relative52px : functions.replace-unit(math.div(52, functions.strip-unit($emSize)), em); +$relative53px : functions.replace-unit(math.div(53, functions.strip-unit($emSize)), em); +$relative54px : functions.replace-unit(math.div(54, functions.strip-unit($emSize)), em); +$relative55px : functions.replace-unit(math.div(55, functions.strip-unit($emSize)), em); +$relative56px : functions.replace-unit(math.div(56, functions.strip-unit($emSize)), em); +$relative57px : functions.replace-unit(math.div(57, functions.strip-unit($emSize)), em); +$relative58px : functions.replace-unit(math.div(58, functions.strip-unit($emSize)), em); +$relative59px : functions.replace-unit(math.div(59, functions.strip-unit($emSize)), em); +$relative60px : functions.replace-unit(math.div(60, functions.strip-unit($emSize)), em); +$relative61px : functions.replace-unit(math.div(61, functions.strip-unit($emSize)), em); +$relative62px : functions.replace-unit(math.div(62, functions.strip-unit($emSize)), em); +$relative63px : functions.replace-unit(math.div(63, functions.strip-unit($emSize)), em); +$relative64px : functions.replace-unit(math.div(64, functions.strip-unit($emSize)), em); + +/* Columns */ +$oneWide : (math.div(1, $columnCount) * 100%); +$twoWide : (math.div(2, $columnCount) * 100%); +$threeWide : (math.div(3, $columnCount) * 100%); +$fourWide : (math.div(4, $columnCount) * 100%); +$fiveWide : (math.div(5, $columnCount) * 100%); +$sixWide : (math.div(6, $columnCount) * 100%); +$sevenWide : (math.div(7, $columnCount) * 100%); +$eightWide : (math.div(8, $columnCount) * 100%); +$nineWide : (math.div(9, $columnCount) * 100%); +$tenWide : (math.div(10, $columnCount) * 100%); +$elevenWide : (math.div(11, $columnCount) * 100%); +$twelveWide : (math.div(12, $columnCount) * 100%); +$thirteenWide : (math.div(13, $columnCount) * 100%); +$fourteenWide : (math.div(14, $columnCount) * 100%); +$fifteenWide : (math.div(15, $columnCount) * 100%); +$sixteenWide : (math.div(16, $columnCount) * 100%); + +$oneColumn : math.div(1, 1) * 100%; +$twoColumn : math.div(1, 2) * 100%; +$threeColumn : math.div(1, 3) * 100%; +$fourColumn : math.div(1, 4) * 100%; +$fiveColumn : math.div(1, 5) * 100%; +$sixColumn : math.div(1, 6) * 100%; +$sevenColumn : math.div(1, 7) * 100%; +$eightColumn : math.div(1, 8) * 100%; +$nineColumn : math.div(1, 9) * 100%; +$tenColumn : math.div(1, 10) * 100%; +$elevenColumn : math.div(1, 11) * 100%; +$twelveColumn : math.div(1, 12) * 100%; +$thirteenColumn : math.div(1, 13) * 100%; +$fourteenColumn : math.div(1, 14) * 100%; +$fifteenColumn : math.div(1, 15) * 100%; +$sixteenColumn : math.div(1, 16) * 100%; + +/*------------------- + Sizes +--------------------*/ + +/* + Sizes are all expressed in terms of 16px/em (default em) + This ensures these "ratios" remain constant despite changes in EM + $TODO make this based off base unit +*/ + +$miniSize : math.div(11, $baseUnit); +$tinySize : math.div(12, $baseUnit); +$smallSize : math.div(13, $baseUnit); +$mediumSize : math.div(14, $baseUnit); +$largeSize : math.div(16, $baseUnit); +$bigSize : math.div(18, $baseUnit); +$hugeSize : math.div(20, $baseUnit); +$massiveSize : math.div(24, $baseUnit); + +$A1: 564px; +$A1Small: 345px; +$A1SmallHeight: 194px; +$A1Height: 317px; +$A2: 268px; +$A2Small: $A1Small; +$A2SmallHeight: 194px; +$A2Height: 151px; +$A3: 194px; +$A3Small: 148px; +$A3SmallHeight: 84px; +$A3Height: 110px; +$A4: 268px; +$A4Small: $A1Small; +$A4SmallHeight: 194px; +$A4Height: 151px; +$XL: 720px; +$XLHeight: 405px; + +/*------------------- + Em Sizes +--------------------*/ + +/* + This rounds $size values to the closest pixel then expresses that value in (r)em. + This ensures all size values round to exact pixels +*/ +$mini : functions.replace-unit(math.div(round(functions.strip-unit($miniSize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); +$tiny : functions.replace-unit(math.div(round(functions.strip-unit($tinySize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); +$small : functions.replace-unit(math.div(round(functions.strip-unit($smallSize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); +$medium : functions.replace-unit(math.div(round(functions.strip-unit($mediumSize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); +$large : functions.replace-unit(math.div(round(functions.strip-unit($largeSize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); +$big : functions.replace-unit(math.div(round(functions.strip-unit($bigSize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); +$huge : functions.replace-unit(math.div(round(functions.strip-unit($hugeSize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); +$massive : functions.replace-unit(math.div(round(functions.strip-unit($massiveSize) * functions.strip-unit($emSize)), functions.strip-unit($emSize)), rem); + +// /* Relative units will get smaller as they are progressively nested */ +// /* em */ +$relativeMini : functions.replace-unit(math.div(round($miniSize * $emSize), $emSize), em); +$relativeTiny : functions.replace-unit(math.div(round($tinySize * $emSize), $emSize), em); +$relativeSmall : functions.replace-unit(math.div(round($smallSize * $emSize), $emSize), em); +$relativeMedium : functions.replace-unit(math.div(round($mediumSize * $emSize), $emSize), em); +$relativeLarge : functions.replace-unit(math.div(round($largeSize * $emSize), $emSize), em); +$relativeBig : functions.replace-unit(math.div(round($bigSize * $emSize), $emSize), em); +$relativeHuge : functions.replace-unit(math.div(round($hugeSize * $emSize), $emSize), em); +$relativeMassive : functions.replace-unit(math.div(round($massiveSize * $emSize), $emSize), em); + +// /* Absolute units are the same size regardless of nesting */ +// /* rem */ +$absoluteMini : functions.replace-unit(math.div(round($miniSize * $emSize), $emSize), rem); +$absoluteTiny : functions.replace-unit(math.div(round($tinySize * $emSize), $emSize), rem); +$absoluteSmall : functions.replace-unit(math.div(round($smallSize * $emSize), $emSize), rem); +$absoluteMedium : functions.replace-unit(math.div(round($mediumSize * $emSize), $emSize), rem); +$absoluteLarge : functions.replace-unit(math.div(round($largeSize * $emSize), $emSize), rem); +$absoluteBig : functions.replace-unit(math.div(round($bigSize * $emSize), $emSize), rem); +$absoluteHuge : functions.replace-unit(math.div(round($hugeSize * $emSize), $emSize), rem); +$absoluteMassive : functions.replace-unit(math.div(round($massiveSize * $emSize), $emSize), rem); + + +/*------------------- + Border Radius +--------------------*/ + +/* See Power-user section below + for explanation of $px variables +*/ + +$relativeBorderRadius: $relative4px; +$absoluteBorderRadius: $u4px; + +$defaultBorderRadius: $absoluteBorderRadius; + +/*------------------- + Brand Colors +--------------------*/ + + + +/*-------------- + Page Heading +---------------*/ + +$headerFontWeight : $bold; +$headerLineHeight : functions.replace-unit(math.div(18, 14), em); + +$h1 : 37px; //unit((28 / $baseUnit), rem); +$h2 : 21px; //unit((24 / $baseUnit), rem); +$h3 : 18px; //unit((18 / $baseUnit), rem); +$h4 : 14px; //unit((15 / $baseUnit), rem); +$h5 : 12px; //unit((14 / $baseUnit), rem); + +/*-------------- + Form Input +---------------*/ + +/* This adjusts the default form input across all elements */ +$inputVerticalPadding : $relative11px; +$inputHorizontalPadding : $relative14px; +$inputPadding : $inputVerticalPadding $inputHorizontalPadding; + +/* Line Height Default For Inputs in Browser (Descenders are 17px at 14px base em) */ +$inputLineHeight: functions.replace-unit(math.div(17, 16), em); + + +/*------------------- + Page +--------------------*/ +$pageOverflowX : hidden; +$lineHeight : 1.4285em; + +/*------------------- + Paragraph +--------------------*/ + +$paragraphMargin: 0 0 1.25em; +$postParagraphMargin: 1.25em; // $TODO probably get rid of this +$paragraphLineHeight: 160%; //$lineHeight; + +/*------------------- + Links +--------------------*/ + +$linkUnderline : underline; +$linkHoverUnderline : underline; + +/*------------------- + Scroll Bars +--------------------*/ + +$useCustomScrollbars: true; +$customScrollbarWidth: 10px; +$customScrollbarHeight: 10px; +$trackBorderRadius: 0px; +$thumbBorderRadius: 5px; +$thumbTransition: color 0.2s ease; + + +/*------------------- + Loader +--------------------*/ + +$loaderSize : $relativeBig; +$loaderSpeed : 0.6s; +$loaderLineWidth : 0.2em; + + +/*------------------- + Transitions +--------------------*/ + +$defaultDuration : 0.1s; +$defaultEasing : ease; + +/*------------------- + Breakpoints +--------------------*/ + +$mobileBreakpoint : 320px; +$iPhoneBreakpoint : 390px; +$smallTabletBreakpoint : 666px; +$tabletBreakpoint : 768px; +$computerBreakpoint : 992px; +$largeMonitorBreakpoint : 1200px; +$widescreenMonitorBreakpoint : 1920px; + +/*------------------- + Accents +--------------------*/ + +/* Differentiating Neutrals */ +$subtleGradient: linear-gradient(transparent, colors.$transparentBlack); + +/* Differentiating Layers */ +$subtleShadow: 0px 1px 2px 0 colors.$borderColor; +$floatingShadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), +0px 2px 10px 0px rgba(34, 36, 38, 0.15); + +/******************************* + Power-User +*******************************/ + + +/*------------------- + Paths +--------------------*/ + +/* For source only. Modified in build for dist */ +// Old, need to be moved into webfont and changed to iconsPath +$iconPath : '/src/images/icons'; +// $iconsPath is the new icon location +$iconsPath : '/src/icons'; +$flagPath : '/src/images/flags'; +$imagePath : '/src/images/flags'; +$fontPath : '/src/fonts'; + + +/*------------------- + Icons +--------------------*/ + +/* Maximum Glyph Width of Icon */ +$iconWidth : 1.18em; + + + +/*------------------- + Borders +--------------------*/ + +$circularRadius : 500rem; + +/*------------------- + Derived Values +--------------------*/ + +/* Loaders Position Offset */ +$loaderOffset : -(math.div($loaderSize, 2)); +$loaderMargin : $loaderOffset 0em 0em $loaderOffset; + +/* Rendered Scrollbar Width */ +$scrollbarWidth: 17px; + +/* Maximum Single Character Glyph Width, aka Capital "W" */ +$glyphWidth: 1.1em; + +/* Used to match floats with text */ +$lineHeightOffset : math.div(($lineHeight - 1em), 2); +$headerLineHeightOffset : math.div(($headerLineHeight - 1em), 2); + +/* Header Spacing */ + +$headerTopMargin : 2rem - functions.strip-unit($headerLineHeightOffset); +$headerBottomMargin : 1rem; +$headerMargin : $headerTopMargin 0em $headerBottomMargin; + +/* Minimum Mobile Width */ +$pageMinWidth : 320px; + + +/* Responsive */ +$mediumMobileScreen : $iPhoneBreakpoint; +$largestMobileScreen : ($tabletBreakpoint - 1px); +$largestTabletScreen : ($computerBreakpoint - 1px); +$largestSmallMonitor : ($largeMonitorBreakpoint - 1px); +$largestLargeMonitor : ($widescreenMonitorBreakpoint - 1px); + + +/******************************* + States +*******************************/ + +/*------------------- + Disabled +--------------------*/ + +$disabledOpacity: 0.45; +$disabledTextColor: rgba(40, 40, 40, 0.3); +$invertedDisabledTextColor: rgba(225, 225, 225, 0.3); + +/*------------------- + Hover +--------------------*/ + +/*--- Shadows ---*/ +$floatingShadowHover: 0px 2px 4px 0px rgba(34, 36, 38, 0.15), +0px 2px 10px 0px rgba(34, 36, 38, 0.25); diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/menu.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/menu.scss new file mode 100644 index 00000000..98bff918 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/menu.scss @@ -0,0 +1,2593 @@ +/* + * # Semantic - Menu + * http://github.com/semantic-org/semantic-ui/ + * + * + * Copyright 2015 Contributor + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "functions" as functions; +@use "colors"; +@use 'sass:math'; + + +/******************************* + Menu + *******************************/ +// wp-block-navigation is-style-secondary-pointing +/*------------------- + Collection + --------------------*/ + +/* Menu */ +$verticalMargin: variables.$medium; +$horizontalMargin: 0em; +$margin: $verticalMargin $horizontalMargin; +$background: #FFFFFF; +$fontFamily: variables.$sansSerifFont; // Edited by Seth +$itemBackground: none; +$fontWeight: variables.$normal; +$borderWidth: 1px; +$border: $borderWidth solid colors.$borderColor; +$boxShadow: variables.$subtleShadow; +$borderRadius: 0; // Originally variables.$defaultBorderRadius; by seth + + +/* Menu Item */ +$itemVerticalPadding: variables.$relativeSmall; +$itemHorizontalPadding: variables.$relativeLarge; +$itemTextTransform: capitalize; +$itemTransition: background variables.$defaultDuration variables.$defaultEasing, +box-shadow variables.$defaultDuration variables.$defaultEasing, +color variables.$defaultDuration variables.$defaultEasing; +$itemFontWeight: variables.$normal; +$itemTextColor: colors.$textColor; +$itemLinkUnderline: none; +$itemLinkHoverUnderline: underline; + +$minHeight: ($itemVerticalPadding * 2)+1em; + +/* Divider */ +$dividerSize: 1px; +$dividerBackground: colors.$internalBorderColor; + +/* Sub Menu */ +$subMenuDistance: 0.5em; +$subMenuMargin: $subMenuDistance -$itemHorizontalPadding 0em; +$subMenuFontSize: variables.$relativeTiny; +$subMenuTextColor: rgba(0, 0, 0, 0.5); + +$subMenuIndent: 0em; +$subMenuHorizontalPadding: math.div($itemHorizontalPadding, variables.$tinySize)+$subMenuIndent; +$subMenuVerticalPadding: 0.5em; + +/* Text Item */ +$textLineHeight: 1.3; + +/*-------------- + Elements + ---------------*/ + +/* Icon */ +$iconFloat: none; +$iconMargin: 0em variables.$relative5px 0em 0em; +$iconOpacity: 0.9; + +/* Dropdown Icon */ +$dropdownIconFloat: right; +$dropdownIconDistance: 1em; + +/* Header */ +$headerBackground: ''; +$headerWeight: variables.$bold; +$headerTextTransform: variables.$normal; + +/* Vertical Icon */ +$verticalIconFloat: right; +$verticalIconMargin: 0em 0em 0em 0.5em; + +/* Vertical Header */ +$verticalHeaderMargin: 0em 0em 0.5em; +$verticalHeaderFontSize: variables.$relativeMedium; +$verticalHeaderFontWeight: variables.$bold; + +/* Pointing Arrow */ +$arrowSize: variables.$relative8px; +$arrowBorderWidth: 1px; +$arrowBorder: $arrowBorderWidth solid colors.$solidBorderColor; +$arrowTransition: background variables.$defaultDuration variables.$defaultEasing; +$arrowZIndex: 2; + +$arrowHoverColor: #F2F2F2; +$arrowActiveColor: $arrowHoverColor; +$arrowActiveHoverColor: $arrowActiveColor; + +$arrowVerticalHoverColor: $arrowHoverColor; +$arrowVerticalActiveColor: $arrowActiveColor; +$arrowVerticalSubMenuColor: colors.$white; + +/*-------------- + Couplings + ---------------*/ + +/* Button */ +$buttonSize: variables.$relativeMedium; +$buttonOffset: 0em; +$buttonMargin: -0.5em 0em; +$buttonVerticalPadding: variables.$relativeMini; + +/* Input */ +$inputSize: variables.$relativeMedium; +$inputVerticalMargin: -0.5em; +$inputOffset: 0em; +$inputVerticalPadding: variables.$relative8px; + +/* Image */ +$imageMargin: -0.3em 0em; +$imageWidth: 2.5em; +$verticalImageWidth: auto; + +/* Label */ +$labelOffset: -0.15em; +$labelBackground: #999999; +$labelTextColor: colors.$white; + +$labelTextMargin: 1em; +$labelVerticalPadding: 0.3em; +$labelHorizontalPadding: variables.$relativeMini; + +$labelAndIconFloat: none; +$labelAndIconMargin: 0em 0.5em 0em 0em; + +/* Dropdown in Menu */ +$dropdownMenuBoxShadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); + +$dropdownBackground: #FFFFFF; +$dropdownMenuDistance: 0em; +$dropdownMenuBorderRadius: $borderRadius; + +$dropdownItemFontSize: 1em; +$dropdownItemPadding: variables.$relativeMini variables.$relativeLarge; +$dropdownItemBackground: transparent; +$dropdownItemColor: colors.$textColor; +$dropdownItemTextTransform: none; +$dropdownItemFontWeight: variables.$normal; +$dropdownItemBoxShadow: none; +$dropdownItemTransition: none; + +$dropdownItemIconFloat: none; +$dropdownItemIconFontSize: variables.$relativeMedium; +$dropdownItemIconMargin: 0em 0.75em 0em 0em; + +$dropdownHoveredItemBackground: colors.$transparentBlack; +$dropdownHoveredItemColor: colors.$selectedTextColor; + +/* Dropdown Variations */ +$dropdownVerticalMenuBoxShadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); +$secondaryDropdownMenuDistance: variables.$relative5px; +$pointingDropdownMenuDistance: 0.75em; +$invertedSelectionDropdownColor: colors.$invertedTextColor; + +/*-------------- + States + ---------------*/ + +/* Hovered Item */ +$hoverItemBackground: colors.$subtleTransparentBlack; +$hoverItemTextColor: colors.$selectedTextColor; + +/* Pressed Item */ +$pressedItemBackground: colors.$subtleTransparentBlack; +$pressedItemTextColor: $hoverItemTextColor; + + +/* Active Item */ +$activeItemBackground: colors.$transparentBlack; +$activeItemTextColor: colors.$selectedTextColor; +$activeItemFontWeight: variables.$normal; +$activeIconOpacity: 1; +$activeItemBoxShadow: none; + +/* Active Hovered Item */ +$activeHoverItemBackground: colors.$transparentBlack; +$activeHoverItemColor: colors.$selectedTextColor; + +/* Selected Dropdown */ +$dropdownSelectedItemBackground: colors.$transparentBlack; +$dropdownSelectedItemColor: colors.$selectedTextColor; + +/* Active Dropdown */ +$dropdownActiveItemBackground: colors.$subtleTransparentBlack; +$dropdownActiveItemColor: colors.$selectedTextColor; +$dropdownActiveItemFontWeight: variables.$bold; + +/* Active Sub Menu */ +$subMenuActiveBackground: transparent; +$subMenuActiveTextColor: $activeItemTextColor; +$subMenuActiveFontWeight: variables.$bold; + + +/*-------------- + Types + ---------------*/ + +/* Vertical */ +$verticalBoxShadow: $boxShadow; +$verticalPointerWidth: 2px; +$verticalBackground: #FFFFFF; +$verticalItemBackground: none; +$verticalDividerBackground: $dividerBackground; + +$verticalActiveBoxShadow: none; + + +/* Secondary */ +$secondaryItemSpacing: variables.$relative5px; +$secondaryBackground: none; +$secondaryMargin: 0em -$secondaryItemSpacing; +$secondaryItemBackground: none; +$secondaryItemMargin: 0em $secondaryItemSpacing; +$secondaryItemVerticalPadding: variables.$relativeMini; +$secondaryItemHorizontalPadding: variables.$relativeSmall; +$secondaryItemPadding: variables.$relativeMini variables.$relativeSmall; +$secondaryItemBorderRadius: variables.$defaultBorderRadius; +$secondaryItemTransition: color variables.$defaultDuration variables.$defaultEasing; +$secondaryItemColor: colors.$unselectedTextColor; + +$secondaryHoverItemBackground: colors.$transparentBlack; +$secondaryHoverItemColor: colors.$selectedTextColor; + +$secondaryActiveItemBackground: colors.$transparentBlack; +$secondaryActiveItemColor: colors.$selectedTextColor; +$secondaryActiveHoverItemBackground: colors.$transparentBlack; +$secondaryActiveHoverItemColor: colors.$selectedTextColor; + +$secondaryActiveHoveredItemBackground: colors.$transparentBlack; +$secondaryActiveHoveredItemColor: colors.$selectedTextColor; + +$secondaryHeaderBackground: none transparent; +$secondaryHeaderBorder: none; + +$secondaryItemVerticalSpacing: $secondaryItemSpacing; +$secondaryVerticalItemMargin: 0em 0em $secondaryItemVerticalSpacing; +$secondaryVerticalItemBorderRadius: variables.$defaultBorderRadius; + +$secondaryMenuSubMenuMargin: 0em -$secondaryItemHorizontalPadding; +$secondaryMenuSubMenuItemMargin: 0em; +$secondarySubMenuHorizontalPadding: math.div($itemHorizontalPadding, variables.$tinySize)+$subMenuIndent; +$secondaryMenuSubMenuItemPadding: variables.$relative7px $secondarySubMenuHorizontalPadding; + +/* Pointing */ +$secondaryPointingBorderWidth: 2px; +$secondaryPointingBorderColor: colors.$borderColor; +$secondaryPointingItemVerticalPadding: variables.$relativeTiny; +$secondaryPointingItemHorizontalPadding: variables.$relativeLarge; + +$secondaryPointingHoverTextColor: colors.$textColor; + +$secondaryPointingActiveBorderColor: colors.$black; +$secondaryPointingActiveTextColor: colors.$selectedTextColor; +$secondaryPointingActiveFontWeight: variables.$bold; + +$secondaryPointingActiveDropdownBorderColor: transparent; + +$secondaryPointingActiveHoverBorderColor: $secondaryPointingActiveBorderColor; +$secondaryPointingActiveHoverTextColor: $secondaryPointingActiveTextColor; + +$secondaryPointingHeaderColor: colors.$darkTextColor; +$secondaryVerticalPointingItemMargin: 0em (-$secondaryPointingBorderWidth) 0em 0em; + + +/* Inverted Secondary */ +$secondaryInvertedColor: colors.$invertedLightTextColor; + +$secondaryInvertedHoverBackground: colors.$transparentWhite; +$secondaryInvertedHoverColor: colors.$invertedSelectedTextColor; + +$secondaryInvertedActiveBackground: colors.$strongTransparentWhite; +$secondaryInvertedActiveColor: colors.$invertedSelectedTextColor; + +/* Inverted Pointing */ +$secondaryPointingInvertedBorderColor: colors.$whiteBorderColor; +$secondaryPointingInvertedItemTextColor: colors.$invertedTextColor; +$secondaryPointingInvertedItemHeaderColor: colors.$white; +$secondaryPointingInvertedItemHoverTextColor: colors.$selectedTextColor; +$secondaryPointingInvertedActiveBorderColor: colors.$white; +$secondaryPointingInvertedActiveColor: colors.$invertedSelectedTextColor; + + +/* Tiered */ +$tieredActiveItemBackground: #FCFCFC; +$tieredActiveMenuBackground: #FCFCFC; + +$tieredSubMenuTextTransform: variables.$normal; +$tieredSubMenuFontWeight: variables.$normal; + +$tieredSubMenuColor: colors.$lightTextColor; + +$tieredSubMenuHoverBackground: none transparent; +$tieredSubMenuHoverColor: colors.$hoveredTextColor; + +$tieredSubMenuActiveBackground: none transparent; +$tieredSubMenuActiveColor: colors.$selectedTextColor; + +$tieredInvertedSubMenuBackground: rgba(0, 0, 0, 0.2); + + +/* Icon */ +$iconMenuTextAlign: center; +$iconMenuItemColor: colors.$black; +$iconMenuInvertedItemColor: colors.$white; + + +/* Tabular */ +$tabularBorderColor: colors.$solidBorderColor; +$tabularBackgroundColor: transparent; +$tabularBackground: none $tabularBackgroundColor; +$tabularBorderWidth: 1px; +$tabularOppositeBorderWidth: $tabularBorderWidth+1px; +$tabularVerticalPadding: $itemVerticalPadding; +$tabularHorizontalPadding: variables.$relativeHuge; +$tabularBorderRadius: 0; // Origginally variables.$defaultBorderRadius; by seth +$tabularTextColor: $itemTextColor; +$tabularTextTransform: uppercase; + +$tabularHoveredTextColor: colors.$hoveredTextColor; + +$tabularVerticalBackground: none $tabularBackgroundColor; + +$tabularFluidOffset: 1px; +$tabularFluidWidth: calc(100% + #{($tabularFluidOffset * 2)}); + +$tabularActiveBackground: none colors.$white; +$tabularActiveColor: colors.$selectedTextColor; +$tabularActiveBoxShadow: none; +$tabularActiveWeight: variables.$bold; + + + +/* Pagination */ +$paginationMinWidth: 1rem; +$paginationActiveBackground: colors.$white; // originally by colors.$transparentBlack; +$paginationActiveTextColor: colors.$linkColor; // originally by colors.$selectedTextColor; + +/* Labeled Icon */ +$labeledIconItemHorizontalPadding: variables.$relativeMassive; +$labeledIconSize: variables.$relativeMassive; +$labeledIconMinWidth: 6em; +$labeledIconTextMargin: 0.5rem; + + +/* Text */ +$textMenuItemSpacing: variables.$relative7px; +$textMenuMargin: variables.$relativeMedium -($textMenuItemSpacing); +$textMenuItemColor: colors.$mutedTextColor; +$textMenuItemFontWeight: variables.$normal; +$textMenuItemMargin: 0em 0em; +$textMenuItemPadding: variables.$relative5px $textMenuItemSpacing; +$textMenuItemTransition: opacity variables.$defaultDuration variables.$defaultEasing; + +$textMenuSubMenuMargin: 0em; +$textMenuSubMenuItemMargin: 0em; +$textMenuSubMenuItemPadding: variables.$relative7px 0em; + +$textMenuActiveItemFontWeight: variables.$normal; +$textMenuActiveItemColor: colors.$selectedTextColor; + +$textMenuHeaderSize: variables.$relativeSmall; +$textMenuHeaderColor: colors.$darkTextColor; +$textMenuHeaderFontWeight: variables.$bold; +$textMenuHeaderTextTransform: uppercase; + +$textVerticalMenuMargin: variables.$relativeMedium 0em; +$textVerticalMenuHeaderMargin: variables.$relative8px 0em variables.$relative10px; +$textVerticalMenuItemMargin: variables.$relative8px 0em; + +$textVerticalMenuIconFloat: none; +$textVerticalMenuIconMargin: $iconMargin; + + +/*-------------- + Variations + ---------------*/ + +/* Inverted */ +$invertedBackground: colors.$black; +$invertedBoxShadow: none; +$invertedBorder: 0px solid transparent; +$invertedHeaderBackground: transparent; + +$invertedItemBackground: transparent; +$invertedItemTextColor: colors.$invertedTextColor; + +/* Inverted Sub Menu */ +$invertedSubMenuBackground: transparent; +$invertedSubMenuColor: colors.$invertedUnselectedTextColor; + +/* Inverted Hover */ +$invertedHoverBackground: colors.$transparentWhite; +$invertedHoverColor: colors.$invertedSelectedTextColor; + +$invertedSubMenuHoverBackground: transparent; +$invertedSubMenuHoverColor: colors.$invertedSelectedTextColor; + +/* Pressed */ +$invertedMenuPressedBackground: colors.$transparentWhite; +$invertedMenuPressedColor: colors.$invertedSelectedTextColor; + +/* Inverted Active */ +$invertedActiveBackground: colors.$strongTransparentWhite; +$invertedActiveColor: colors.$invertedSelectedTextColor; +$invertedArrowActiveColor: #3D3E3F; + +/* Inverted Active Hover */ +$invertedActiveHoverBackground: $invertedActiveBackground; +$invertedActiveHoverColor: colors.$white; +$invertedArrowActiveHoverColor: $invertedArrowActiveColor; + +$invertedSubMenuActiveBackground: transparent; +$invertedSubMenuActiveColor: colors.$white; + +/* Inverted Menu Divider */ +$invertedDividerBackground: rgba(255, 255, 255, 0.08); +$invertedVerticalDividerBackground: $invertedDividerBackground; + +/* Inverted Colored */ +$invertedColoredDividerBackground: $dividerBackground; +$invertedColoredActiveBackground: colors.$strongTransparentBlack; + +/* Relaxed */ +$relaxedMargin: 24px; + +/* Fixed */ +$fixedPrecedingGridMargin: 2.75rem; + +/* Floated */ +$floatedDistance: 0.5rem; + +/* Attached */ +$attachedTopOffset: 0px; +$attachedBottomOffset: 0px; +$attachedHorizontalOffset: -$borderWidth; +$attachedWidth: calc(100% - #{($attachedHorizontalOffset * 2)}); +$attachedBoxShadow: none; +$attachedBorder: $borderWidth solid colors.$solidBorderColor; +$attachedBottomBoxShadow: $boxShadow, +$attachedBoxShadow; + +/* Resize large sizes */ +$mini: variables.$u11px; +$tiny: variables.$u12px; +$small: variables.$u13px; +$large: variables.$u15px; +$big: variables.$u16px; +$huge: variables.$u17px; +$massive: variables.$u18px; + +/* Sizes */ +$miniWidth: 9rem; +$tinyWidth: 11rem; +$smallWidth: 13rem; +$mediumWidth: 15rem; +$largeWidth: 18rem; +$bigWidth: 20rem; +$hugeWidth: 22rem; +$massiveWidth: 25rem; + + +/******************************* + Standard + *******************************/ + +/*------------------ + Menu Base Style + ------------------*/ + +.ui.menu { + display: flex; + margin: $margin; + font-family: $fontFamily; + background: $background; + font-weight: $fontWeight; + border: $border; + box-shadow: $boxShadow; + border-radius: $borderRadius; + min-height: $minHeight; + + &:after { + content: ""; + display: block; + height: 0px; + clear: both; + visibility: hidden; + } + + &:first-child { + margin-top: 0rem; + } + + &:last-child { + margin-bottom: 0rem; + } + + /*-------------- + Sub-Menu + ---------------*/ + + .menu { + margin: 0em; + } + + &:not(.vertical)>.menu { + display: flex; + } + + /*-------------- + Item + ---------------*/ + + &:not(.vertical) .item, + &:not(.vertical) .block-list-appender.wp-block { + display: flex; + align-items: center; + } + + .item { + text-transform: $itemTextTransform; + } + + .block-list-appender.wp-block, + .item, + .wp-block-navigation-link { + position: relative; + vertical-align: middle; + line-height: 1; + text-decoration: none; + -webkit-tap-highlight-color: transparent; + flex: 0 0 auto; + user-select: none; + + background: $itemBackground; + padding: $itemVerticalPadding $itemHorizontalPadding; + color: $itemTextColor; + font-weight: $itemFontWeight; + transition: $itemTransition; + + /* Border */ + &:before { + position: absolute; + content: ""; + top: 0%; + right: 0px; + height: 100%; + + width: $dividerSize; + background: $dividerBackground; + } + } + + .wp-block-navigation-link { + a { + color: black; + text-decoration: none; + + &:visited { + color: black; + } + } + } + + &>.item:first-child, + &>.wp-block-navigation__container>.wp-block-navigation-link:first-child { + border-radius: $borderRadius 0px 0px $borderRadius; + } +} + +/*-------------- + Item + ---------------*/ + + +/*-------------- + Text Content + ---------------*/ + +.ui.menu .text.item>*, +.ui.menu .item>a:not(.ui), +.ui.menu .item>p:only-child { + user-select: text; + line-height: $textLineHeight; +} + +.ui.menu .item>p:first-child { + margin-top: 0; +} + +.ui.menu .item>p:last-child { + margin-bottom: 0; +} + +/*-------------- + Icons + ---------------*/ + +.ui.menu .item>i.icon { + opacity: $iconOpacity; + float: $iconFloat; + margin: $iconMargin; +} + +/*-------------- + Button + ---------------*/ + +.ui.menu:not(.vertical) .item>.button { + position: relative; + top: $buttonOffset; + margin: $buttonMargin; + padding-bottom: $buttonVerticalPadding; + padding-top: $buttonVerticalPadding; + font-size: $buttonSize; +} + +/*---------------- + Grid / Container + -----------------*/ + +.ui.menu>.grid, +.ui.menu>.container { + display: flex; + align-items: inherit; + flex-direction: inherit; +} + +/*-------------- + Inputs + ---------------*/ + +.ui.menu .item>.input { + width: 100%; +} + +.ui.menu:not(.vertical) .item>.input { + position: relative; + top: $inputOffset; + margin: $inputVerticalMargin 0em; +} + +.ui.menu .item>.input input { + font-size: $inputSize; + padding-top: $inputVerticalPadding; + padding-bottom: $inputVerticalPadding; +} + +/*-------------- + Header + ---------------*/ + +.ui.menu .header.item, +.ui.vertical.menu .header.item { + margin: 0em; + background: $headerBackground; + text-transform: $headerTextTransform; + font-weight: $headerWeight; +} + +.ui.vertical.menu .item>.header:not(.ui) { + margin: $verticalHeaderMargin; + font-size: $verticalHeaderFontSize; + font-weight: $verticalHeaderFontWeight; +} + +/*-------------- + Dropdowns + ---------------*/ + +/* Dropdown Icon */ +.ui.menu .item>i.dropdown.icon { + padding: 0em; + float: $dropdownIconFloat; + margin: 0em 0em 0em $dropdownIconDistance; +} + +/* Menu */ +.ui.menu .dropdown.item .menu { + min-width: calc(100% - 1px); + border-radius: 0em 0em $dropdownMenuBorderRadius $dropdownMenuBorderRadius; + background: $dropdownBackground; + margin: $dropdownMenuDistance 0px 0px; + box-shadow: $dropdownMenuBoxShadow; + flex-direction: column !important; +} + +/* Menu Items */ +.ui.menu .ui.dropdown .menu>.item { + margin: 0; + text-align: left; + font-size: $dropdownItemFontSize !important; + padding: $dropdownItemPadding !important; + background: $dropdownItemBackground !important; + color: $dropdownItemColor !important; + text-transform: $dropdownItemTextTransform !important; + font-weight: $dropdownItemFontWeight !important; + box-shadow: $dropdownItemBoxShadow !important; + transition: $dropdownItemTransition !important; +} + +.ui.menu .ui.dropdown .menu>.item:hover { + background: $dropdownHoveredItemBackground !important; + color: $dropdownHoveredItemColor !important; +} + +.ui.menu .ui.dropdown .menu>.selected.item { + background: $dropdownSelectedItemBackground !important; + color: $dropdownSelectedItemColor !important; +} + +.ui.menu .ui.dropdown .menu>.active.item { + background: $dropdownActiveItemBackground !important; + font-weight: $dropdownActiveItemFontWeight !important; + color: $dropdownActiveItemColor !important; +} + +.ui.menu .ui.dropdown.item .menu .item:not(.filtered) { + display: block; +} + +.ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown) { + display: inline-block; + font-size: $dropdownItemIconFontSize !important; + float: $dropdownItemIconFloat; + margin: $dropdownItemIconMargin !important; +} + +/* Secondary */ +.ui.secondary.menu .dropdown.item>.menu, +.ui.text.menu .dropdown.item>.menu { + border-radius: $dropdownMenuBorderRadius; + margin-top: $secondaryDropdownMenuDistance; +} + +/* Pointing */ +.ui.menu .pointing.dropdown.item .menu { + margin-top: $pointingDropdownMenuDistance; +} + +/* Inverted */ +.ui.inverted.menu .search.dropdown.item>.search, +.ui.inverted.menu .search.dropdown.item>.text { + color: $invertedSelectionDropdownColor; +} + +/* Vertical */ +.ui.vertical.menu .dropdown.item>.icon { + float: right; + content: "\f0da"; + margin-left: 1em; +} + +.ui.vertical.menu .dropdown.item .menu { + left: 100%; + min-width: 0; + margin: 0em 0em 0em $dropdownMenuDistance; + box-shadow: $dropdownVerticalMenuBoxShadow; + border-radius: 0em $dropdownMenuBorderRadius $dropdownMenuBorderRadius $dropdownMenuBorderRadius; +} + +.ui.vertical.menu .dropdown.item.upward .menu { + bottom: 0; +} + +.ui.vertical.menu .dropdown.item:not(.upward) .menu { + top: 0; +} + +.ui.vertical.menu .active.dropdown.item { + border-top-right-radius: 0em; + border-bottom-right-radius: 0em; +} + +.ui.vertical.menu .dropdown.active.item { + box-shadow: none; +} + +/* Evenly Divided */ +.ui.item.menu .dropdown .menu .item { + width: 100%; +} + +/*-------------- + Labels + ---------------*/ + +.ui.menu .item>.label { + background: $labelBackground; + color: $labelTextColor; + margin-left: $labelTextMargin; + padding: $labelVerticalPadding $labelHorizontalPadding; +} + +.ui.vertical.menu .item>.label { + background: $labelBackground; + color: $labelTextColor; + margin-top: $labelOffset; + margin-bottom: $labelOffset; + padding: $labelVerticalPadding $labelHorizontalPadding; +} + +.ui.menu .item>.floating.label { + padding: $labelVerticalPadding $labelHorizontalPadding; +} + +/*-------------- + Images + ---------------*/ + +.ui.menu .item>img:not(.ui) { + display: inline-block; + vertical-align: middle; + margin: $imageMargin; + width: $imageWidth; +} + +.ui.vertical.menu .item>img:not(.ui):only-child { + display: block; + max-width: 100%; + width: $verticalImageWidth; +} + +/******************************* + Coupling + *******************************/ + +/*-------------- + List + ---------------*/ + +/* Menu divider shouldnt apply */ +.ui.menu .list .item:before { + background: none !important; +} + +/*-------------- + Sidebar + ---------------*/ + +/* Show vertical dividers below last */ + +.ui.vertical.sidebar.menu>.item:first-child:before { + display: block !important; +} + +.ui.vertical.sidebar.menu>.item::before { + top: auto; + bottom: 0px; +} + +/*-------------- + Container + ---------------*/ + +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.menu>.ui.container { + width: 100% !important; + margin-left: 0em !important; + margin-right: 0em !important; + } +} + +@media only screen and (min-width: variables.$tabletBreakpoint) { + .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless)>.container>.item:not(.right):not(.borderless):first-child { + border-left: $dividerSize solid $dividerBackground; + } +} + +/******************************* + States + *******************************/ + +/*-------------- + Hover + ---------------*/ + +.ui.link.menu .item:hover, +.ui.menu .dropdown.item:hover, +.ui.menu .link.item:hover, +.ui.menu a.item:hover { + cursor: pointer; + background: $hoverItemBackground; + color: $hoverItemTextColor; +} + +/*-------------- + Pressed + ---------------*/ + +.ui.link.menu .item:active, +.ui.menu .link.item:active, +.ui.menu a.item:active { + background: $pressedItemBackground; + color: $pressedItemTextColor; +} + +/*-------------- + Active + ---------------*/ + +.ui.menu .active.item, +.wp-block-navigation .wp-block-navigation-link.current-menu-item { + background: $activeItemBackground; + color: $activeItemTextColor; + font-weight: $activeItemFontWeight; + box-shadow: $activeItemBoxShadow; +} + +.ui.menu .active.item>i.icon, +.wp-block-navigation .wp-block-navigation-link.current-menu-item>i.icon { + opacity: $activeIconOpacity; +} + +/*-------------- + Active Hover + ---------------*/ + +.ui.menu .active.item:hover, +.ui.vertical.menu .active.item:hover, +.wp-block-navigation .wp-block-navigation-link.current-menu-item:hover { + background-color: $activeHoverItemBackground; + color: $activeHoverItemColor; +} + +/*-------------- + Disabled + ---------------*/ + +.ui.menu .item.disabled, +.ui.menu .item.disabled:hover { + cursor: default !important; + background-color: transparent !important; + color: colors.$disabledTextColor !important; +} + +/******************************* + Types + *******************************/ + +/*------------------ + Floated Menu / Item + -------------------*/ + +/* Relaxed */ +.ui.relaxed.menu { + margin-top: $relaxedMargin; + margin-bottom: $relaxedMargin; +} + +/* Left Floated */ +.ui.menu:not(.vertical) .left.item, +.ui.menu:not(.vertical) :not(.dropdown)>.left.menu { + display: flex; + margin-right: auto !important; +} + +/* Right Floated */ +.ui.menu:not(.vertical) .right.item, +.ui.menu:not(.vertical) .right.menu { + display: flex; + margin-left: auto !important; +} + +/* Swapped Borders */ +.ui.menu .right.item::before, +.ui.menu .right.menu>.item::before { + right: auto; + left: 0; +} + +/*-------------- + Vertical + ---------------*/ + +.ui.vertical.menu { + display: block; + flex-direction: column; + background: $verticalBackground; + box-shadow: $verticalBoxShadow; +} + +/*--- Item ---*/ +.ui.vertical.menu .item { + display: block; + background: $verticalItemBackground; + border-top: none; + border-right: none; +} + +.ui.vertical.menu>.item:first-child { + border-radius: $borderRadius $borderRadius 0px 0px; +} + +.ui.vertical.menu>.item:last-child { + border-radius: 0px 0px $borderRadius $borderRadius; +} + +/*--- Label ---*/ +.ui.vertical.menu .item>.label { + float: right; + text-align: center; +} + +/*--- Icon ---*/ +.ui.vertical.menu .item>i.icon { + width: variables.$iconWidth; + float: $verticalIconFloat; + margin: $verticalIconMargin; +} + +.ui.vertical.menu .item>.label+i.icon { + float: $labelAndIconFloat; + margin: $labelAndIconMargin; +} + +/*--- Border ---*/ +.ui.vertical.menu .item:before { + position: absolute; + content: ""; + top: 0%; + left: 0px; + width: 100%; + height: $dividerSize; + background: $verticalDividerBackground; +} + +.ui.vertical.menu .item:first-child:before { + display: none !important; +} + +/*--- Sub Menu ---*/ +.ui.vertical.menu .item>.menu { + margin: $subMenuMargin; +} + +.ui.vertical.menu .menu .item { + background: none; + padding: $subMenuVerticalPadding $subMenuHorizontalPadding; + font-size: $subMenuFontSize; + color: $subMenuTextColor; +} + +.ui.vertical.menu .item .menu a.item:hover, +.ui.vertical.menu .item .menu .link.item:hover { + color: colors.$darkTextColor; +} + +.ui.vertical.menu .menu .item:before { + display: none; +} + +/* Vertical Active */ +.ui.vertical.menu .active.item { + background: $activeItemBackground; + border-radius: 0em; + box-shadow: $verticalActiveBoxShadow; +} + +.ui.vertical.menu>.active.item:first-child { + border-radius: $borderRadius $borderRadius 0em 0em; +} + +.ui.vertical.menu>.active.item:last-child { + border-radius: 0em 0em $borderRadius $borderRadius; +} + +.ui.vertical.menu>.active.item:only-child { + border-radius: $borderRadius; +} + +.ui.vertical.menu .active.item .menu .active.item { + border-left: none; +} + +.ui.vertical.menu .item .menu .active.item { + background-color: $subMenuActiveBackground; + font-weight: $subMenuActiveFontWeight; + color: $subMenuActiveTextColor; +} + +/*-------------- + Tabular + ---------------*/ + +.ui.tabular.menu { + border-radius: 0em; + box-shadow: none !important; + border: none; + background: $tabularBackground; + border-bottom: $tabularBorderWidth solid $tabularBorderColor; +} + +.ui.tabular.fluid.menu { + width: $tabularFluidWidth !important; +} + +.ui.tabular.menu .item { + background: transparent; + border-bottom: none; + + border-left: $tabularBorderWidth solid transparent; + border-right: $tabularBorderWidth solid transparent; + border-top: $tabularOppositeBorderWidth solid transparent; + padding: $tabularVerticalPadding $tabularHorizontalPadding; + color: $tabularTextColor; +} + +.ui.tabular.menu .item:before { + display: none; +} + +/* Hover */ +.ui.tabular.menu .item:hover { + background-color: transparent; + color: $tabularHoveredTextColor; +} + +/* Active */ +.ui.tabular.menu .active.item { + background: $tabularActiveBackground; + color: $tabularActiveColor; + border-top-width: $tabularBorderWidth; + border-color: $tabularBorderColor; + font-weight: $tabularActiveWeight; + margin-bottom: -$tabularBorderWidth; + box-shadow: $tabularActiveBoxShadow; + border-radius: $tabularBorderRadius $tabularBorderRadius 0px 0px !important; +} + +/* Coupling with segment for attachment */ +.ui.tabular.menu+.attached:not(.top).segment, +.ui.tabular.menu+.attached:not(.top).segment+.attached:not(.top).segment { + border-top: none; + margin-left: 0px; + margin-top: 0px; + margin-right: 0px; + width: 100%; +} + +.top.attached.segment+.ui.bottom.tabular.menu { + position: relative; + width: $tabularFluidWidth; + left: -$tabularFluidOffset; +} + +/* Bottom Vertical Tabular */ +.ui.bottom.tabular.menu { + background: $tabularBackground; + border-radius: 0em; + box-shadow: none !important; + border-bottom: none; + border-top: $tabularBorderWidth solid $tabularBorderColor; +} + +.ui.bottom.tabular.menu .item { + background: none; + border-left: $tabularBorderWidth solid transparent; + border-right: $tabularBorderWidth solid transparent; + border-bottom: $tabularBorderWidth solid transparent; + border-top: none; +} + +.ui.bottom.tabular.menu .active.item { + background: $tabularActiveBackground; + color: $tabularActiveColor; + border-color: $tabularBorderColor; + margin: -$tabularBorderWidth 0px 0px 0px; + border-radius: 0px 0px $tabularBorderRadius $tabularBorderRadius !important; +} + +/* Vertical Tabular (Left) */ +.ui.vertical.tabular.menu { + background: $tabularVerticalBackground; + border-radius: 0em; + box-shadow: none !important; + border-bottom: none; + border-right: $tabularBorderWidth solid $tabularBorderColor; + + &[data-borderHidden="true"] { + border-right: $tabularBorderWidth solid transparent; + } +} + +.ui.vertical.tabular.menu .item { + background: none; + border-left: $tabularBorderWidth solid transparent; + border-bottom: $tabularBorderWidth solid transparent; + border-top: $tabularBorderWidth solid transparent; + border-right: none; + padding: $tabularVerticalPadding*2 $tabularHorizontalPadding; + font-weight: 500; +} + +.ui.vertical.tabular.menu .active.item { + background: colors.$gray; + color: $tabularActiveColor; + border-color: $tabularBorderColor; + margin: 0px -$tabularBorderWidth 0px 0px; + border-radius: $tabularBorderRadius 0px 0px $tabularBorderRadius !important; +} + +/* Vertical Right Tabular */ +.ui.vertical.right.tabular.menu { + background: $tabularVerticalBackground; + border-radius: 0em; + box-shadow: none !important; + border-bottom: none; + border-right: none; + border-left: $tabularBorderWidth solid $tabularBorderColor; +} + +.ui.vertical.right.tabular.menu .item { + background: none; + border-right: $tabularBorderWidth solid transparent; + border-bottom: $tabularBorderWidth solid transparent; + border-top: $tabularBorderWidth solid transparent; + border-left: none; +} + +.ui.vertical.right.tabular.menu .active.item { + background: colors.$gray; + color: $tabularActiveColor; + border-color: $tabularBorderColor; + margin: 0px 0px 0px -$tabularBorderWidth; + border-radius: 0px $tabularBorderRadius $tabularBorderRadius 0px !important; +} + +/* Dropdown */ +.ui.tabular.menu .active.dropdown.item { + margin-bottom: 0px; + border-left: $tabularBorderWidth solid transparent; + border-right: $tabularBorderWidth solid transparent; + border-top: $tabularOppositeBorderWidth solid transparent; + border-bottom: none; +} + +/*-------------- + Pagination + ---------------*/ +.ui.pagination.menu { + margin: 0em; + display: inline-flex; + vertical-align: middle; + // Seth Additions: + box-shadow: none; + border: none; + min-height: 1rem; + padding-top: 0; +} + +.ui.pagination.menu .item:last-child { + border-radius: 0em $borderRadius $borderRadius 0em; + // Seth Additions: + margin-right: 0; +} + +.ui.compact.menu .item:last-child { + border-radius: 0em $borderRadius $borderRadius 0em; +} + +.ui.pagination.menu .item:last-child:before { + display: none; +} + +// Seth Addition: This removes the line between items +.ui.pagination.menu .item:before, +.ui.pagination.menu .item:last-child:before { + display: none; +} + +.ui.pagination.menu .item { + min-width: $paginationMinWidth; + text-align: center; + // Seth's Addition + border: 1px solid lightgray; + margin-right: 0.25rem; + padding: 0.25rem 0.5rem; + border-radius: 0; +} + +.ui.pagination.menu .icon.item i.icon { + vertical-align: top; +} + +/* Active */ +.ui.pagination.menu .active.item { + // border-top: none; + // padding-top: $itemVerticalPadding; + background-color: $paginationActiveBackground; + // color: $paginationActiveTextColor; + font-weight: 500; + box-shadow: none; + // Seth's Addition: + border: none; + padding-top: 0.25rem; + cursor: default; +} + +/* Template Tag */ +#js-pagination { + margin-top: functions.replace-unit(math.div(50, variables.$baseUnit), rem); + + a { + cursor: pointer; + } + + &>div { + display: flex; + padding-top: 25px; + + &>div:nth-of-type(2) { + display: flex; + justify-content: center; + flex-grow: 1; + } + } + + @media only screen and (max-width: variables.$largestMobileScreen) { + &>div { + flex-wrap: wrap; + + &>div:nth-of-type(1) { + order: 1; + width: 50%; + } + + &>div:nth-of-type(2) { + order: 3; + padding-top: 1rem; + width: 100%; + } + + &>div:nth-of-type(3) { + order: 2; + width: 50%; + text-align: right; + } + } + } + + .next, + .previous { + text-transform: uppercase; + font-weight: 500; + letter-spacing: 0.1em; + font-size: variables.$medium; + font-family: variables.$sansSerifFont; + color: black; + } + + .disabled { + color: #ccc; + } +} + +/*-------------- + Secondary + ---------------*/ + +.ui.secondary.menu, +.wp-block-navigation.is-style-secondary, +.wp-block-navigation.is-style-secondary-pointing { + background: $secondaryBackground; + margin-left: -$secondaryItemSpacing; + margin-right: -$secondaryItemSpacing; + border-radius: 0em; + border: none; + box-shadow: none; +} + +/* Item */ +.ui.secondary.menu .item, +.wp-block-navigation.is-style-secondary .wp-block-navigation-link, +.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link { + align-self: center; + box-shadow: none; + border: none; + padding: $secondaryItemPadding; + margin: $secondaryItemMargin; + // background: $secondaryItemBackground; + transition: $secondaryItemTransition; + border-radius: $secondaryItemBorderRadius; + + /* No Divider */ + &:before { + display: none !important; + } + + /* Header */ + &.header { + border-radius: 0em; + border-right: $secondaryHeaderBorder; + background: $secondaryHeaderBackground; + } + + /* Image */ + &>img:not(.ui) { + margin: 0em; + } + + /* Active */ + // $TODO WHAT?? + .ui.secondary.menu .item.active { + box-shadow: none; + background: $secondaryActiveItemBackground; + color: $secondaryActiveItemColor; + border-radius: $secondaryItemBorderRadius; + + &:hover { + box-shadow: none; + background: $secondaryActiveHoverItemBackground; + color: $secondaryActiveHoverItemColor; + } + } +} + +/* Hover */ +.ui.secondary.menu .dropdown.item:hover, +.ui.secondary.menu .link.item:hover, +.ui.secondary.menu a.item:hover { + background: $secondaryHoverItemBackground; + color: $secondaryHoverItemColor; +} + + +/* Inverted */ +.ui.secondary.inverted.menu .link.item, +.ui.secondary.inverted.menu a.item { + color: $secondaryInvertedColor !important; +} + +.ui.secondary.inverted.menu .dropdown.item:hover, +.ui.secondary.inverted.menu .link.item:hover, +.ui.secondary.inverted.menu a.item:hover { + background: $secondaryInvertedHoverBackground; + color: $secondaryInvertedHoverColor !important; +} + +.ui.secondary.inverted.menu .active.item { + background: $secondaryInvertedActiveBackground; + color: $secondaryInvertedActiveColor !important; +} + +/* Fix item margins */ +.ui.secondary.item.menu { + margin-left: 0em; + margin-right: 0em; +} + +.ui.secondary.item.menu .item:last-child { + margin-right: 0em; +} + +.ui.secondary.attached.menu { + box-shadow: none; +} + +/* Sub Menu */ +.ui.vertical.secondary.menu .item:not(.dropdown)>.menu { + margin: $secondaryMenuSubMenuMargin; +} + +.ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item { + margin: $secondaryMenuSubMenuItemMargin; + padding: $secondaryMenuSubMenuItemPadding; +} + +/*--------------------- + Secondary Vertical + -----------------------*/ + +.ui.secondary.vertical.menu>.item { + border: none; + margin: $secondaryVerticalItemMargin; + border-radius: $secondaryVerticalItemBorderRadius !important; +} + +.ui.secondary.vertical.menu>.header.item { + border-radius: 0em; +} + +/* Sub Menu */ +.ui.vertical.secondary.menu .item>.menu .item { + background-color: transparent; +} + +/* Inverted */ +.ui.secondary.inverted.menu { + background-color: transparent; +} + +/*--------------------- + Secondary Pointing + -----------------------*/ + +.ui.secondary.pointing.menu, +nav.wp-block-navigation.is-style-secondary-pointing { + margin-left: 0em; + margin-right: 0em; + border-bottom: $secondaryPointingBorderWidth solid $secondaryPointingBorderColor; +} + +.ui.secondary.pointing.menu .item, +nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link { + border-bottom-color: transparent; + border-bottom-style: solid; + border-radius: 0em; + align-self: flex-end; + + margin: 0em 0em (-$secondaryPointingBorderWidth); + padding: $secondaryPointingItemVerticalPadding $secondaryPointingItemHorizontalPadding; + border-bottom-width: $secondaryPointingBorderWidth; + transition: $secondaryItemTransition; + + /* Item Types */ + &.header { + color: $secondaryPointingHeaderColor !important; + } + + &.text { + box-shadow: none !important; + } + + &:after { + display: none; + } + + /* Active */ + &.active, + &.current-menu-item { + background-color: transparent; + box-shadow: none; + border-color: $secondaryPointingActiveBorderColor; + font-weight: $secondaryPointingActiveFontWeight; + color: $secondaryPointingActiveTextColor; + + &:hover { + border-color: $secondaryPointingActiveHoverBorderColor; + color: $secondaryPointingActiveHoverTextColor; + } + + &.dropdown { + border-color: $secondaryPointingActiveDropdownBorderColor; + } + } +} + +/* Hover */ +.ui.secondary.pointing.menu .dropdown.item:hover, +.ui.secondary.pointing.menu .link.item:hover, +.ui.secondary.pointing.menu a.item:hover, +nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:hover { + background-color: transparent; + color: $secondaryPointingHoverTextColor; +} + +/* Pressed */ +.ui.secondary.pointing.menu .dropdown.item:active, +.ui.secondary.pointing.menu .link.item:active, +.ui.secondary.pointing.menu a.item:active, +nav.wp-block-navigation.is-style-secondary-pointing .wp-block-navigation-link:active { + background-color: transparent; + border-color: $secondaryPointingBorderColor; +} + +/* Vertical Pointing */ +.ui.secondary.vertical.pointing.menu { + border-bottom-width: 0px; + border-right-width: $secondaryPointingBorderWidth; + border-right-style: solid; + border-right-color: $secondaryPointingBorderColor; +} + +.ui.secondary.vertical.pointing.menu .item { + border-bottom: none; + border-right-style: solid; + border-right-color: transparent; + border-radius: 0em !important; + margin: $secondaryVerticalPointingItemMargin; + border-right-width: $secondaryPointingBorderWidth; +} + +/* Vertical Active */ +.ui.secondary.vertical.pointing.menu .active.item { + border-color: $secondaryPointingActiveBorderColor; +} + +/* Inverted */ +.ui.secondary.inverted.pointing.menu { + border-color: $secondaryPointingInvertedBorderColor; +} + +.ui.secondary.inverted.pointing.menu { + border-width: $secondaryPointingBorderWidth; + border-color: $secondaryPointingBorderColor; +} + +.ui.secondary.inverted.pointing.menu .item { + color: $secondaryPointingInvertedItemTextColor; +} + +.ui.secondary.inverted.pointing.menu .header.item { + color: $secondaryPointingInvertedItemHeaderColor !important; +} + +/* Hover */ +.ui.secondary.inverted.pointing.menu .link.item:hover, +.ui.secondary.inverted.pointing.menu a.item:hover { + color: $secondaryPointingInvertedItemHoverTextColor; +} + +/* Active */ +.ui.secondary.inverted.pointing.menu .active.item { + border-color: $secondaryPointingInvertedActiveBorderColor; + color: $secondaryPointingInvertedActiveColor; +} + +/*-------------- + Text Menu + ---------------*/ + +.ui.text.menu { + background: none transparent; + border-radius: 0px; + box-shadow: none; + border: none; + + margin: $textMenuMargin; +} + +.ui.text.menu .item { + border-radius: 0px; + box-shadow: none; + align-self: center; + margin: $textMenuItemMargin; + padding: $textMenuItemPadding; + font-weight: $textMenuItemFontWeight; + color: $textMenuItemColor; + transition: $textMenuItemTransition; +} + +/* Border */ +.ui.text.menu .item:before, +.ui.text.menu .menu .item:before { + display: none !important; +} + +/* Header */ +.ui.text.menu .header.item { + background-color: transparent; + opacity: 1; + color: $textMenuHeaderColor; + font-size: $textMenuHeaderSize; + text-transform: $textMenuHeaderTextTransform; + font-weight: $textMenuHeaderFontWeight; +} + +/* Image */ +.ui.text.menu .item>img:not(.ui) { + margin: 0em; +} + +/*--- fluid text ---*/ +.ui.text.item.menu .item { + margin: 0em; +} + +/*--- vertical text ---*/ +.ui.vertical.text.menu { + margin: $textVerticalMenuMargin; +} + +.ui.vertical.text.menu:first-child { + margin-top: 0rem; +} + +.ui.vertical.text.menu:last-child { + margin-bottom: 0rem; +} + +.ui.vertical.text.menu .item { + margin: $textVerticalMenuItemMargin; + padding-left: 0em; + padding-right: 0em; +} + +.ui.vertical.text.menu .item>i.icon { + float: $textVerticalMenuIconFloat; + margin: $iconMargin; +} + +.ui.vertical.text.menu .header.item { + margin: $textVerticalMenuHeaderMargin; +} + +/* Vertical Sub Menu */ +.ui.vertical.text.menu .item:not(.dropdown)>.menu { + margin: $textMenuSubMenuMargin; +} + +.ui.vertical.text.menu .item:not(.dropdown)>.menu>.item { + margin: $textMenuSubMenuItemMargin; + padding: $textMenuSubMenuItemPadding; +} + +/*--- hover ---*/ +.ui.text.menu .item:hover { + opacity: 1; + background-color: transparent; +} + +/*--- active ---*/ +.ui.text.menu .active.item { + background-color: transparent; + border: none; + box-shadow: none; + font-weight: $textMenuActiveItemFontWeight; + color: $textMenuActiveItemColor; +} + +/*--- active hover ---*/ +.ui.text.menu .active.item:hover { + background-color: transparent; +} + +/* Disable Bariations */ +.ui.text.pointing.menu .active.item:after { + box-shadow: none; +} + +.ui.text.attached.menu { + box-shadow: none; +} + +/* Inverted */ +.ui.inverted.text.menu { + border: $invertedBorder !important; + background: $invertedBackground !important; + box-shadow: $invertedBoxShadow !important; +} + +//.ui.inverted.text.menu, // Seth removal +.ui.inverted.text.menu .item, +.ui.inverted.text.menu .item:hover, +.ui.inverted.text.menu .active.item { + background-color: transparent !important; +} + +/* Fluid */ +.ui.fluid.text.menu { + margin-left: 0em; + margin-right: 0em; +} + +/*-------------- + Icon Only + ---------------*/ + +/* Vertical Menu */ +.ui.vertical.icon.menu { + display: inline-block; + width: auto; +} + +/* Item */ +.ui.icon.menu .item { + height: auto; + text-align: $iconMenuTextAlign; + color: $iconMenuItemColor; +} + +/* Icon */ +.ui.icon.menu .item>.icon:not(.dropdown) { + margin: 0; + opacity: 1; +} + +/* Icon Gylph */ +.ui.icon.menu .icon:before { + opacity: 1; +} + +/* (x) Item Icon */ +.ui.menu .icon.item>.icon { + width: auto; + margin: 0em auto; +} + +/* Vertical Icon */ +.ui.vertical.icon.menu .item>.icon:not(.dropdown) { + display: block; + opacity: 1; + margin: 0em auto; + float: none; +} + +/* Inverted */ +.ui.inverted.icon.menu .item { + color: $iconMenuInvertedItemColor; +} + +/*-------------- + Labeled Icon + ---------------*/ + +/* Menu */ +.ui.labeled.icon.menu { + text-align: center; +} + +/* Item */ +.ui.labeled.icon.menu .item { + min-width: $labeledIconMinWidth; + flex-direction: column; +} + +/* Icon */ +.ui.labeled.icon.menu .item>.icon:not(.dropdown) { + height: 1em; + display: block; + font-size: $labeledIconSize !important; + margin: 0em auto $labeledIconTextMargin !important; +} + +/* Fluid */ +.ui.fluid.labeled.icon.menu>.item { + min-width: 0em; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Stackable + ---------------*/ + +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.stackable.menu { + flex-direction: column; + } + + .ui.stackable.menu .item { + width: 100% !important; + } + + .ui.stackable.menu .item:before { + position: absolute; + content: ""; + top: auto; + bottom: 0px; + left: 0px; + width: 100%; + height: $dividerSize; + background: $verticalDividerBackground; + } + + .ui.stackable.menu .left.menu, + .ui.stackable.menu .left.item { + margin-right: 0 !important; + } + + .ui.stackable.menu .right.menu, + .ui.stackable.menu .right.item { + margin-left: 0 !important; + } + + .ui.stackable.menu .right.menu, + .ui.stackable.menu .left.menu { + flex-direction: column; + } +} + +/*-------------- + Inverted + ---------------*/ + +.ui.inverted.menu { + border: $invertedBorder; + background: $invertedBackground; + box-shadow: $invertedBoxShadow; +} + +/* Menu Item */ +.ui.inverted.menu .item, +.ui.inverted.menu .item>a:not(.ui) { + background: $invertedItemBackground; + color: $invertedItemTextColor; +} + +.ui.inverted.menu .item.menu { + background: $invertedSubMenuBackground; +} + +/*--- Border ---*/ +.ui.inverted.menu .item:before { + background: $invertedDividerBackground; +} + +.ui.vertical.inverted.menu .item:before { + background: $invertedVerticalDividerBackground; +} + +/* Sub Menu */ +.ui.vertical.inverted.menu .menu .item, +.ui.vertical.inverted.menu .menu .item a:not(.ui) { + color: $invertedSubMenuColor; +} + +/* Header */ +.ui.inverted.menu .header.item { + margin: 0em; + background: $invertedHeaderBackground; + box-shadow: none; +} + +/* Disabled */ +.ui.inverted.menu .item.disabled, +.ui.inverted.menu .item.disabled:hover { + color: colors.$invertedDisabledTextColor; +} + +/*--- Hover ---*/ +.ui.link.inverted.menu .item:hover, +.ui.inverted.menu .dropdown.item:hover, +.ui.inverted.menu .link.item:hover, +.ui.inverted.menu a.item:hover { + background: $invertedHoverBackground; + color: $invertedHoverColor; +} + +.ui.vertical.inverted.menu .item .menu a.item:hover, +.ui.vertical.inverted.menu .item .menu .link.item:hover { + background: $invertedSubMenuBackground; + color: $invertedSubMenuHoverColor; +} + +/*--- Pressed ---*/ +.ui.inverted.menu a.item:active, +.ui.inverted.menu .link.item:active { + background: $invertedMenuPressedBackground; + color: $invertedMenuPressedColor; +} + +/*--- Active ---*/ +.ui.inverted.menu .active.item { + background: $invertedActiveBackground; + color: $invertedActiveColor !important; +} + +.ui.inverted.vertical.menu .item .menu .active.item { + background: $invertedSubMenuActiveBackground; + color: $invertedSubMenuActiveColor; +} + +.ui.inverted.pointing.menu .active.item:after { + background: $invertedArrowActiveColor !important; + margin: 0em !important; + box-shadow: none !important; + border: none !important; +} + +/*--- Active Hover ---*/ +.ui.inverted.menu .active.item:hover { + background: $invertedActiveHoverBackground; + color: $invertedActiveHoverColor !important; +} + +.ui.inverted.pointing.menu .active.item:hover:after { + background: $invertedArrowActiveHoverColor !important; +} + +/*-------------- + Floated + ---------------*/ + +.ui.floated.menu { + float: left; + margin: 0rem $floatedDistance 0rem 0rem; +} + +.ui.floated.menu .item:last-child:before { + display: none; +} + +.ui.right.floated.menu { + float: right; + margin: 0rem 0rem 0rem $floatedDistance; +} + +/*-------------- + Inverted + ---------------*/ + +/* Beige */ +.ui.inverted.beige.menu { + background: none; + min-height: inherit; + border-radius: 0; + + .item { + background-color: colors.$beigeDark; + color: colors.$oatmealText !important; + padding: 0.5rem 1rem; + border-radius: 0 !important; + border: 0; + border-right: 1px solid white; + font-size: variables.$absoluteMini; + letter-spacing: 0.078rem; + + &:last-of-type { + border-right: none; + } + + &:hover { + color: colors.$oatmealText; + background-color: colors.$beigeDark; + } + } + + .active.item { + background-color: colors.$beige !important; + font-weight: normal !important; + border-color: none !important; + + &:hover { + color: colors.$oatmealText !important; + } + } +} + +/* Oatmeal */ +.ui.inverted.oatmeal.menu { + background: none; + min-height: inherit; + border-radius: 0; + + .item { + background-color: colors.$oatmealDark; + color: colors.$oatmealText !important; + padding: 0.5rem 1rem; + border-radius: 0 !important; + border: 0; + border-right: 1px solid white; + font-size: variables.$absoluteMini; + letter-spacing: 0.078rem; + + &:last-of-type { + border-right: none; + } + + &:hover { + color: colors.$oatmealText; + background-color: colors.$oatmealDark; + } + } + + .active.item { + background-color: colors.$oatmeal !important; + font-weight: normal !important; + border-color: none !important; + + &:hover { + color: colors.$oatmealText !important; + } + } +} + +/** HELPERS **/ + +/*-------------- + Fitted + ---------------*/ + +.ui.fitted.menu .item, +.ui.fitted.menu .item .menu .item, +.ui.menu .fitted.item { + padding: 0em; +} + +.ui.horizontally.fitted.menu .item, +.ui.horizontally.fitted.menu .item .menu .item, +.ui.menu .horizontally.fitted.item { + padding-top: $itemVerticalPadding; + padding-bottom: $itemVerticalPadding; +} + +.ui.vertically.fitted.menu .item, +.ui.vertically.fitted.menu .item .menu .item, +.ui.menu .vertically.fitted.item { + padding-left: $itemHorizontalPadding; + padding-right: $itemHorizontalPadding; +} + +/*-------------- + Borderless + ---------------*/ + +.ui.menu.attached.borderless { + border: none !important; +} + +.ui.borderless.menu .item:before, +.ui.borderless.menu .item .menu .item:before, +.ui.menu .borderless.item:before { + background: none !important; +} + +/*------------------- + Compact + --------------------*/ + +.ui.compact.menu { + display: inline-flex; + margin: 0em; + vertical-align: middle; + + .item:last-child { + border-radius: 0em $borderRadius $borderRadius 0em; + + &:before { + display: none; + } + } +} + +.ui.compact.vertical.menu { + display: inline-block; + width: auto !important; + + .item:last-child::before { + display: block; + } +} + +/*------------------- + Fluid + --------------------*/ + +.ui.menu.fluid, +.ui.vertical.menu.fluid { + width: 100% !important; +} + +/*------------------- + Evenly Sized + --------------------*/ + +.ui.item.menu, +.ui.item.menu .item { + width: 100%; + padding-left: 0em !important; + padding-right: 0em !important; + margin-left: 0em !important; + margin-right: 0em !important; + text-align: center; + justify-content: center; +} + +.ui.attached.item.menu { + margin: 0em $attachedHorizontalOffset !important; +} + +.ui.item.menu .item:last-child:before { + display: none; +} + +.ui.menu.two.item .item { + width: 50%; +} + +.ui.menu.three.item .item { + width: 33.333%; +} + +.ui.menu.four.item .item { + width: 25%; +} + +.ui.menu.five.item .item { + width: 20%; +} + +.ui.menu.six.item .item { + width: 16.666%; +} + +.ui.menu.seven.item .item { + width: 14.285%; +} + +.ui.menu.eight.item .item { + width: 12.5%; +} + +.ui.menu.nine.item .item { + width: 11.11%; +} + +.ui.menu.ten.item .item { + width: 10%; +} + +.ui.menu.eleven.item .item { + width: 9.09%; +} + +.ui.menu.twelve.item .item { + width: 8.333%; +} + +/*-------------- + Fixed + ---------------*/ + +.ui.menu.fixed { + position: fixed; + z-index: 101; + margin: 0em; + width: 100%; +} + +.ui.menu.fixed, +.ui.menu.fixed .item:first-child, +.ui.menu.fixed .item:last-child { + border-radius: 0px !important; +} + +.ui.fixed.menu, +.ui[class*="top fixed"].menu { + top: 0px; + left: 0px; + right: auto; + bottom: auto; +} + +.ui[class*="top fixed"].menu { + border-top: none; + border-left: none; + border-right: none; +} + +.ui[class*="right fixed"].menu { + border-top: none; + border-bottom: none; + border-right: none; + top: 0px; + right: 0px; + left: auto; + bottom: auto; + width: auto; + height: 100%; +} + +.ui[class*="bottom fixed"].menu { + border-bottom: none; + border-left: none; + border-right: none; + bottom: 0px; + left: 0px; + top: auto; + right: auto; +} + +.ui[class*="left fixed"].menu { + border-top: none; + border-bottom: none; + border-left: none; + top: 0px; + left: 0px; + right: auto; + bottom: auto; + width: auto; + height: 100%; +} + +/* Coupling with Grid */ +.ui.fixed.menu+.ui.grid { + padding-top: $fixedPrecedingGridMargin; +} + +/*------------------- + Pointing + --------------------*/ + +.ui.pointing.menu, +.wp-block-navigation.is-style-pointing { + + .item, + .wp-block-navigation-link { + + &.active, + &.current-menu-item { + &:after { + visibility: visible; + background-color: $arrowActiveColor; + } + + &.dropdown:after { + visibility: hidden; + } + + &:hover:after { + background-color: $arrowHoverColor; + } + + &:hover:after { + background-color: $arrowActiveHoverColor; + } + } + + &:after { + visibility: hidden; + position: absolute; + content: ""; + top: 100%; + left: 50%; + transform: translateX(-50%) translateY(-50%) rotate(45deg); + background: none; + + margin: ($arrowBorderWidth * 0.5) 0em 0em; + width: $arrowSize; + height: $arrowSize; + + border: none; + border-bottom: $arrowBorder; + border-right: $arrowBorder; + + z-index: $arrowZIndex; + transition: $arrowTransition; + } + } + + /* Don't double up pointers */ + .dropdown.active.item:after, + .active.item .menu .active.item:after { + display: none; + } +} + +.ui.pointing.vertical.menu { + .menu .active.item:after { + background-color: $arrowVerticalSubMenuColor; + } + + .item { + &.active:hover:after { + background-color: $arrowVerticalHoverColor; + } + + &.active:after { + background-color: $arrowVerticalActiveColor; + } + + &:after { + position: absolute; + top: 50%; + right: 0%; + bottom: auto; + left: auto; + + transform: translateX(50%) translateY(-50%) rotate(45deg); + margin: 0em (-(math.div($arrowBorderWidth, 2))) 0em 0em; + + border: none; + border-top: $arrowBorder; + border-right: $arrowBorder; + } + } +} + +/*-------------- + Attached + ---------------*/ + +/* Middle */ +.ui.attached.menu { + top: 0px; + bottom: 0px; + border-radius: 0px; + margin: 0em $attachedHorizontalOffset; + width: $attachedWidth; + max-width: $attachedWidth; + box-shadow: $attachedBoxShadow; +} + +.ui.attached+.ui.attached.menu:not(.top) { + border-top: none; +} + +/* Top */ +.ui[class*="top attached"].menu { + bottom: 0px; + margin-bottom: 0em; + top: $attachedTopOffset; + margin-top: $verticalMargin; + border-radius: $borderRadius $borderRadius 0em 0em; +} + +.ui.menu[class*="top attached"]:first-child { + margin-top: 0em; +} + +/* Bottom */ +.ui[class*="bottom attached"].menu { + bottom: 0px; + margin-top: 0em; + top: $attachedBottomOffset; + margin-bottom: $verticalMargin; + box-shadow: $attachedBottomBoxShadow; + border-radius: 0em 0em $borderRadius $borderRadius; +} + +.ui[class*="bottom attached"].menu:last-child { + margin-bottom: 0em; +} + +/* Attached Menu Item */ +.ui.top.attached.menu>.item:first-child { + border-radius: $borderRadius 0em 0em 0em; +} + +.ui.bottom.attached.menu>.item:first-child { + border-radius: 0em 0em 0em $borderRadius; +} + +/* Tabular Attached */ +.ui.attached.menu:not(.tabular) { + border: $attachedBorder; +} + +.ui.attached.inverted.menu { + border: none; +} + +.ui.attached.tabular.menu { + margin-left: 0; + margin-right: 0; + width: 100%; +} + + + + + + +/** Things to not touch during refactor **/ + + + +/*-------------- + Sizes + ---------------*/ + +/* Mini */ +.ui.mini.menu { + font-size: $mini; +} + +.ui.mini.vertical.menu { + width: $miniWidth; +} + +/* Tiny */ +.ui.tiny.menu { + font-size: $tiny; +} + +.ui.tiny.vertical.menu { + width: $tinyWidth; +} + +/* Small */ +.ui.small.menu { + font-size: $small; +} + +.ui.small.vertical.menu { + width: $smallWidth; +} + +/* Medium */ +.ui.menu, +.wp-block-navigation { + font-size: variables.$medium; +} + +.ui.vertical.menu { + width: $mediumWidth; +} + +/* Large */ +.ui.large.menu { + font-size: $large; +} + +.ui.large.vertical.menu { + width: $largeWidth; +} + +/* Huge */ +.ui.huge.menu { + font-size: $huge; +} + +.ui.huge.vertical.menu { + width: $hugeWidth; +} + +/* Big */ +.ui.big.menu { + font-size: $big; +} + +.ui.big.vertical.menu { + width: $bigWidth; +} + +/* Massive */ +.ui.massive.menu { + font-size: $massive; +} + +.ui.massive.vertical.menu { + width: $massiveWidth; +} + +// PRC Menu Block +.wp-block-prc-block-menu { + &>.menu { + padding-top: 0; + } + + &.items-justified-center:not(.vertical)>.menu { + justify-content: center; + } + + &.items-justified-right:not(.vertical)>.menu { + justify-content: flex-end; + } + + &.items-justified-center.vertical>.menu { + text-align: center; + } + + &.items-justified-right.vertical>.menu { + text-align: right; + } + + .block-list-appender { + display: flex; + align-items: center; + max-width: inherit !important; + margin: inherit !important; + } +} + +.ui.menu.block-editor-block-list__layout { + &>.item { + max-width: inherit !important; + margin: 0 !important; + } +} + +.wp-block-prc-block-menu .wp-block-prc-block-menu { + margin: 0 !important; +} + +.wp-block-prc-block-menu>.ui.menu { + &>.wp-block-prc-block-post-publish-date { + flex-grow: 1; + } +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/message.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/message.scss new file mode 100644 index 00000000..e0db81af --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/message.scss @@ -0,0 +1,634 @@ +/*! + * # Semantic UI - Message + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "colors"; +@use "sass:math"; + +/******************************* + Message + *******************************/ + +// colors.$textColor + +/*------------------- + Elements + --------------------*/ + +$verticalMargin: 1em; +$verticalPadding: 1em; +$horizontalPadding: 1.5em; +$padding: $verticalPadding $horizontalPadding; +$background: #F8F8F9; +$lineHeightOffset: math.div((variables.$lineHeight - 1em), 2); + +$borderRadius: variables.$defaultBorderRadius; +$borderWidth: 1px; +$borderShadow: 0px 0px 0px $borderWidth colors.$strongBorderColor inset; +$shadowShadow: 0px 0px 0px 0px rgba(0, 0, 0, 0); +$boxShadow: $borderShadow, +$shadowShadow; + +$transition: opacity variables.$defaultDuration variables.$defaultEasing, +color variables.$defaultDuration variables.$defaultEasing, +background variables.$defaultDuration variables.$defaultEasing, +box-shadow variables.$defaultDuration variables.$defaultEasing; + +/* Header */ +$headerFontSize: variables.$relativeLarge; +$headerFontWeight: variables.$bold; +$headerDisplay: block; +$headerDistance: 0rem; +$headerMargin: -(variables.$headerLineHeightOffset) 0em $headerDistance 0em; +$headerParagraphDistance: 0.25em; + +/* Paragraph */ +$messageTextOpacity: 0.85; +$messageParagraphMargin: 0.75em; + +/* List */ +$listOpacity: 0.85; +$listStylePosition: inside; +$listMargin: 0.5em; +$listItemIndent: 1em; +$listItemMargin: 0.3em; + +/* Icon */ +$iconDistance: 0.6em; + +/* Close Icon */ +$closeTopDistance: $verticalPadding - $lineHeightOffset; +$closeRightDistance: 0.5em; +$closeOpacity: 0.7; +$closeTransition: opacity variables.$defaultDuration variables.$defaultEasing; + + +/*------------------- + Types + --------------------*/ + +/* Icon Message */ +$iconSize: 3em; +$iconOpacity: 0.8; +$iconContentDistance: 0rem; +$iconVerticalAlign: middle; + +/* Attached */ +$attachedXOffset: -1px; +$attachedYOffset: -1px; +$attachedBoxShadow: 0em 0em 0em $borderWidth colors.$borderColor inset; +$attachedBottomBoxShadow: $attachedBoxShadow, +variables.$subtleShadow; + +/* Floating */ +$floatingBoxShadow: $borderShadow, +variables.$floatingShadow; + +/* Colors */ +$redBoxShadow: 0px 0px 0px $borderWidth colors.$redBorderColor inset, +$shadowShadow; +$orangeBoxShadow: 0px 0px 0px $borderWidth colors.$orangeBorderColor inset, +$shadowShadow; +$yellowBoxShadow: 0px 0px 0px $borderWidth colors.$yellowBorderColor inset, +$shadowShadow; +$oliveBoxShadow: 0px 0px 0px $borderWidth colors.$oliveBorderColor inset, +$shadowShadow; +$greenBoxShadow: 0px 0px 0px $borderWidth colors.$greenBorderColor inset, +$shadowShadow; +$tealBoxShadow: 0px 0px 0px $borderWidth colors.$tealBorderColor inset, +$shadowShadow; +$blueBoxShadow: 0px 0px 0px $borderWidth colors.$blueBorderColor inset, +$shadowShadow; +$violetBoxShadow: 0px 0px 0px $borderWidth colors.$violetBorderColor inset, +$shadowShadow; +$purpleBoxShadow: 0px 0px 0px $borderWidth colors.$purpleBorderColor inset, +$shadowShadow; +$pinkBoxShadow: 0px 0px 0px $borderWidth colors.$pinkBorderColor inset, +$shadowShadow; +$brownBoxShadow: 0px 0px 0px $borderWidth colors.$brownBorderColor inset, +$shadowShadow; + +/* Warning / Positive / Negative / Info */ +$positiveBoxShadow: 0px 0px 0px $borderWidth colors.$positiveBorderColor inset, +$shadowShadow; +$negativeBoxShadow: 0px 0px 0px $borderWidth colors.$negativeBorderColor inset, +$shadowShadow; +$infoBoxShadow: 0px 0px 0px $borderWidth colors.$infoBorderColor inset, +$shadowShadow; +$warningBoxShadow: 0px 0px 0px $borderWidth colors.$warningBorderColor inset, +$shadowShadow; +$errorBoxShadow: 0px 0px 0px $borderWidth colors.$errorBorderColor inset, +$shadowShadow; +$successBoxShadow: 0px 0px 0px $borderWidth colors.$successBorderColor inset, +$shadowShadow; + + +/******************************* + Message + *******************************/ + +.ui.message { + position: relative; + min-height: 1em; + margin: $verticalMargin 0em; + background: $background; + padding: $padding; + line-height: variables.$lineHeight; + color: colors.$textColor; + transition: $transition; + border-radius: $borderRadius; + box-shadow: $boxShadow; +} + +.ui.message:first-child { + margin-top: 0em; +} + +.ui.message:last-child { + margin-bottom: 0em; +} + +/*-------------- + Content + ---------------*/ + +/* Header */ +.ui.message .header { + display: $headerDisplay; + font-family: variables.$headerFont; + font-weight: variables.$headerFontWeight; + margin: $headerMargin; +} + +/* Default font size */ +.ui.message .header:not(.ui) { + font-size: $headerFontSize; +} + +/* Paragraph */ +.ui.message p { + opacity: $messageTextOpacity; + margin: $messageParagraphMargin 0em; + font-family: variables.$sansSerif; +} + +.ui.message p:first-child { + margin-top: 0em; +} + +.ui.message p:last-child { + margin-bottom: 0em; +} + +.ui.message .header+p { + margin-top: $headerParagraphDistance; +} + +/* List */ +.ui.message .list:not(.ui) { + text-align: left; + padding: 0em; + opacity: $listOpacity; + list-style-position: $listStylePosition; + margin: $listMargin 0em 0em; +} + +.ui.message .list:not(.ui):first-child { + margin-top: 0em; +} + +.ui.message .list:not(.ui):last-child { + margin-bottom: 0em; +} + +.ui.message .list:not(.ui) li { + position: relative; + list-style-type: none; + margin: 0em 0em $listItemMargin $listItemIndent; + padding: 0em; +} + +.ui.message .list:not(.ui) li:before { + position: absolute; + content: "•"; + left: -1em; + height: 100%; + vertical-align: baseline; +} + +.ui.message .list:not(.ui) li:last-child { + margin-bottom: 0em; +} + +/* Icon */ +.ui.message>.icon { + margin-right: $iconDistance; +} + +/* Close Icon */ +.ui.message>.close.icon { + cursor: pointer; + position: absolute; + margin: 0em; + top: $closeTopDistance; + right: $closeRightDistance; + opacity: $closeOpacity; + transition: $closeTransition; +} + +.ui.message>.close.icon:hover { + opacity: 1; +} + +/* First / Last Element */ +.ui.message> :first-child { + margin-top: 0em; +} + +.ui.message> :last-child { + margin-bottom: 0em; +} + +/******************************* + Coupling + *******************************/ + +.ui.dropdown .menu>.message { + margin: 0px -$borderWidth; +} + +/******************************* + States + *******************************/ + +/*-------------- + Visible + ---------------*/ + +.ui.visible.visible.visible.visible.message { + display: block; +} + +.ui.icon.visible.visible.visible.visible.message { + display: flex; +} + +/*-------------- + Hidden + ---------------*/ + +.ui.hidden.hidden.hidden.hidden.message { + display: none; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Compact + ---------------*/ + +.ui.compact.message { + display: inline-block; +} + +.ui.compact.icon.message { + display: inline-flex; +} + +/*-------------- + Attached + ---------------*/ + +.ui.attached.message { + margin-bottom: $attachedYOffset; + border-radius: $borderRadius $borderRadius 0em 0em; + box-shadow: $attachedBoxShadow; + margin-left: $attachedXOffset; + margin-right: $attachedXOffset; +} + +.ui.attached+.ui.attached.message:not(.top):not(.bottom) { + margin-top: $attachedYOffset; + border-radius: 0em; +} + +.ui.bottom.attached.message { + margin-top: $attachedYOffset; + border-radius: 0em 0em $borderRadius $borderRadius; + box-shadow: $attachedBottomBoxShadow; +} + +.ui.bottom.attached.message:not(:last-child) { + margin-bottom: $verticalMargin; +} + +.ui.attached.icon.message { + width: auto; +} + +/*-------------- + Icon + ---------------*/ + +.ui.icon.message { + display: flex; + width: 100%; + align-items: center; +} + +.ui.icon.message>.icon:not(.close) { + display: block; + flex: 0 0 auto; + width: auto; + line-height: 1; + vertical-align: $iconVerticalAlign; + font-size: $iconSize; + opacity: $iconOpacity; +} + +.ui.icon.message>.content { + display: block; + flex: 1 1 auto; + vertical-align: $iconVerticalAlign; +} + +.ui.icon.message .icon:not(.close)+.content { + padding-left: $iconContentDistance; +} + +.ui.icon.message .circular.icon { + width: 1em; +} + +/*-------------- + Floating + ---------------*/ + +.ui.floating.message { + box-shadow: $floatingBoxShadow; +} + +/*-------------- + Colors + ---------------*/ + +.ui.black.message { + background-color: colors.$black; + color: colors.$invertedTextColor; +} + +/*-------------- + Types + ---------------*/ + +/* Positive */ +.ui.positive.message { + background-color: colors.$positiveBackgroundColor; + color: colors.$positiveTextColor; +} + +.ui.positive.message, +.ui.attached.positive.message { + box-shadow: $positiveBoxShadow; +} + +.ui.positive.message .header { + color: colors.$positiveHeaderColor; +} + +/* Negative */ +.ui.negative.message { + background-color: colors.$negativeBackgroundColor; + color: colors.$negativeTextColor; +} + +.ui.negative.message, +.ui.attached.negative.message { + box-shadow: $negativeBoxShadow; +} + +.ui.negative.message .header { + color: colors.$negativeHeaderColor; +} + +/* Info */ +.ui.info.message { + background-color: colors.$infoBackgroundColor; + color: colors.$infoTextColor; +} + +.ui.info.message, +.ui.attached.info.message { + box-shadow: $infoBoxShadow; +} + +.ui.info.message .header { + color: colors.$infoHeaderColor; +} + +/* Warning */ +.ui.warning.message { + background-color: colors.$warningBackgroundColor; + color: colors.$warningTextColor; +} + +.ui.warning.message, +.ui.attached.warning.message { + box-shadow: $warningBoxShadow; +} + +.ui.warning.message .header { + color: colors.$warningHeaderColor; +} + +/* Error */ +.ui.error.message { + background-color: colors.$errorBackgroundColor; + color: colors.$errorTextColor; +} + +.ui.error.message, +.ui.attached.error.message { + box-shadow: $errorBoxShadow; +} + +.ui.error.message .header { + color: colors.$errorHeaderColor; +} + +/* Success */ +.ui.success.message { + background-color: colors.$successBackgroundColor; + color: colors.$successTextColor; +} + +.ui.success.message, +.ui.attached.success.message { + box-shadow: $successBoxShadow; +} + +.ui.success.message .header { + color: colors.$successHeaderColor; +} + +/* Colors */ +.ui.inverted.message, +.ui.black.message { + background-color: colors.$black; + color: colors.$invertedTextColor; +} + +.ui.red.message { + background-color: colors.$redBackground; + color: colors.$redTextColor; + box-shadow: $redBoxShadow; +} + +.ui.red.message .header { + color: colors.$redHeaderColor; +} + +.ui.orange.message { + background-color: colors.$orangeBackground; + color: colors.$orangeTextColor; + box-shadow: $orangeBoxShadow; +} + +.ui.orange.message .header { + color: colors.$orangeHeaderColor; +} + +.ui.yellow.message { + background-color: colors.$yellowBackground; + color: colors.$yellowTextColor; + box-shadow: $yellowBoxShadow; +} + +.ui.yellow.message .header { + color: colors.$yellowHeaderColor; +} + +.ui.olive.message { + background-color: colors.$oliveBackground; + color: colors.$oliveTextColor; + box-shadow: $oliveBoxShadow; +} + +.ui.olive.message .header { + color: colors.$oliveHeaderColor; +} + +.ui.green.message { + background-color: colors.$greenBackground; + color: colors.$greenTextColor; + box-shadow: $greenBoxShadow; +} + +.ui.green.message .header { + color: colors.$greenHeaderColor; +} + +.ui.teal.message { + background-color: colors.$tealBackground; + color: colors.$tealTextColor; + box-shadow: $tealBoxShadow; +} + +.ui.teal.message .header { + color: colors.$tealHeaderColor; +} + +.ui.blue.message { + background-color: colors.$blueBackground; + color: colors.$blueTextColor; + box-shadow: $blueBoxShadow; +} + +.ui.blue.message .header { + color: colors.$blueHeaderColor; +} + +.ui.violet.message { + background-color: colors.$violetBackground; + color: colors.$violetTextColor; + box-shadow: $violetBoxShadow; +} + +.ui.violet.message .header { + color: colors.$violetHeaderColor; +} + +.ui.purple.message { + background-color: colors.$purpleBackground; + color: colors.$purpleTextColor; + box-shadow: $purpleBoxShadow; +} + +.ui.purple.message .header { + color: colors.$purpleHeaderColor; +} + +.ui.pink.message { + background-color: colors.$pinkBackground; + color: colors.$pinkTextColor; + box-shadow: $pinkBoxShadow; +} + +.ui.pink.message .header { + color: colors.$pinkHeaderColor; +} + +.ui.brown.message { + background-color: colors.$brownBackground; + color: colors.$brownTextColor; + box-shadow: $brownBoxShadow; +} + +.ui.brown.message .header { + color: colors.$brownHeaderColor; +} + +/*-------------- + Sizes + ---------------*/ + +.ui.mini.message { + font-size: variables.$relativeMini; +} + +.ui.tiny.message { + font-size: variables.$relativeTiny; +} + +.ui.small.message { + font-size: variables.$relativeSmall; +} + +.ui.message { + font-size: variables.$relativeMedium; +} + +.ui.large.message { + font-size: variables.$relativeLarge; +} + +.ui.big.message { + font-size: variables.$relativeBig; +} + +.ui.huge.message { + font-size: variables.$relativeHuge; +} + +.ui.massive.message { + font-size: variables.$relativeMassive; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/mixins.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/mixins.scss new file mode 100644 index 00000000..f805f355 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/mixins.scss @@ -0,0 +1,51 @@ +@use "sass:math"; +@use "master.variables"as variables; + +@mixin box-shadow ($string) { + -webkit-box-shadow: $string; + -moz-box-shadow: $string; + box-shadow: $string; +} + +@mixin uppercaseTitle($fontWeight: 400, $color: black, $fontSize: variables.$absoluteSmall, $letterSpacing: .1em) { + font-weight: $fontWeight; + font-size: $fontSize; + letter-spacing: $letterSpacing; + font-family: variables.$sansSerifFont; + text-transform: uppercase; + color: $color; +} + +@mixin fontSize($desiredFontSize) { + font-size: math.div($desiredFontSize, $baseUnit)rem; +} + +/** Custom Mixins **/ +@mixin projectColor($primaryColor, $secondaryColor) { + + .report, + .interactive, + .demographic-profile, + .blog-post, + .fact-sheet { + &.bg { + background-color: $primaryColor; + } + + &.border { + border-color: $primaryColor; + } + } + + .pseudo-link { + color: $secondaryColor !important; + } +} + +@mixin clearfix() { + &:after { + content: ""; + display: table; + clear: both; + } +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/modal.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/modal.scss new file mode 100644 index 00000000..2d701257 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/modal.scss @@ -0,0 +1,810 @@ +/*! + * # Semantic UI - Modal + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "functions" as functions; +@use "colors"; + +/******************************* + Modal + *******************************/ + +$background: colors.$white; +$border: none; +$zIndex: 1001; +$borderRadius: variables.$defaultBorderRadius; +$transformOrigin: 50% 25%; +$boxShadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), +1px 3px 15px 2px rgba(0, 0, 0, 0.2); + +/* Close Icon */ +$closeOpacity: 0.8; +$closeSize: 1.25em; +$closeColor: colors.$white; + +$closeHitbox: 2.25rem; +$closeDistance: 0.25rem; +$closeHitBoxOffset: ($closeHitbox - 1rem) * 0.5; +$closePadding: $closeHitBoxOffset 0rem 0rem 0rem; +$closeTop: -($closeDistance + $closeHitbox); +$closeRight: -($closeDistance + $closeHitbox); + +/* Header */ +$headerMargin: 0em; +$headerVerticalPadding: 1.25rem; +$headerHorizontalPadding: 1.5rem; +$headerPadding: $headerVerticalPadding $headerHorizontalPadding; +$headerBackground: colors.$white; +$headerColor: colors.$darkTextColor; +$headerFontSize: variables.$huge; +$headerBoxShadow: none; +$headerFontWeight: variables.$bold; +$headerFontFamily: variables.$headerFont; +$headerBorder: 1px solid colors.$borderColor; + +/* Content */ +$contentFontSize: 1em; +$contentPadding: 1.5rem; +$contentLineHeight: 1.4; +$contentBackground: #ffffff; + +/* Image / Description */ +$imageWidth: ""; +$imageIconSize: 8rem; +$imageVerticalAlign: top; + +$descriptionDistance: 2em; +$descriptionMinWidth: ""; +$descriptionWidth: auto; +$descriptionVerticalAlign: top; + +/* Modal Actions */ +$actionBorder: 1px solid colors.$borderColor; +$actionBackground: colors.$offWhite; +$actionPadding: 1rem 1rem; +$actionAlign: right; + +$buttonDistance: 0.75em; + +/* Inner Close Position (Tablet/Mobile) */ +$innerCloseTop: ($headerVerticalPadding - $closeHitBoxOffset + functions.strip-unit(variables.$lineHeight - 1em)); +$innerCloseRight: 1rem; +$innerCloseColor: colors.$textColor; + +/* Mobile Positions */ +$mobileHeaderPadding: 0.75rem 1rem; +$mobileContentPadding: 1rem; +$mobileImagePadding: 0rem 0rem 1rem; +$mobileDescriptionPadding: 1rem 0rem; +$mobileButtonDistance: 1rem; +$mobileActionPadding: 1rem 1rem (1rem - $mobileButtonDistance); +$mobileImageIconSize: 5rem; +$mobileCloseTop: 0.5rem; +$mobileCloseRight: 0.5rem; + +/* Responsive Widths */ +$mobileWidth: 95%; +$tabletWidth: 88%; +$computerWidth: 850px; +$largeMonitorWidth: 900px; +$widescreenMonitorWidth: 950px; + +$mobileMargin: 0em 0em 0em 0em; +$tabletMargin: 0em 0em 0em 0em; +$computerMargin: 0em 0em 0em 0em; +$largeMonitorMargin: 0em 0em 0em 0em; +$widescreenMonitorMargin: 0em 0em 0em 0em; + +$fullScreenWidth: 95%; +$fullScreenOffset: 0em; +$fullScreenMargin: 1em auto; + +/* Coupling */ +$invertedBoxShadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); + +/*------------------- + States + --------------------*/ + +$loadingZIndex: -1; + +/*------------------- + Types + --------------------*/ + +/* Basic */ +$basicModalHeaderColor: colors.$white; +$basicModalColor: colors.$white; +$basicModalCloseTop: 1rem; +$basicModalCloseRight: 1.5rem; +$basicInnerCloseColor: colors.$white; + +$basicInvertedModalColor: colors.$textColor; +$basicInvertedModalHeaderColor: colors.$darkTextColor; + +/* Top Aligned */ +$topAlignedMargin: 5vh; +$mobileTopAlignedMargin: 1rem; + +/* Scrolling Margin */ +$scrollingMargin: 1rem; +$mobileScrollingMargin: $mobileTopAlignedMargin; + +/* Scrolling Content */ +$scrollingContentMaxHeight: calc(80vh - 10em); + +/*------------------- + Variations + --------------------*/ + +/* Size Widths */ +$miniRatio: 0.4; +$tinyRatio: 0.6; +$smallRatio: 0.8; +$largeRatio: 1.2; + +/* Derived Responsive Sizes */ +$miniHeaderSize: 1.3em; +$miniMobileWidth: $mobileWidth; +$miniTabletWidth: ($tabletWidth * $miniRatio); +$miniComputerWidth: ($computerWidth * $miniRatio); +$miniLargeMonitorWidth: ($largeMonitorWidth * $miniRatio); +$miniWidescreenMonitorWidth: ($widescreenMonitorWidth * $miniRatio); + +$miniMobileMargin: 0em 0em 0em 0em; +$miniTabletMargin: 0em 0em 0em 0em; +$miniComputerMargin: 0em 0em 0em 0em; +$miniLargeMonitorMargin: 0em 0em 0em 0em; +$miniWidescreenMonitorMargin: 0em 0em 0em 0em; + +$tinyHeaderSize: 1.3em; +$tinyMobileWidth: $mobileWidth; +$tinyTabletWidth: ($tabletWidth * $tinyRatio); +$tinyComputerWidth: ($computerWidth * $tinyRatio); +$tinyLargeMonitorWidth: ($largeMonitorWidth * $tinyRatio); +$tinyWidescreenMonitorWidth: ($widescreenMonitorWidth * $tinyRatio); + +$tinyMobileMargin: 0em 0em 0em 0em; +$tinyTabletMargin: 0em 0em 0em 0em; +$tinyComputerMargin: 0em 0em 0em 0em; +$tinyLargeMonitorMargin: 0em 0em 0em 0em; +$tinyWidescreenMonitorMargin: 0em 0em 0em 0em; + +$smallHeaderSize: 1.3em; +$smallMobileWidth: $mobileWidth; +$smallTabletWidth: ($tabletWidth * $smallRatio); +$smallComputerWidth: ($computerWidth * $smallRatio); +$smallLargeMonitorWidth: ($largeMonitorWidth * $smallRatio); +$smallWidescreenMonitorWidth: ($widescreenMonitorWidth * $smallRatio); + +$smallMobileMargin: 0em 0em 0em 0em; +$smallTabletMargin: 0em 0em 0em 0em; +$smallComputerMargin: 0em 0em 0em 0em; +$smallLargeMonitorMargin: 0em 0em 0em 0em; +$smallWidescreenMonitorMargin: 0em 0em 0em 0em; + +$largeHeaderSize: 1.6em; +$largeMobileWidth: $mobileWidth; +$largeTabletWidth: $tabletWidth; +$largeComputerWidth: ($computerWidth * $largeRatio); +$largeLargeMonitorWidth: ($largeMonitorWidth * $largeRatio); +$largeWidescreenMonitorWidth: ($widescreenMonitorWidth * $largeRatio); + +$largeMobileMargin: 0em 0em 0em 0em; +$largeTabletMargin: 0em 0em 0em 0em; +$largeComputerMargin: 0em 0em 0em 0em; +$largeLargeMonitorMargin: 0em 0em 0em 0em; +$largeWidescreenMonitorMargin: 0em 0em 0em 0em; + + +/******************************* + Modal + *******************************/ + +.ui.modal { + position: absolute; + display: none; + z-index: $zIndex; + text-align: left; + + background: $background; + border: $border; + box-shadow: $boxShadow; + transform-origin: $transformOrigin; + + flex: 0 0 auto; + + border-radius: $borderRadius; + user-select: text; + will-change: top, left, margin, transform, opacity; +} + +.ui.modal> :first-child:not(.icon), +.ui.modal>.icon:first-child+* { + border-top-left-radius: $borderRadius; + border-top-right-radius: $borderRadius; +} + +.ui.modal> :last-child { + border-bottom-left-radius: $borderRadius; + border-bottom-right-radius: $borderRadius; +} + +/******************************* + Content + *******************************/ + +/*-------------- + Close + ---------------*/ + +.ui.modal>.close { + cursor: pointer; + position: absolute; + top: $closeTop; + right: $closeRight; + z-index: 1; + + opacity: $closeOpacity; + font-size: $closeSize; + color: var(--wp--preset--color--light-gray, white); + + width: $closeHitbox; + height: $closeHitbox; + padding: $closePadding; +} + +.ui.modal>.close:hover { + opacity: 1; +} + +/*-------------- + Header + ---------------*/ + +.ui.modal>.header { + display: block; + font-family: $headerFontFamily; + background: $headerBackground; + margin: $headerMargin; + padding: $headerPadding; + box-shadow: $headerBoxShadow; + + color: $headerColor; + border-bottom: $headerBorder; +} + +.ui.modal>.header:not(.ui) { + font-size: $headerFontSize; + line-height: variables.$headerLineHeight; + font-weight: $headerFontWeight; +} + +/*-------------- + Content + ---------------*/ + +.ui.modal>.content { + display: block; + width: 100%; + font-size: $contentFontSize; + line-height: $contentLineHeight; + padding: $contentPadding; + background: $contentBackground; +} + +.ui.modal>.image.content { + display: flex; + flex-direction: row; +} + +/* Image */ +.ui.modal>.content>.image { + display: block; + flex: 0 1 auto; + width: $imageWidth; + align-self: $imageVerticalAlign; +} + +.ui.modal>[class*="top aligned"] { + align-self: top; +} + +.ui.modal>[class*="middle aligned"] { + align-self: middle; +} + +.ui.modal>[class*="stretched"] { + align-self: stretch; +} + +/* Description */ +.ui.modal>.content>.description { + display: block; + flex: 1 0 auto; + min-width: 0px; + align-self: $descriptionVerticalAlign; +} + +.ui.modal>.content>.icon+.description, +.ui.modal>.content>.image+.description { + flex: 0 1 auto; + min-width: $descriptionMinWidth; + width: $descriptionWidth; + padding-left: $descriptionDistance; +} + +/*rtl:ignore*/ +.ui.modal>.content>.image>i.icon { + margin: 0em; + opacity: 1; + width: auto; + line-height: 1; + font-size: $imageIconSize; +} + +/*-------------- + Actions + ---------------*/ + +.ui.modal>.actions { + background: $actionBackground; + padding: $actionPadding; + border-top: $actionBorder; + text-align: $actionAlign; +} + +.ui.modal .actions>.button { + margin-left: $buttonDistance; +} + +/*------------------- + Responsive + --------------------*/ + +/* Modal Width */ +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.modal { + width: $mobileWidth; + margin: $mobileMargin; + } +} + +@media only screen and (min-width: variables.$tabletBreakpoint) { + .ui.modal { + width: $tabletWidth; + margin: $tabletMargin; + } +} + +@media only screen and (min-width: variables.$computerBreakpoint) { + .ui.modal { + width: $computerWidth; + margin: $computerMargin; + } +} + +@media only screen and (min-width: variables.$largeMonitorBreakpoint) { + .ui.modal { + width: $largeMonitorWidth; + margin: $largeMonitorMargin; + } +} + +@media only screen and (min-width: variables.$widescreenMonitorBreakpoint) { + .ui.modal { + width: $widescreenMonitorWidth; + margin: $widescreenMonitorMargin; + } +} + +/* Tablet and Mobile */ +@media only screen and (max-width: variables.$largestTabletScreen) { + .ui.modal>.header { + padding-right: $closeHitbox; + } + + .ui.modal>.close { + top: $innerCloseTop; + right: $innerCloseRight; + } +} + +/* Mobile */ +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.modal>.header { + padding: $mobileHeaderPadding !important; + padding-right: $closeHitbox !important; + } + + .ui.modal>.content { + display: block; + padding: $mobileContentPadding !important; + } + + .ui.modal>.close { + top: $mobileCloseTop !important; + right: $mobileCloseRight !important; + } + + /*rtl:ignore*/ + .ui.modal .image.content { + flex-direction: column; + } + + .ui.modal .content>.image { + display: block; + max-width: 100%; + margin: 0em auto !important; + text-align: center; + padding: $mobileImagePadding !important; + } + + .ui.modal>.content>.image>i.icon { + font-size: $mobileImageIconSize; + text-align: center; + } + + /*rtl:ignore*/ + .ui.modal .content>.description { + display: block; + width: 100% !important; + margin: 0em !important; + padding: $mobileDescriptionPadding !important; + box-shadow: none; + } + + /* Let Buttons Stack */ + .ui.modal>.actions { + padding: $mobileActionPadding !important; + } + + .ui.modal .actions>.buttons, + .ui.modal .actions>.button { + margin-bottom: $mobileButtonDistance; + } +} + +/*-------------- + Coupling + ---------------*/ + +.ui.inverted.dimmer>.ui.modal { + box-shadow: $invertedBoxShadow; +} + +/******************************* + Types + *******************************/ + +.ui.basic.modal { + background-color: transparent; + border: none; + border-radius: 0em; + box-shadow: none !important; + color: $basicModalColor; +} + +.ui.basic.modal>.header, +.ui.basic.modal>.content, +.ui.basic.modal>.actions { + background-color: transparent; +} + +.ui.basic.modal>.header { + color: $basicModalHeaderColor; +} + +.ui.basic.modal>.close { + color: var(--wp--preset--color--slate, black); +} + +.ui.inverted.dimmer>.basic.modal { + color: $basicInvertedModalColor; +} + +.ui.inverted.dimmer>.ui.basic.modal>.header { + color: $basicInvertedModalHeaderColor; +} + +/* Resort to margin positioning if legacy */ +.ui.legacy.modal, +.ui.legacy.page.dimmer>.ui.modal { + top: 50%; + left: 50%; +} + +.ui.legacy.page.dimmer>.ui.scrolling.modal, +.ui.page.dimmer>.ui.scrolling.legacy.modal, +.ui.top.aligned.legacy.page.dimmer>.ui.modal, +.ui.top.aligned.dimmer>.ui.legacy.modal { + top: auto; +} + +/******************************* + States + *******************************/ + +.ui.loading.modal { + display: block; + visibility: hidden; + z-index: $loadingZIndex; +} + +.ui.active.modal { + display: block; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Top Aligned + ---------------*/ + +/* Top Aligned Modal */ +.modals.dimmer[class*="top aligned"] .modal { + margin: $topAlignedMargin auto; +} + +@media only screen and (max-width: variables.$largestMobileScreen) { + .modals.dimmer[class*="top aligned"] .modal { + margin: $mobileTopAlignedMargin auto; + } +} + +/* Legacy Top Aligned */ +.legacy.modals.dimmer[class*="top aligned"] { + padding-top: $topAlignedMargin; +} + +@media only screen and (max-width: variables.$largestMobileScreen) { + .legacy.modals.dimmer[class*="top aligned"] { + padding-top: $mobileTopAlignedMargin; + } +} + +/*-------------- + Scrolling + ---------------*/ + +/* Scrolling Dimmer */ +.scrolling.dimmable.dimmed { + overflow: hidden; +} + +.scrolling.dimmable>.dimmer { + justify-content: flex-start; +} + +.scrolling.dimmable.dimmed>.dimmer { + overflow: auto; + -webkit-overflow-scrolling: touch; +} + +.scrolling.dimmable>.dimmer { + position: fixed; +} + +.modals.dimmer .ui.scrolling.modal { + margin: $scrollingMargin auto; +} + +/* Undetached Scrolling */ +.scrolling.undetached.dimmable.dimmed { + overflow: auto; + -webkit-overflow-scrolling: touch; +} + +.scrolling.undetached.dimmable.dimmed>.dimmer { + overflow: hidden; +} + +.scrolling.undetached.dimmable .ui.scrolling.modal { + position: absolute; + left: 50%; + margin-top: $scrollingMargin !important; +} + +/* Scrolling Content */ +.ui.modal .scrolling.content { + max-height: $scrollingContentMaxHeight; + overflow: auto; +} + +/*-------------- + Full Screen + ---------------*/ + +.ui.fullscreen.modal { + width: $fullScreenWidth !important; + margin: $fullScreenMargin; +} + +.ui.fullscreen.modal>.header { + padding-right: $closeHitbox; +} + +.ui.fullscreen.modal>.close { + top: $innerCloseTop; + right: $innerCloseRight; +} + +/*-------------- + Size + ---------------*/ + +.ui.modal { + font-size: variables.$medium; +} + +/* Mini */ +.ui.mini.modal>.header:not(.ui) { + font-size: $miniHeaderSize; +} + +/* Mini Modal Width */ +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.mini.modal { + width: $miniMobileWidth; + margin: $miniMobileMargin; + } +} + +@media only screen and (min-width: variables.$tabletBreakpoint) { + .ui.mini.modal { + width: $miniTabletWidth; + margin: $miniTabletMargin; + } +} + +@media only screen and (min-width: variables.$computerBreakpoint) { + .ui.mini.modal { + width: $miniComputerWidth; + margin: $miniComputerMargin; + } +} + +@media only screen and (min-width: variables.$largeMonitorBreakpoint) { + .ui.mini.modal { + width: $miniLargeMonitorWidth; + margin: $miniLargeMonitorMargin; + } +} + +@media only screen and (min-width: variables.$widescreenMonitorBreakpoint) { + .ui.mini.modal { + width: $miniWidescreenMonitorWidth; + margin: $miniWidescreenMonitorMargin; + } +} + +/* mini */ +.ui.small.modal>.header:not(.ui) { + font-size: $miniHeaderSize; +} + +/* Tiny Modal Width */ +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.tiny.modal { + width: $tinyMobileWidth; + margin: $tinyMobileMargin; + } +} + +@media only screen and (min-width: variables.$tabletBreakpoint) { + .ui.tiny.modal { + width: $tinyTabletWidth; + margin: $tinyTabletMargin; + } +} + +@media only screen and (min-width: variables.$computerBreakpoint) { + .ui.tiny.modal { + width: $tinyComputerWidth; + margin: $tinyComputerMargin; + } +} + +@media only screen and (min-width: variables.$largeMonitorBreakpoint) { + .ui.tiny.modal { + width: $tinyLargeMonitorWidth; + margin: $tinyLargeMonitorMargin; + } +} + +@media only screen and (min-width: variables.$widescreenMonitorBreakpoint) { + .ui.tiny.modal { + width: $tinyWidescreenMonitorWidth; + margin: $tinyWidescreenMonitorMargin; + } +} + +/* Small */ +.ui.small.modal>.header:not(.ui) { + font-size: $smallHeaderSize; +} + +/* Small Modal Width */ +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.small.modal { + width: $smallMobileWidth; + margin: $smallMobileMargin; + } +} + +@media only screen and (min-width: variables.$tabletBreakpoint) { + .ui.small.modal { + width: $smallTabletWidth; + margin: $smallTabletMargin; + } +} + +@media only screen and (min-width: variables.$computerBreakpoint) { + .ui.small.modal { + width: $smallComputerWidth; + margin: $smallComputerMargin; + } +} + +@media only screen and (min-width: variables.$largeMonitorBreakpoint) { + .ui.small.modal { + width: $smallLargeMonitorWidth; + margin: $smallLargeMonitorMargin; + } +} + +@media only screen and (min-width: variables.$widescreenMonitorBreakpoint) { + .ui.small.modal { + width: $smallWidescreenMonitorWidth; + margin: $smallWidescreenMonitorMargin; + } +} + +/* Large Modal Width */ +.ui.large.modal>.header { + font-size: $largeHeaderSize; +} + +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.large.modal { + width: $largeMobileWidth; + margin: $largeMobileMargin; + } +} + +@media only screen and (min-width: variables.$tabletBreakpoint) { + .ui.large.modal { + width: $largeTabletWidth; + margin: $largeTabletMargin; + } +} + +@media only screen and (min-width: variables.$computerBreakpoint) { + .ui.large.modal { + width: $largeComputerWidth; + margin: $largeComputerMargin; + } +} + +@media only screen and (min-width: variables.$largeMonitorBreakpoint) { + .ui.large.modal { + width: $largeLargeMonitorWidth; + margin: $largeLargeMonitorMargin; + } +} + +@media only screen and (min-width: variables.$widescreenMonitorBreakpoint) { + .ui.large.modal { + width: $largeWidescreenMonitorWidth; + margin: $largeWidescreenMonitorMargin; + } +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/placeholder.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/placeholder.scss new file mode 100644 index 00000000..b7a9d0ff --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/placeholder.scss @@ -0,0 +1,308 @@ +/*! + * # Semantic UI - Loader + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "colors"; + +$placeholderMaxWidth: 30rem; + +/* Key Content Sizing */ +$placeholderLineMargin: variables.$relative12px; +$placeholderHeaderLineHeight: variables.$relative9px; +$placeholderLineHeight: variables.$relative7px; +$placeholderParagraphLineHeight: $placeholderLineHeight; + +$placeholderSpacing: variables.$relative20px; + +/* Interval between consecutive placeholders */ +$placeholderAnimationInterval: 0.15s; + +/* Repeated Placeholder */ +$consecutivePlaceholderSpacing: 2rem; + +/* Image */ +$placeholderImageHeight: 100px; + +/* Header Image */ +$placeholderImageWidth: 3em; +$placeholderImageTextIndent: variables.$u10px; + +/* Paragraph */ +$placeholderHeaderLineOneOutdent: 20%; +$placeholderHeaderLineTwoOutdent: 60%; + +/* Variations */ +$placeholderFullLineOutdent: 0%; +$placeholderVeryLongLineOutdent: 10%; +$placeholderLongLineOutdent: 35%; +$placeholderMediumLineOutdent: 50%; +$placeholderShortLineOutdent: 65%; +$placeholderVeryShortLineOutdent: 80%; + + +$placeholderLineOneOutdent: $placeholderFullLineOutdent; +$placeholderLineTwoOutdent: $placeholderMediumLineOutdent; +$placeholderLineThreeOutdent: $placeholderVeryLongLineOutdent; +$placeholderLineFourOutdent: $placeholderLongLineOutdent; +$placeholderLineFiveOutdent: $placeholderShortLineOutdent; + + +/* Glow Gradient */ +$placeholderLoadingAnimationDuration: 2s; +$placeholderLoadingGradientWidth: 1200px; +$placeholderLoadingGradient: linear-gradient(to right, + rgba(0, 0, 0, 0.08) 0%, + rgba(0, 0, 0, 0.15) 15%, + rgba(0, 0, 0, 0.08) 30%); +$placeholderInvertedLoadingGradient: linear-gradient(to right, + rgba(255, 255, 255, 0.08) 0%, + rgba(255, 255, 255, 0.14) 15%, + rgba(255, 255, 255, 0.08) 30%); + +/*------------------- + Content + --------------------*/ + +.ui.placeholder { + position: static; + overflow: hidden; + animation: placeholderShimmer $placeholderLoadingAnimationDuration linear; + animation-iteration-count: infinite; + background-color: colors.$white; + background-image: $placeholderLoadingGradient; + background-size: $placeholderLoadingGradientWidth 100%; + max-width: $placeholderMaxWidth; +} + +@keyframes placeholderShimmer { + 0% { + background-position: -$placeholderLoadingGradientWidth 0; + } + + 100% { + background-position: $placeholderLoadingGradientWidth 0; + } +} + +.ui.placeholder+.ui.placeholder { + margin-top: $consecutivePlaceholderSpacing; +} + +.ui.placeholder+.ui.placeholder { + animation-delay: $placeholderAnimationInterval; +} + +.ui.placeholder+.ui.placeholder+.ui.placeholder { + animation-delay: ($placeholderAnimationInterval * 2); +} + +.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder { + animation-delay: ($placeholderAnimationInterval * 3); +} + +.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder { + animation-delay: ($placeholderAnimationInterval * 4); +} + +.ui.placeholder, +.ui.placeholder> :before, +.ui.placeholder .image.header:after, +.ui.placeholder .line, +.ui.placeholder .line:after { + background-color: colors.$white; +} + +/* Image */ +.ui.placeholder .image:not(.header):not(.ui) { + height: $placeholderImageHeight; +} + +.ui.placeholder .square.image:not(.header) { + height: 0px; + overflow: hidden; + /* 1/1 aspect ratio */ + padding-top: 100%; +} + +.ui.placeholder .rectangular.image:not(.header) { + height: 0px; + overflow: hidden; + /* 4/3 aspect ratio */ + padding-top: 75%; +} + +/* Lines */ +.ui.placeholder .line { + position: relative; + height: $placeholderLineMargin; +} + +.ui.placeholder .line:before, +.ui.placeholder .line:after { + top: 100%; + position: absolute; + content: ""; + background-color: inherit; +} + +.ui.placeholder .line:before { + left: 0px; +} + +.ui.placeholder .line:after { + right: 0px; +} + +/* Any Lines */ +.ui.placeholder .line { + margin-bottom: $placeholderLineHeight; +} + +.ui.placeholder .line:before, +.ui.placeholder .line:after { + height: $placeholderLineHeight; +} + +.ui.placeholder .line:not(:first-child) { + margin-top: $placeholderLineHeight; +} + +/* Header Image + 2 Lines */ +.ui.placeholder .header { + position: relative; + overflow: hidden; +} + +/* Line Outdent */ +.ui.placeholder .line:nth-child(1):after { + width: $placeholderLineOneOutdent; +} + +.ui.placeholder .line:nth-child(2):after { + width: $placeholderLineTwoOutdent; +} + +.ui.placeholder .line:nth-child(3):after { + width: $placeholderLineThreeOutdent; +} + +.ui.placeholder .line:nth-child(4):after { + width: $placeholderLineFourOutdent; +} + +.ui.placeholder .line:nth-child(5):after { + width: $placeholderLineFiveOutdent; +} + +/* Header Line 1 & 2*/ +.ui.placeholder .header .line { + margin-bottom: $placeholderHeaderLineHeight; +} + +.ui.placeholder .header .line:before, +.ui.placeholder .header .line:after { + height: $placeholderHeaderLineHeight; +} + +.ui.placeholder .header .line:not(:first-child) { + margin-top: $placeholderHeaderLineHeight; +} + +.ui.placeholder .header .line:after { + width: $placeholderHeaderLineOneOutdent; +} + +.ui.placeholder .header .line:nth-child(2):after { + width: $placeholderHeaderLineTwoOutdent; +} + +/* Image Header */ +.ui.placeholder .image.header .line { + margin-left: $placeholderImageWidth; +} + +.ui.placeholder .image.header .line:before { + width: $placeholderImageTextIndent; +} + +.ui.placeholder .image.header:after { + display: block; + height: $placeholderLineMargin; + content: ""; + margin-left: $placeholderImageWidth; +} + +/* Spacing */ +.ui.placeholder .image .line:first-child, +.ui.placeholder .paragraph .line:first-child, +.ui.placeholder .header .line:first-child { + height: 0.01px; +} + +.ui.placeholder .image:not(:first-child):before, +.ui.placeholder .paragraph:not(:first-child):before, +.ui.placeholder .header:not(:first-child):before { + height: $placeholderSpacing; + content: ""; + display: block; +} + +/* Inverted Content Loader */ +.ui.inverted.placeholder { + background-image: $placeholderInvertedLoadingGradient; +} + +.ui.inverted.placeholder, +.ui.inverted.placeholder> :before, +.ui.inverted.placeholder .image.header:after, +.ui.inverted.placeholder .line, +.ui.inverted.placeholder .line:after { + background-color: colors.$black; +} + +/******************************* + Variations + *******************************/ + +/*------------------- + Sizes + --------------------*/ + +.ui.placeholder .full.line.line.line:after { + width: $placeholderFullLineOutdent; +} + +.ui.placeholder .very.long.line.line.line:after { + width: $placeholderVeryLongLineOutdent; +} + +.ui.placeholder .long.line.line.line:after { + width: $placeholderLongLineOutdent; +} + +.ui.placeholder .medium.line.line.line:after { + width: $placeholderMediumLineOutdent; +} + +.ui.placeholder .short.line.line.line:after { + width: $placeholderShortLineOutdent; +} + +.ui.placeholder .very.short.line.line.line:after { + width: $placeholderVeryShortLineOutdent; +} + +/*------------------- + Fluid + --------------------*/ + +.ui.fluid.placeholder { + max-width: none; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/popup.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/popup.scss new file mode 100644 index 00000000..2fbd00be --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/popup.scss @@ -0,0 +1,888 @@ +/*! + * # Semantic UI - Popup + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + + @use "master.variables"as variables; + @use "colors"; + + /******************************* + Popup + *******************************/ + + /*------------------- + Element + --------------------*/ + + $zIndex: 1900; + $background: colors.$white; + + $maxWidth: 250px; + $borderColor: colors.$solidBorderColor; + $borderWidth: 1px; + $boxShadow: variables.$floatingShadow; + $color: colors.$textColor; + + $verticalPadding: 0.833em; + $horizontalPadding: 1em; + $fontWeight: variables.$normal; + $fontStyle: variables.$normal; + $borderRadius: variables.$defaultBorderRadius; + + /*------------------- + Parts + --------------------*/ + + /* Placement */ + $arrowSize: variables.$relative10px; + $arrowWidth: 1em; + $arrowDistanceFromEdge: 1em; + $boxArrowOffset: 0em; + $popupDistanceAway: $arrowSize; + + + /* Header */ + $headerFontFamily: variables.$headerFont; + $headerFontWeight: variables.$bold; + $headerFontSize: variables.$relativeLarge; + $headerDistance: variables.$relative7px; + $headerLineHeight: 1.2; + + /* Content Border */ + $border: $borderWidth solid $borderColor; + + /* Arrow */ + $arrowBackground: $background; + $arrowZIndex: 2; + $arrowJitter: 0.05em; + $arrowOffset: -($arrowSize * 0.5)+$arrowJitter; + + $arrowStroke: $borderWidth; + $arrowColor: darken($borderColor, 10); + + /* Arrow color by position */ + $arrowTopBackground: $arrowBackground; + $arrowCenterBackground: $arrowBackground; + $arrowBottomBackground: $arrowBackground; + + $arrowBoxShadow: $arrowStroke $arrowStroke 0px 0px $arrowColor; + $leftArrowBoxShadow: $arrowStroke -$arrowStroke 0px 0px $arrowColor; + $rightArrowBoxShadow: -$arrowStroke $arrowStroke 0px 0px $arrowColor; + $bottomArrowBoxShadow: -$arrowStroke -$arrowStroke 0px 0px $arrowColor; + + /*------------------- + Types + --------------------*/ + + /* Tooltip */ + $tooltipBackground: $background; + $tooltipBorderRadius: $borderRadius; + $tooltipPadding: $verticalPadding $horizontalPadding; + $tooltipFontWeight: $fontWeight; + $tooltipFontStyle: $fontStyle; + $tooltipColor: $color; + $tooltipBorder: $border; + $tooltipBoxShadow: $boxShadow; + $tooltipMaxWidth: none; + $tooltipFontSize: variables.$medium; + $tooltipLineHeight: variables.$lineHeight; + $tooltipDistanceAway: variables.$relative7px; + $tooltipZIndex: 1; + $tooltipDuration: variables.$defaultDuration; + $tooltipEasing: variables.$defaultEasing; + + /* Inverted */ + $invertedBackground: colors.$black; + $invertedColor: colors.$white; + $invertedBorder: none; + $invertedBoxShadow: none; + + $invertedHeaderBackground: none; + $invertedHeaderColor: colors.$white; + $invertedArrowColor: $invertedBackground; + + /* Arrow color by position */ + $invertedArrowTopBackground: $invertedBackground; + $invertedArrowCenterBackground: $invertedBackground; + $invertedArrowBottomBackground: $invertedBackground; + + /* Inverted */ + $tooltipInvertedBackground: $invertedBackground; + $tooltipInvertedColor: $invertedColor; + $tooltipInvertedBorder: $invertedBorder; + $tooltipInvertedBoxShadow: $invertedBoxShadow; + $tooltipInvertedHeaderBackground: $invertedHeaderBackground; + $tooltipInvertedHeaderColor: $invertedHeaderColor; + + /* Arrow */ + $tooltipArrowVerticalOffset: -(variables.$u2px); + $tooltipArrowHorizontalOffset: -(variables.$u1px); + $tooltipArrowBoxShadow: $arrowBoxShadow; + $tooltipArrowBackground: $arrowBackground; + $tooltipArrowTopBackground: $arrowTopBackground; + $tooltipArrowCenterBackground: $arrowCenterBackground; + $tooltipArrowBottomBackground: $arrowBottomBackground; + + /*------------------- + Coupling + --------------------*/ + + /* Grid Inside Popup */ + $nestedGridMargin: -0.7rem -0.875rem; + /* (padding * variables.$medium) */ + $nestedGridWidth:calc(100% + 1.75rem); + + /*------------------- + States + --------------------*/ + + $loadingZIndex: -1; + + /*------------------- + Variations + --------------------*/ + + /* Wide */ + $wideWidth: 350px; + $veryWideWidth: 550px; + + + /******************************* + Popup + *******************************/ + + .ui.popup { + display: none; + position: absolute; + top: 0px; + right: 0px; + + /* Fixes content being squished when inline (moz only) */ + min-width: min-content; + z-index: $zIndex; + + border: $border; + line-height: variables.$lineHeight; + max-width: $maxWidth; + background: $background; + + padding: $verticalPadding $horizontalPadding; + font-weight: $fontWeight; + font-style: $fontStyle; + color: $color; + + border-radius: $borderRadius; + box-shadow: $boxShadow; + } + + .ui.popup>.header { + padding: 0em; + + font-family: variables.$headerFont; + font-size: $headerFontSize; + line-height: $headerLineHeight; + font-weight: $headerFontWeight; + } + + .ui.popup>.header+.content { + padding-top: $headerDistance; + } + + .ui.popup:before { + position: absolute; + content: ""; + width: $arrowSize; + height: $arrowSize; + + background: $arrowBackground; + transform: rotate(45deg); + + z-index: $arrowZIndex; + box-shadow: $arrowBoxShadow; + } + + /******************************* + Types + *******************************/ + + /*-------------- + Tooltip + ---------------*/ + + /* Content */ + [data-tooltip] { + position: relative; + } + + /* Arrow */ + [data-tooltip]:before { + pointer-events: none; + position: absolute; + content: ""; + font-size: variables.$medium; + width: $arrowSize; + height: $arrowSize; + + background: $tooltipArrowBackground; + transform: rotate(45deg); + + z-index: $arrowZIndex; + box-shadow: $tooltipArrowBoxShadow; + } + + /* Popup */ + [data-tooltip]:after { + pointer-events: none; + content: attr(data-tooltip); + position: absolute; + text-transform: none; + text-align: left; + white-space: nowrap; + + font-size: $tooltipFontSize; + + border: $tooltipBorder; + line-height: $tooltipLineHeight; + max-width: $tooltipMaxWidth; + background: $tooltipBackground; + + padding: $tooltipPadding; + font-weight: $tooltipFontWeight; + font-style: $tooltipFontStyle; + color: $tooltipColor; + + border-radius: $tooltipBorderRadius; + box-shadow: $tooltipBoxShadow; + z-index: $tooltipZIndex; + } + + /* Default Position (Top Center) */ + [data-tooltip]:not([data-position]):before { + top: auto; + right: auto; + bottom: 100%; + left: 50%; + background: $tooltipArrowBottomBackground; + margin-left: $tooltipArrowHorizontalOffset; + margin-bottom: -$tooltipArrowVerticalOffset; + } + + [data-tooltip]:not([data-position]):after { + left: 50%; + transform: translateX(-50%); + bottom: 100%; + margin-bottom: $tooltipDistanceAway; + } + + /* Animation */ + [data-tooltip]:before, + [data-tooltip]:after { + pointer-events: none; + visibility: hidden; + } + + [data-tooltip]:before { + opacity: 0; + transform: rotate(45deg) scale(0) !important; + transform-origin: center top; + transition: all $tooltipDuration $tooltipEasing; + } + + [data-tooltip]:after { + opacity: 1; + transform-origin: center bottom; + transition: all $tooltipDuration $tooltipEasing; + } + + [data-tooltip]:hover:before, + [data-tooltip]:hover:after { + visibility: visible; + pointer-events: auto; + } + + [data-tooltip]:hover:before { + transform: rotate(45deg) scale(1) !important; + opacity: 1; + } + + /* Animation Position */ + [data-tooltip]:after, + [data-tooltip][data-position="top center"]:after, + [data-tooltip][data-position="bottom center"]:after { + transform: translateX(-50%) scale(0) !important; + } + + [data-tooltip]:hover:after, + [data-tooltip][data-position="bottom center"]:hover:after { + transform: translateX(-50%) scale(1) !important; + } + + [data-tooltip][data-position="left center"]:after, + [data-tooltip][data-position="right center"]:after { + transform: translateY(-50%) scale(0) !important; + } + + [data-tooltip][data-position="left center"]:hover:after, + [data-tooltip][data-position="right center"]:hover:after { + transform: translateY(-50%) scale(1) !important; + } + + [data-tooltip][data-position="top left"]:after, + [data-tooltip][data-position="top right"]:after, + [data-tooltip][data-position="bottom left"]:after, + [data-tooltip][data-position="bottom right"]:after { + transform: scale(0) !important; + } + + [data-tooltip][data-position="top left"]:hover:after, + [data-tooltip][data-position="top right"]:hover:after, + [data-tooltip][data-position="bottom left"]:hover:after, + [data-tooltip][data-position="bottom right"]:hover:after { + transform: scale(1) !important; + } + + /*-------------- + Inverted + ---------------*/ + + /* Arrow */ + [data-tooltip][data-inverted]:before { + box-shadow: none !important; + } + + /* Arrow Position */ + [data-tooltip][data-inverted]:before { + background: $invertedArrowBottomBackground; + } + + /* Popup */ + [data-tooltip][data-inverted]:after { + background: $tooltipInvertedBackground; + color: $tooltipInvertedColor; + border: $tooltipInvertedBorder; + box-shadow: $tooltipInvertedBoxShadow; + } + + [data-tooltip][data-inverted]:after .header { + background-color: $tooltipInvertedHeaderBackground; + color: $tooltipInvertedHeaderColor; + } + + /*-------------- + Position + ---------------*/ + + /* Top Center */ + [data-position="top center"][data-tooltip]:after { + top: auto; + right: auto; + left: 50%; + bottom: 100%; + transform: translateX(-50%); + margin-bottom: $tooltipDistanceAway; + } + + [data-position="top center"][data-tooltip]:before { + top: auto; + right: auto; + bottom: 100%; + left: 50%; + background: $tooltipArrowTopBackground; + margin-left: $tooltipArrowHorizontalOffset; + margin-bottom: -$tooltipArrowVerticalOffset; + } + + /* Top Left */ + [data-position="top left"][data-tooltip]:after { + top: auto; + right: auto; + left: 0; + bottom: 100%; + margin-bottom: $tooltipDistanceAway; + } + + [data-position="top left"][data-tooltip]:before { + top: auto; + right: auto; + bottom: 100%; + left: $arrowDistanceFromEdge; + margin-left: $tooltipArrowHorizontalOffset; + margin-bottom: -$tooltipArrowVerticalOffset; + } + + /* Top Right */ + [data-position="top right"][data-tooltip]:after { + top: auto; + left: auto; + right: 0; + bottom: 100%; + margin-bottom: $tooltipDistanceAway; + } + + [data-position="top right"][data-tooltip]:before { + top: auto; + left: auto; + bottom: 100%; + right: $arrowDistanceFromEdge; + margin-left: $tooltipArrowHorizontalOffset; + margin-bottom: -$tooltipArrowVerticalOffset; + } + + /* Bottom Center */ + [data-position="bottom center"][data-tooltip]:after { + bottom: auto; + right: auto; + left: 50%; + top: 100%; + transform: translateX(-50%); + margin-top: $tooltipDistanceAway; + } + + [data-position="bottom center"][data-tooltip]:before { + bottom: auto; + right: auto; + top: 100%; + left: 50%; + margin-left: $tooltipArrowHorizontalOffset; + margin-top: -$tooltipArrowVerticalOffset; + } + + /* Bottom Left */ + [data-position="bottom left"][data-tooltip]:after { + left: 0; + top: 100%; + margin-top: $tooltipDistanceAway; + } + + [data-position="bottom left"][data-tooltip]:before { + bottom: auto; + right: auto; + top: 100%; + left: $arrowDistanceFromEdge; + margin-left: $tooltipArrowHorizontalOffset; + margin-top: -$tooltipArrowVerticalOffset; + } + + /* Bottom Right */ + [data-position="bottom right"][data-tooltip]:after { + right: 0; + top: 100%; + margin-top: $tooltipDistanceAway; + } + + [data-position="bottom right"][data-tooltip]:before { + bottom: auto; + left: auto; + top: 100%; + right: $arrowDistanceFromEdge; + margin-left: $tooltipArrowVerticalOffset; + margin-top: -$tooltipArrowHorizontalOffset; + } + + /* Left Center */ + [data-position="left center"][data-tooltip]:after { + right: 100%; + top: 50%; + margin-right: $tooltipDistanceAway; + transform: translateY(-50%); + } + + [data-position="left center"][data-tooltip]:before { + right: 100%; + top: 50%; + margin-top: $tooltipArrowVerticalOffset; + margin-right: $tooltipArrowHorizontalOffset; + } + + /* Right Center */ + [data-position="right center"][data-tooltip]:after { + left: 100%; + top: 50%; + margin-left: $tooltipDistanceAway; + transform: translateY(-50%); + } + + [data-position="right center"][data-tooltip]:before { + left: 100%; + top: 50%; + margin-top: $tooltipArrowHorizontalOffset; + margin-left: -$tooltipArrowVerticalOffset; + } + + /* Arrow */ + [data-position~="bottom"][data-tooltip]:before { + background: $arrowTopBackground; + box-shadow: $bottomArrowBoxShadow; + } + + [data-position="left center"][data-tooltip]:before { + background: $arrowCenterBackground; + box-shadow: $leftArrowBoxShadow; + } + + [data-position="right center"][data-tooltip]:before { + background: $arrowCenterBackground; + box-shadow: $rightArrowBoxShadow; + } + + [data-position~="top"][data-tooltip]:before { + background: $arrowBottomBackground; + } + + /* Inverted Arrow Color */ + [data-inverted][data-position~="bottom"][data-tooltip]:before { + background: $invertedArrowTopBackground; + box-shadow: $bottomArrowBoxShadow; + } + + [data-inverted][data-position="left center"][data-tooltip]:before { + background: $invertedArrowCenterBackground; + box-shadow: $leftArrowBoxShadow; + } + + [data-inverted][data-position="right center"][data-tooltip]:before { + background: $invertedArrowCenterBackground; + box-shadow: $rightArrowBoxShadow; + } + + [data-inverted][data-position~="top"][data-tooltip]:before { + background: $invertedArrowBottomBackground; + } + + [data-position~="bottom"][data-tooltip]:before { + transform-origin: center bottom; + } + + [data-position~="bottom"][data-tooltip]:after { + transform-origin: center top; + } + + [data-position="left center"][data-tooltip]:before { + transform-origin: top center; + } + + [data-position="left center"][data-tooltip]:after { + transform-origin: right center; + } + + [data-position="right center"][data-tooltip]:before { + transform-origin: right center; + } + + [data-position="right center"][data-tooltip]:after { + transform-origin: left center; + } + + /*-------------- + Spacing + ---------------*/ + + .ui.popup { + margin: 0em; + } + + /* Extending from Top */ + .ui.top.popup { + margin: 0em 0em $popupDistanceAway; + } + + .ui.top.left.popup { + transform-origin: left bottom; + } + + .ui.top.center.popup { + transform-origin: center bottom; + } + + .ui.top.right.popup { + transform-origin: right bottom; + } + + /* Extending from Vertical Center */ + .ui.left.center.popup { + margin: 0em $popupDistanceAway 0em 0em; + transform-origin: right 50%; + } + + .ui.right.center.popup { + margin: 0em 0em 0em $popupDistanceAway; + transform-origin: left 50%; + } + + /* Extending from Bottom */ + .ui.bottom.popup { + margin: $popupDistanceAway 0em 0em; + } + + .ui.bottom.left.popup { + transform-origin: left top; + } + + .ui.bottom.center.popup { + transform-origin: center top; + } + + .ui.bottom.right.popup { + transform-origin: right top; + } + + /*-------------- + Pointer + ---------------*/ + + /*--- Below ---*/ + .ui.bottom.center.popup:before { + margin-left: $arrowOffset; + top: $arrowOffset; + left: 50%; + right: auto; + bottom: auto; + box-shadow: $bottomArrowBoxShadow; + } + + .ui.bottom.left.popup { + margin-left: $boxArrowOffset; + } + + /*rtl:rename*/ + .ui.bottom.left.popup:before { + top: $arrowOffset; + left: $arrowDistanceFromEdge; + right: auto; + bottom: auto; + margin-left: 0em; + box-shadow: $bottomArrowBoxShadow; + } + + .ui.bottom.right.popup { + margin-right: $boxArrowOffset; + } + + /*rtl:rename*/ + .ui.bottom.right.popup:before { + top: $arrowOffset; + right: $arrowDistanceFromEdge; + bottom: auto; + left: auto; + margin-left: 0em; + box-shadow: $bottomArrowBoxShadow; + } + + /*--- Above ---*/ + .ui.top.center.popup:before { + top: auto; + right: auto; + bottom: $arrowOffset; + left: 50%; + margin-left: $arrowOffset; + } + + .ui.top.left.popup { + margin-left: $boxArrowOffset; + } + + /*rtl:rename*/ + .ui.top.left.popup:before { + bottom: $arrowOffset; + left: $arrowDistanceFromEdge; + top: auto; + right: auto; + margin-left: 0em; + } + + .ui.top.right.popup { + margin-right: $boxArrowOffset; + } + + /*rtl:rename*/ + .ui.top.right.popup:before { + bottom: $arrowOffset; + right: $arrowDistanceFromEdge; + top: auto; + left: auto; + margin-left: 0em; + } + + /*--- Left Center ---*/ + /*rtl:rename*/ + .ui.left.center.popup:before { + top: 50%; + right: $arrowOffset; + bottom: auto; + left: auto; + margin-top: $arrowOffset; + box-shadow: $leftArrowBoxShadow; + } + + /*--- Right Center ---*/ + /*rtl:rename*/ + .ui.right.center.popup:before { + top: 50%; + left: $arrowOffset; + bottom: auto; + right: auto; + margin-top: $arrowOffset; + box-shadow: $rightArrowBoxShadow; + } + + /* Arrow Color By Location */ + .ui.bottom.popup:before { + background: $arrowTopBackground; + } + + .ui.right.center.popup:before, + .ui.left.center.popup:before { + background: $arrowCenterBackground; + } + + .ui.top.popup:before { + background: $arrowBottomBackground; + } + + /* Inverted Arrow Color */ + .ui.inverted.bottom.popup:before { + background: $invertedArrowTopBackground; + } + + .ui.inverted.right.center.popup:before, + .ui.inverted.left.center.popup:before { + background: $invertedArrowCenterBackground; + } + + .ui.inverted.top.popup:before { + background: $invertedArrowBottomBackground; + } + + /******************************* + Coupling + *******************************/ + + /* Immediate Nested Grid */ + .ui.popup>.ui.grid:not(.padded) { + width: $nestedGridWidth; + margin: $nestedGridMargin; + } + + /******************************* + States + *******************************/ + + .ui.loading.popup { + display: block; + visibility: hidden; + z-index: $loadingZIndex; + } + + .ui.animating.popup, + .ui.visible.popup { + display: block; + } + + .ui.visible.popup { + transform: translateZ(0px); + backface-visibility: hidden; + } + + /******************************* + Variations + *******************************/ + + /*-------------- + Basic + ---------------*/ + + .ui.basic.popup:before { + display: none; + } + + /*-------------- + Wide + ---------------*/ + + .ui.wide.popup { + max-width: $wideWidth; + } + + .ui[class*="very wide"].popup { + max-width: $veryWideWidth; + } + + @media only screen and (max-width: variables.$largestMobileScreen) { + + .ui.wide.popup, + .ui[class*="very wide"].popup { + max-width: $maxWidth; + } + } + + /*-------------- + Fluid + ---------------*/ + + .ui.fluid.popup { + width: 100%; + max-width: none; + } + + /*-------------- + Colors + ---------------*/ + + /* Inverted colors */ + .ui.inverted.popup { + background: $invertedBackground; + color: $invertedColor; + border: $invertedBorder; + box-shadow: $invertedBoxShadow; + } + + .ui.inverted.popup .header { + background-color: $invertedHeaderBackground; + color: $invertedHeaderColor; + } + + .ui.inverted.popup:before { + background-color: $invertedArrowColor; + box-shadow: none !important; + } + + /*-------------- + Flowing + ---------------*/ + + .ui.flowing.popup { + max-width: none; + } + + /*-------------- + Sizes + ---------------*/ + + .ui.mini.popup { + font-size: variables.$mini; + } + + .ui.tiny.popup { + font-size: variables.$tiny; + } + + .ui.small.popup { + font-size: variables.$small; + } + + .ui.popup { + font-size: variables.$medium; + } + + .ui.large.popup { + font-size: variables.$large; + } + + .ui.huge.popup { + font-size: variables.$huge; + } diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/progress.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/progress.scss new file mode 100644 index 00000000..1359e23b --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/progress.scss @@ -0,0 +1,661 @@ +/*! + * # Semantic UI - Progress Bar + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "colors"; + +/******************************* + Progress + *******************************/ + +/*------------------- + Element + --------------------*/ + +/* Label */ +$labelWidth: 100%; +$labelHeight: 1.5em; +$labelSize: 1em; +$labelPosition: absolute; +$labelTop: 100%; +$labelLeft: 0%; +$labelRight: auto; +$labelBottom: auto; +$labelOffset: ($labelHeight - 1.3em); +$labelColor: colors.$textColor; +$labelTextShadow: none; +$labelFontWeight: variables.$bold; +$labelTextAlign: center; +$labelTransition: color 0.4s variables.$defaultEasing; + +$verticalSpacing: 1em; +$margin: $verticalSpacing 0em ($labelHeight + $verticalSpacing); +$firstMargin: 0em 0em ($labelHeight + $verticalSpacing); +$lastMargin: 0em 0em ($labelHeight); + +$background: #f0f0e7; //$strongTransparentBlack; +$border: none; +$boxShadow: none; +$padding: 0em; +$borderRadius: 0; //$defaultBorderRadius; + +/* Bar */ +$barPosition: relative; +$barHeight: 1.75em; +$barBackground: #888888; +$barBorderRadius: 0; //$borderRadius; +$barTransitionEasing: variables.$defaultEasing; +$barTransitionDuration: variables.$defaultDuration; +$barTransition: width $barTransitionDuration $barTransitionEasing, +background-color $barTransitionDuration $barTransitionEasing; +$barInitialWidth: 0%; +$barMinWidth: 2em; + +/* Progress Bar Label */ +$progressWidth: auto; +$progressSize: variables.$relativeSmall; +$progressPosition: absolute; +$progressTop: 50%; +$progressRight: 0.5em; +$progressLeft: auto; +$progressBottom: auto; +$progressOffset: -0.5em; +$progressColor: colors.$invertedLightTextColor; +$progressTextShadow: none; +$progressFontWeight: normal; +$progressTextAlign: left; + + +/*------------------- + Types + --------------------*/ + +$indicatingFirstColor: #D95C5C; +$indicatingSecondColor: #EFBC72; +$indicatingThirdColor: #E6BB48; +$indicatingFourthColor: #DDC928; +$indicatingFifthColor: #B4D95C; +$indicatingSixthColor: #66DA81; + +$indicatingFirstLabelColor: colors.$textColor; +$indicatingSecondLabelColor: colors.$textColor; +$indicatingThirdLabelColor: colors.$textColor; +$indicatingFourthLabelColor: colors.$textColor; +$indicatingFifthLabelColor: colors.$textColor; +$indicatingSixthLabelColor: colors.$textColor; + +/*------------------- + States + --------------------*/ + +/* Active */ +$activePulseColor: colors.$white; +$activePulseMaxOpacity: 0.3; +$activePulseDuration: 2s; +$activeMinWidth: $barMinWidth; + + +/*------------------- + Variations + --------------------*/ + +/* Attached */ +$attachedBackground: transparent; +$attachedHeight: 0.2rem; +$attachedBorderRadius: 0; // $borderRadius; + +/* Inverted */ +$invertedBackground: colors.$transparentWhite; +$invertedBorder: none; +$invertedBarBackground: $barBackground; +$invertedProgressColor: colors.$offWhite; +$invertedLabelColor: colors.$white; + +/* Sizing */ +$tinyBarHeight: 0.5em; +$smallBarHeight: 1em; +$largeBarHeight: 2.5em; +$bigBarHeight: 3.5em; + + +/******************************* + Progress + *******************************/ + +.ui.progress { + position: relative; + display: block; + max-width: 100%; + border: $border; + margin: $margin; + box-shadow: $boxShadow; + background: $background; + padding: $padding; + border-radius: $borderRadius; +} + +.ui.progress:first-child { + margin: $firstMargin; +} + +.ui.progress:last-child { + margin: $lastMargin; +} + +/******************************* + Content + *******************************/ + +/* Activity Bar */ +.ui.progress .bar { + display: block; + line-height: 1; + position: $barPosition; + width: $barInitialWidth; + min-width: $barMinWidth; + background: $barBackground; + border-radius: $barBorderRadius; + transition: $barTransition; +} + +/* Percent Complete */ +.ui.progress .bar>.progress { + white-space: nowrap; + position: $progressPosition; + width: $progressWidth; + font-size: $progressSize; + top: $progressTop; + right: $progressRight; + left: $progressLeft; + bottom: $progressBottom; + color: $progressColor; + text-shadow: $progressTextShadow; + margin-top: $progressOffset; + font-weight: $progressFontWeight; + text-align: $progressTextAlign; +} + +/* Adjust Percetnage */ +.ui.progress>.percentage { + float: right; + font-size: 0.8rem; + margin-top: -3.5px; + margin-right: 5px; +} + +/* Label */ +.ui.progress>.label { + position: absolute; + width: $labelWidth; + font-size: $labelSize; + top: $labelTop; + right: $labelRight; + left: $labelLeft; + bottom: $labelBottom; + color: $labelColor; + font-weight: $labelFontWeight; + text-shadow: $labelTextShadow; + margin-top: $labelOffset; + text-align: $labelTextAlign; + transition: $labelTransition; +} + +/******************************* + Types + *******************************/ + +/* Indicating */ +.ui.indicating.progress[data-percent^="1"] .bar, +.ui.indicating.progress[data-percent^="2"] .bar { + background-color: $indicatingFirstColor; +} + +.ui.indicating.progress[data-percent^="3"] .bar { + background-color: $indicatingSecondColor; +} + +.ui.indicating.progress[data-percent^="4"] .bar, +.ui.indicating.progress[data-percent^="5"] .bar { + background-color: $indicatingThirdColor; +} + +.ui.indicating.progress[data-percent^="6"] .bar { + background-color: $indicatingFourthColor; +} + +.ui.indicating.progress[data-percent^="7"] .bar, +.ui.indicating.progress[data-percent^="8"] .bar { + background-color: $indicatingFifthColor; +} + +.ui.indicating.progress[data-percent^="9"] .bar, +.ui.indicating.progress[data-percent^="100"] .bar { + background-color: $indicatingSixthColor; +} + +/* Indicating Label */ +.ui.indicating.progress[data-percent^="1"] .label, +.ui.indicating.progress[data-percent^="2"] .label { + color: $indicatingFirstLabelColor; +} + +.ui.indicating.progress[data-percent^="3"] .label { + color: $indicatingSecondLabelColor; +} + +.ui.indicating.progress[data-percent^="4"] .label, +.ui.indicating.progress[data-percent^="5"] .label { + color: $indicatingThirdLabelColor; +} + +.ui.indicating.progress[data-percent^="6"] .label { + color: $indicatingFourthLabelColor; +} + +.ui.indicating.progress[data-percent^="7"] .label, +.ui.indicating.progress[data-percent^="8"] .label { + color: $indicatingFifthLabelColor; +} + +.ui.indicating.progress[data-percent^="9"] .label, +.ui.indicating.progress[data-percent^="100"] .label { + color: $indicatingSixthLabelColor; +} + +/* Single Digits */ +.ui.indicating.progress[data-percent="1"] .bar, +.ui.indicating.progress[data-percent="2"] .bar, +.ui.indicating.progress[data-percent="3"] .bar, +.ui.indicating.progress[data-percent="4"] .bar, +.ui.indicating.progress[data-percent="5"] .bar, +.ui.indicating.progress[data-percent="6"] .bar, +.ui.indicating.progress[data-percent="7"] .bar, +.ui.indicating.progress[data-percent="8"] .bar, +.ui.indicating.progress[data-percent="9"] .bar { + background-color: $indicatingFirstColor; +} + +.ui.indicating.progress[data-percent="1"] .label, +.ui.indicating.progress[data-percent="2"] .label, +.ui.indicating.progress[data-percent="3"] .label, +.ui.indicating.progress[data-percent="4"] .label, +.ui.indicating.progress[data-percent="5"] .label, +.ui.indicating.progress[data-percent="6"] .label, +.ui.indicating.progress[data-percent="7"] .label, +.ui.indicating.progress[data-percent="8"] .label, +.ui.indicating.progress[data-percent="9"] .label { + color: $indicatingFirstLabelColor; +} + +/* Indicating Success */ +.ui.indicating.progress.success .label { + color: colors.$successHeaderColor; +} + +/******************************* + States + *******************************/ + +/*-------------- + Success + ---------------*/ + +.ui.progress.success .bar { + background-color: colors.$successColor !important; +} + +.ui.progress.success .bar, +.ui.progress.success .bar::after { + animation: none !important; +} + +.ui.progress.success>.label { + color: colors.$successHeaderColor; +} + +/*-------------- + Warning + ---------------*/ + +.ui.progress.warning .bar { + background-color: colors.$warningColor !important; +} + +.ui.progress.warning .bar, +.ui.progress.warning .bar::after { + animation: none !important; +} + +.ui.progress.warning>.label { + color: colors.$warningHeaderColor; +} + +/*-------------- + Error + ---------------*/ + +.ui.progress.error .bar { + background-color: colors.$errorColor !important; +} + +.ui.progress.error .bar, +.ui.progress.error .bar::after { + animation: none !important; +} + +.ui.progress.error>.label { + color: colors.$errorHeaderColor; +} + +/*-------------- + Active + ---------------*/ + +.ui.active.progress .bar { + position: relative; + min-width: $activeMinWidth; +} + +.ui.active.progress .bar::after { + content: ""; + opacity: 0; + + position: absolute; + top: 0px; + left: 0px; + right: 0px; + bottom: 0px; + background: $activePulseColor; + + border-radius: $barBorderRadius; + + animation: progress-active $activePulseDuration variables.$defaultEasing infinite; +} + +@keyframes progress-active { + 0% { + opacity: $activePulseMaxOpacity; + width: 0; + } + + 90% {} + + 100% { + opacity: 0; + width: 100%; + } +} + +/*-------------- + Disabled + ---------------*/ + +.ui.disabled.progress { + opacity: 0.35; +} + +.ui.disabled.progress .bar, +.ui.disabled.progress .bar::after { + animation: none !important; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Inverted + ---------------*/ + +.ui.inverted.progress { + background: $invertedBackground; + border: $invertedBorder; +} + +.ui.inverted.progress .bar { + background: $invertedBarBackground; +} + +.ui.inverted.progress .bar>.progress { + color: $invertedProgressColor; +} + +.ui.inverted.progress>.label { + color: $invertedLabelColor; +} + +.ui.inverted.progress.success>.label { + color: colors.$successColor; +} + +.ui.inverted.progress.warning>.label { + color: colors.$warningColor; +} + +.ui.inverted.progress.error>.label { + color: colors.$errorColor; +} + +/*-------------- + Attached + ---------------*/ + +/* bottom attached */ +.ui.progress.attached { + background: $attachedBackground; + position: relative; + border: none; + margin: 0em; +} + +.ui.progress.attached, +.ui.progress.attached .bar { + display: block; + height: $attachedHeight; + padding: 0px; + overflow: hidden; + border-radius: 0em 0em $attachedBorderRadius $attachedBorderRadius; +} + +.ui.progress.attached .bar { + border-radius: 0em; +} + +/* top attached */ +.ui.progress.top.attached, +.ui.progress.top.attached .bar { + top: 0px; + border-radius: $attachedBorderRadius $attachedBorderRadius 0em 0em; +} + +.ui.progress.top.attached .bar { + border-radius: 0em; +} + +/* Coupling */ +.ui.segment>.ui.attached.progress, +.ui.card>.ui.attached.progress { + position: absolute; + top: auto; + left: 0; + bottom: 100%; + width: 100%; +} + +.ui.segment>.ui.bottom.attached.progress, +.ui.card>.ui.bottom.attached.progress { + top: 100%; + bottom: auto; +} + +/*-------------- + Colors + ---------------*/ + +/* Red */ +.ui.red.progress .bar { + background-color: colors.$red; +} + +.ui.red.inverted.progress .bar { + background-color: colors.$lightRed; +} + +/* Orange */ +.ui.orange.progress .bar { + background-color: colors.$orange; +} + +.ui.orange.inverted.progress .bar { + background-color: colors.$lightOrange; +} + +/* Yellow */ +.ui.yellow.progress .bar { + background-color: colors.$yellow; +} + +.ui.yellow.inverted.progress .bar { + background-color: colors.$lightYellow; +} + +/* Olive */ +.ui.olive.progress .bar { + background-color: colors.$olive; +} + +.ui.olive.inverted.progress .bar { + background-color: colors.$lightOlive; +} + +/* Green */ +.ui.green.progress .bar { + background-color: colors.$green; +} + +.ui.green.inverted.progress .bar { + background-color: colors.$lightGreen; +} + +/* Teal */ +.ui.teal.progress .bar { + background-color: colors.$teal; +} + +.ui.teal.inverted.progress .bar { + background-color: colors.$lightTeal; +} + +/* Blue */ +.ui.blue.progress .bar { + background-color: colors.$blue; +} + +.ui.blue.inverted.progress .bar { + background-color: colors.$lightBlue; +} + +/* Violet */ +.ui.violet.progress .bar { + background-color: colors.$violet; +} + +.ui.violet.inverted.progress .bar { + background-color: colors.$lightViolet; +} + +/* Purple */ +.ui.purple.progress .bar { + background-color: colors.$purple; +} + +.ui.purple.inverted.progress .bar { + background-color: colors.$lightPurple; +} + +/* Pink */ +.ui.pink.progress .bar { + background-color: colors.$pink; +} + +.ui.pink.inverted.progress .bar { + background-color: colors.$lightPink; +} + +/* Brown */ +.ui.brown.progress .bar { + background-color: colors.$brown; +} + +.ui.brown.inverted.progress .bar { + background-color: colors.$lightBrown; +} + +/* Grey */ +.ui.grey.progress .bar { + background-color: colors.$grey; +} + +.ui.grey.inverted.progress .bar { + background-color: colors.$lightGrey; +} + +/* Black */ +.ui.black.progress .bar { + background-color: colors.$black; +} + +.ui.black.inverted.progress .bar { + background-color: colors.$lightBlack; +} + +/*-------------- + Sizes + ---------------*/ + +.ui.tiny.progress { + font-size: variables.$tiny; +} + +.ui.tiny.progress .bar { + height: $tinyBarHeight; +} + +.ui.small.progress { + font-size: variables.$small; +} + +.ui.small.progress .bar { + height: $smallBarHeight; +} + +.ui.progress { + font-size: variables.$medium; +} + +.ui.progress .bar { + height: $barHeight; +} + +.ui.large.progress { + font-size: variables.$large; +} + +.ui.large.progress .bar { + height: $largeBarHeight; +} + +.ui.big.progress { + font-size: variables.$big; +} + +.ui.big.progress .bar { + height: $bigBarHeight; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/reveal.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/reveal.scss new file mode 100644 index 00000000..ccf2e861 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/reveal.scss @@ -0,0 +1,299 @@ +/*! + * # Semantic UI - Reveal + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; + +/******************************* + Reveal + *******************************/ + +$transitionDelay: 0.1s; +$transitionDuration: 0.5s; +$transitionEasing: cubic-bezier(0.175, 0.885, 0.320, 1); +$transition: all $transitionDuration variables.$defaultEasing $transitionDelay; + +$bottomZIndex: 2; +$topZIndex: 3; +$activeZIndex: 4; +$overlayZIndex: 5; + +/* Types */ +$rotateDegrees: 110deg; +$moveTransition: transform $transitionDuration $transitionEasing $transitionDelay; +$slideTransition: transform $transitionDuration variables.$defaultEasing $transitionDelay; + + +/******************************* + Reveal + *******************************/ + +.ui.reveal { + display: inherit; + position: relative !important; + font-size: 0em !important; +} + +.ui.reveal>.visible.content { + position: absolute !important; + top: 0em !important; + left: 0em !important; + z-index: $topZIndex !important; + transition: $transition; +} + +.ui.reveal>.hidden.content { + position: relative !important; + z-index: $bottomZIndex !important; +} + +/* Make sure hovered element is on top of other reveal */ +.ui.active.reveal .visible.content, +.ui.reveal:hover .visible.content { + z-index: $activeZIndex !important; +} + +/******************************* + Types + *******************************/ + +/*-------------- + Slide + ---------------*/ + +.ui.slide.reveal { + position: relative !important; + overflow: hidden !important; + white-space: nowrap; +} + +.ui.slide.reveal>.content { + display: block; + width: 100%; + white-space: normal; + float: left; + + margin: 0em; + transition: $slideTransition; +} + +.ui.slide.reveal>.visible.content { + position: relative !important; +} + +.ui.slide.reveal>.hidden.content { + position: absolute !important; + left: 0% !important; + width: 100% !important; + transform: translateX(100%) !important; +} + +.ui.slide.active.reveal>.visible.content, +.ui.slide.reveal:hover>.visible.content { + transform: translateX(-100%) !important; +} + +.ui.slide.active.reveal>.hidden.content, +.ui.slide.reveal:hover>.hidden.content { + transform: translateX(0%) !important; +} + +.ui.slide.right.reveal>.visible.content { + transform: translateX(0%) !important; +} + +.ui.slide.right.reveal>.hidden.content { + transform: translateX(-100%) !important; +} + +.ui.slide.right.active.reveal>.visible.content, +.ui.slide.right.reveal:hover>.visible.content { + transform: translateX(100%) !important; +} + +.ui.slide.right.active.reveal>.hidden.content, +.ui.slide.right.reveal:hover>.hidden.content { + transform: translateX(0%) !important; +} + +.ui.slide.up.reveal>.hidden.content { + transform: translateY(100%) !important; +} + +.ui.slide.up.active.reveal>.visible.content, +.ui.slide.up.reveal:hover>.visible.content { + transform: translateY(-100%) !important; +} + +.ui.slide.up.active.reveal>.hidden.content, +.ui.slide.up.reveal:hover>.hidden.content { + transform: translateY(0%) !important; +} + +.ui.slide.down.reveal>.hidden.content { + transform: translateY(-100%) !important; +} + +.ui.slide.down.active.reveal>.visible.content, +.ui.slide.down.reveal:hover>.visible.content { + transform: translateY(100%) !important; +} + +.ui.slide.down.active.reveal>.hidden.content, +.ui.slide.down.reveal:hover>.hidden.content { + transform: translateY(0%) !important; +} + +/*-------------- + Fade + ---------------*/ + +.ui.fade.reveal>.visible.content { + opacity: 1; +} + +.ui.fade.active.reveal>.visible.content, +.ui.fade.reveal:hover>.visible.content { + opacity: 0; +} + +/*-------------- + Move + ---------------*/ + +.ui.move.reveal { + position: relative !important; + overflow: hidden !important; + white-space: nowrap; +} + +.ui.move.reveal>.content { + display: block; + float: left; + white-space: normal; + + margin: 0em; + transition: $moveTransition; +} + +.ui.move.reveal>.visible.content { + position: relative !important; +} + +.ui.move.reveal>.hidden.content { + position: absolute !important; + left: 0% !important; + width: 100% !important; +} + +.ui.move.active.reveal>.visible.content, +.ui.move.reveal:hover>.visible.content { + transform: translateX(-100%) !important; +} + +.ui.move.right.active.reveal>.visible.content, +.ui.move.right.reveal:hover>.visible.content { + transform: translateX(100%) !important; +} + +.ui.move.up.active.reveal>.visible.content, +.ui.move.up.reveal:hover>.visible.content { + transform: translateY(-100%) !important; +} + +.ui.move.down.active.reveal>.visible.content, +.ui.move.down.reveal:hover>.visible.content { + transform: translateY(100%) !important; +} + +/*-------------- + Rotate + ---------------*/ + +.ui.rotate.reveal>.visible.content { + transition-duration: $transitionDuration; + transform: rotate(0deg); +} + +.ui.rotate.reveal>.visible.content, +.ui.rotate.right.reveal>.visible.content { + transform-origin: bottom right; +} + +.ui.rotate.active.reveal>.visible.content, +.ui.rotate.reveal:hover>.visible.content, +.ui.rotate.right.active.reveal>.visible.content, +.ui.rotate.right.reveal:hover>.visible.content { + transform: rotate($rotateDegrees); +} + +.ui.rotate.left.reveal>.visible.content { + transform-origin: bottom left; +} + +.ui.rotate.left.active.reveal>.visible.content, +.ui.rotate.left.reveal:hover>.visible.content { + transform: rotate(-$rotateDegrees); +} + +/******************************* + States + *******************************/ + +.ui.disabled.reveal:hover>.visible.visible.content { + position: static !important; + display: block !important; + opacity: 1 !important; + top: 0 !important; + left: 0 !important; + right: auto !important; + bottom: auto !important; + transform: none !important; +} + +.ui.disabled.reveal:hover>.hidden.hidden.content { + display: none !important; +} + +/******************************* + Coupling + *******************************/ + +.ui.reveal>.ui.ribbon.label { + z-index: $overlayZIndex; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Visible + ---------------*/ + +.ui.visible.reveal { + overflow: visible; +} + +/*-------------- + Instant + ---------------*/ + +.ui.instant.reveal>.content { + transition-delay: 0s !important; +} + +/*-------------- + Sizing + ---------------*/ + + +.ui.reveal>.content { + font-size: variables.$medium !important; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/segment.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/segment.scss new file mode 100644 index 00000000..14138cb3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/segment.scss @@ -0,0 +1,1133 @@ +/*! + * # Semantic UI - Segment + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use "colors"; + +/******************************* + Segment + *******************************/ + +/*------------------- + Element + --------------------*/ + +$background: colors.$white; +$borderWidth: 1px; +$border: $borderWidth solid colors.$borderColor; + +$boxShadow: variables.$subtleShadow; +$verticalPadding: 1em; +$horizontalPadding: 1em; +$padding: $verticalPadding $horizontalPadding; + +$verticalMargin: 1rem; +$horizontalMargin: 0em; +$margin: $verticalMargin $horizontalMargin; +$borderRadius: 0; //$defaultBorderRadius; + +$minWidth: 250px; + +/*------------------- + Group + --------------------*/ + +$groupedMargin: $margin; +$groupedBorder: $border; +$groupedBoxShadow: $boxShadow; +$groupedBorderRadius: $borderRadius; + +$nestedGroupMargin: $verticalMargin $verticalMargin; + +$groupedSegmentBorder: none; +$groupedSegmentDivider: $border; +$groupedSegmentMargin: 0em; +$groupedSegmentWidth: auto; +$groupedSegmentBoxShadow: none; + +/*------------------- + Coupling + --------------------*/ + +/* Page Grid Segment */ +$pageGridMargin: (2 * $verticalPadding); + +/******************************* + Types + *******************************/ + +/* Placeholder */ +$placeholderBackground: colors.$offWhite; +$placeholderPadding: $padding; +$placeholderBorderColor: colors.$borderColor; +$placeholderBoxShadow: 0px 2px 25px 0 rgba(34, 36, 38, 0.05) inset; +$placeholderMinHeight: 18rem; +$placeholderContentMaxWidth: 15rem; +$placeholderContentInlineButtonMargin: 0px variables.$u5px 0px 0px; + +/* Piled */ +$piledZIndex: auto; +$piledMargin: 3em; +$piledBoxShadow: ""; +$piledDegrees: 1.2deg; +$piledBorder: $border; + +/* Circular */ +$circularPadding: 2em; + +/* Stacked */ +$stackedHeight: 6px; +$stackedPageBackground: colors.$subtleTransparentBlack; +$stackedPadding: $verticalPadding+(0.4em); +$tallStackedPadding: $verticalPadding+(0.8em); + +/* Inset Arrow */ +$insetBackground: #e7e8e9; +$insetBoxShadow: 0 6px 10px -8px inset; + +/******************************* + States + *******************************/ + +/* Loading Dimmer */ +$loaderDimmerColor: rgba(255, 255, 255, 0.8); +$loaderDimmerZIndex: 100; + +/* Loading Spinner */ +$loaderSize: 3em; +$loaderLineZIndex: 101; + +/******************************* + Variations + *******************************/ + +/* Raised */ +$raisedBoxShadow: variables.$floatingShadow; + +/* Padded */ +$paddedSegmentPadding: 1.5em; +$veryPaddedSegmentPadding: 3em; + +/* Attached */ +$attachedTopOffset: 0px; +$attachedBottomOffset: 0px; +$attachedHorizontalOffset: -$borderWidth; +$attachedWidth: calc(100% - (#{$attachedHorizontalOffset} * 2)); +$attachedBoxShadow: none; +$attachedBorder: $borderWidth solid colors.$solidBorderColor; +$attachedBottomBoxShadow: $boxShadow, +$attachedBoxShadow; + +/* Inverted */ +$invertedBackground: colors.$black; + +/* Floated */ +$floatedDistance: 1em; + +/* Basic */ +$basicBackground: none transparent; +$basicBorder: none; +$basicBoxShadow: none; +$basicBorderRadius: 0px; + +/* Colors */ +$coloredBorderSize: 2px; + +/* Ordinality */ +$secondaryBackground: colors.$darkWhite; +$secondaryColor: colors.$mutedTextColor; + +$tertiaryBackground: colors.$midWhite; +$tertiaryColor: colors.$mutedTextColor; + +$secondaryInvertedLightness: 0.2; +$secondaryInvertedBackground: lighten(colors.$black, + ($secondaryInvertedLightness * 100)) linear-gradient(rgba(255, 255, 255, $secondaryInvertedLightness) 0%, + rgba(255, 255, 255, $secondaryInvertedLightness) 100%); +$secondaryInvertedColor: colors.$invertedMutedTextColor; + +$tertiaryInvertedLightness: 0.35; +$tertiaryInvertedBackground: lighten(colors.$black, ($tertiaryInvertedLightness * 100)) linear-gradient(rgba(255, 255, 255, $tertiaryInvertedLightness) 0%, + rgba(255, 255, 255, $tertiaryInvertedLightness) 100%); +$tertiaryInvertedColor: colors.$invertedMutedTextColor; + + +/******************************* + Segment + *******************************/ + +.ui.segment { + position: relative; + background: $background; + box-shadow: $boxShadow; + margin: $margin; + padding: $padding; + border-radius: $borderRadius; + border: $border; + font-family: variables.$sansSerifFont; + min-width: $minWidth; +} + +.ui.segment:first-child { + margin-top: 0em; +} + +.ui.segment:last-child { + margin-bottom: 0em; +} + +// Seth Addition +.ui.segment:not(.alignright), +.ui.segment:not(.alignleft), +.ui.segment:not(.aligncenter), +.ui.segment:not(.alignwide) { + clear: both; +} + +.ui.segment .embedded_chart { + border-top: 0; + border-bottom: 0; + margin-bottom: 0; + padding: 0; +} + +/* Vertical */ +.ui.vertical.segment { + margin: 0em; + padding-left: 0em; + padding-right: 0em; + + background: none transparent; + border-radius: 0px; + box-shadow: none; + border: none; + border-bottom: $borderWidth solid colors.$borderColor; +} + +.ui.vertical.segment:last-child { + border-bottom: none; +} + +/*------------------- + Loose Coupling + --------------------*/ + +/* Header */ +.ui.inverted.segment:not(.beige)>.ui.header { + color: colors.$white; +} + +/* Label */ +.ui[class*="bottom attached"].segment>[class*="top attached"].label { + border-top-left-radius: 0em; + border-top-right-radius: 0em; +} + +.ui[class*="top attached"].segment>[class*="bottom attached"].label { + border-bottom-left-radius: 0em; + border-bottom-right-radius: 0em; +} + +.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label { + border-top-left-radius: 0em; + border-top-right-radius: 0em; +} + +.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label { + border-bottom-left-radius: 0em; + border-bottom-right-radius: 0em; +} + +/* Grid */ +.ui.page.grid.segment, +.ui.grid>.row>.ui.segment.column, +.ui.grid>.ui.segment.column { + padding-top: $pageGridMargin; + padding-bottom: $pageGridMargin; +} + +.ui.grid.segment { + margin: $margin; + border-radius: $borderRadius; +} + +/* Table */ +.ui.basic.table.segment { + background: $background; + border: $border; + box-shadow: $boxShadow; +} + +.ui[class*="very basic"].table.segment { + padding: $padding; +} + +/******************************* + Types + *******************************/ + +/*------------------- + Placeholder + --------------------*/ + +.ui.placeholder.segment { + display: flex; + flex-direction: column; + justify-content: center; + align-items: stretch; + max-width: initial; + animation: none; + overflow: visible; + padding: $placeholderPadding; + min-height: $placeholderMinHeight; + background: $placeholderBackground; + border-color: $placeholderBorderColor; + box-shadow: $placeholderBoxShadow; +} + +.ui.placeholder.segment .button, +.ui.placeholder.segment textarea { + display: block; +} + +.ui.placeholder.segment .field, +.ui.placeholder.segment textarea, +.ui.placeholder.segment>.ui.input, +.ui.placeholder.segment .button { + max-width: $placeholderContentMaxWidth; + margin-left: auto; + margin-right: auto; +} + +.ui.placeholder.segment .column .button, +.ui.placeholder.segment .column .field, +.ui.placeholder.segment .column textarea, +.ui.placeholder.segment .column>.ui.input { + max-width: $placeholderContentMaxWidth; + margin-left: auto; + margin-right: auto; +} + +.ui.placeholder.segment>.inline { + align-self: center; +} + +.ui.placeholder.segment>.inline>.button { + display: inline-block; + width: auto; + margin: $placeholderContentInlineButtonMargin; +} + +.ui.placeholder.segment>.inline>.button:last-child { + margin-right: 0px; +} + +/*------------------- + Piled + --------------------*/ + +.ui.piled.segments, +.ui.piled.segment { + margin: $piledMargin 0em; + box-shadow: $piledBoxShadow; + z-index: $piledZIndex; +} + +.ui.piled.segment:first-child { + margin-top: 0em; +} + +.ui.piled.segment:last-child { + margin-bottom: 0em; +} + +.ui.piled.segments:after, +.ui.piled.segments:before, +.ui.piled.segment:after, +.ui.piled.segment:before { + background-color: colors.$white; + visibility: visible; + content: ""; + display: block; + height: 100%; + left: 0px; + position: absolute; + width: 100%; + border: $piledBorder; + box-shadow: $piledBoxShadow; +} + +.ui.piled.segments:before, +.ui.piled.segment:before { + transform: rotate(-$piledDegrees); + top: 0; + z-index: -2; +} + +.ui.piled.segments:after, +.ui.piled.segment:after { + transform: rotate($piledDegrees); + top: 0; + z-index: -1; +} + +/* Piled Attached */ +.ui[class*="top attached"].piled.segment { + margin-top: $piledMargin; + margin-bottom: 0em; +} + +.ui.piled.segment[class*="top attached"]:first-child { + margin-top: 0em; +} + +.ui.piled.segment[class*="bottom attached"] { + margin-top: 0em; + margin-bottom: $piledMargin; +} + +.ui.piled.segment[class*="bottom attached"]:last-child { + margin-bottom: 0em; +} + +/*------------------- + Stacked + --------------------*/ + +.ui.stacked.segment { + padding-bottom: $stackedPadding; +} + +.ui.stacked.segments:before, +.ui.stacked.segments:after, +.ui.stacked.segment:before, +.ui.stacked.segment:after { + content: ""; + position: absolute; + bottom: -($stackedHeight * 0.5); + left: 0%; + + border-top: 1px solid colors.$borderColor; + background: $stackedPageBackground; + + width: 100%; + height: $stackedHeight; + visibility: visible; +} + +.ui.stacked.segments:before, +.ui.stacked.segment:before { + display: none; +} + +/* Add additional page */ +.ui.tall.stacked.segments:before, +.ui.tall.stacked.segment:before { + display: block; + bottom: 0px; +} + +/* Inverted */ +.ui.stacked.inverted.segments:before, +.ui.stacked.inverted.segments:after, +.ui.stacked.inverted.segment:before, +.ui.stacked.inverted.segment:after { + background-color: colors.$subtleTransparentBlack; + border-top: 1px solid colors.$selectedBorderColor; +} + +/*------------------- + Padded + --------------------*/ + +.ui.padded.segment { + padding: $paddedSegmentPadding; +} + +.ui[class*="very padded"].segment { + padding: $veryPaddedSegmentPadding; +} + +/* Padded vertical */ +.ui.padded.segment.vertical.segment, +.ui[class*="very padded"].vertical.segment { + padding-left: 0px; + padding-right: 0px; +} + +/*------------------- + Compact + --------------------*/ + +.ui.compact.segment { + display: table; +} + +/* Compact Group */ +.ui.compact.segments { + display: inline-flex; +} + +.ui.compact.segments .segment, +.ui.segments .compact.segment { + display: block; + flex: 0 1 auto; +} + +/*------------------- + Circular + --------------------*/ + +.ui.circular.segment { + display: table-cell; + padding: $circularPadding; + text-align: center; + vertical-align: middle; + border-radius: 500em; +} + +/*------------------- + Raised + --------------------*/ + +.ui.raised.segments, +.ui.raised.segment { + box-shadow: $raisedBoxShadow; +} + +/*------------------- + Inset Arrow + --------------------*/ +.ui.inset-arrow.segment { + background: $insetBackground; + box-shadow: $insetBoxShadow; + padding: 2rem; + text-align: center; + + &:before { + display: block; + content: ""; + width: 26px; + height: 26px; + background: #fff; + position: absolute; + left: 50%; + transform: rotate(45deg); + -ms-transform: rotate(45deg); + -webkit-transform: rotate(45deg); + margin-left: -13px; + margin-top: -3rem; + box-shadow: 2px 2px 0px 0px #bbb; + } +} + +/******************************* + Groups + *******************************/ + +/* Group */ +.ui.segments { + flex-direction: column; + position: relative; + margin: $groupedMargin; + border: $groupedBorder; + box-shadow: $groupedBoxShadow; + border-radius: $groupedBorderRadius; +} + +.ui.segments:first-child { + margin-top: 0em; +} + +.ui.segments:last-child { + margin-bottom: 0em; +} + +/* Nested Segment */ +.ui.segments>.segment { + top: 0px; + bottom: 0px; + border-radius: 0px; + margin: $groupedSegmentMargin; + width: $groupedSegmentWidth; + box-shadow: $groupedSegmentBoxShadow; + border: $groupedSegmentBorder; + border-top: $groupedSegmentDivider; +} + +.ui.segments:not(.horizontal)>.segment:first-child { + top: $attachedTopOffset; + bottom: 0px; + border-top: none; + margin-top: 0em; + bottom: 0px; + margin-bottom: 0em; + top: $attachedTopOffset; + border-radius: $borderRadius $borderRadius 0em 0em; +} + +/* Bottom */ +.ui.segments:not(.horizontal)>.segment:last-child { + top: $attachedBottomOffset; + bottom: 0px; + margin-top: 0em; + margin-bottom: 0em; + box-shadow: $attachedBottomBoxShadow; + border-radius: 0em 0em $borderRadius $borderRadius; +} + +/* Only */ +.ui.segments:not(.horizontal)>.segment:only-child { + border-radius: $borderRadius; +} + +/* Nested Group */ +.ui.segments>.ui.segments { + border-top: $groupedSegmentDivider; + margin: $nestedGroupMargin; +} + +.ui.segments>.segments:first-child { + border-top: none; +} + +.ui.segments>.segment+.segments:not(.horizontal) { + margin-top: 0em; +} + +/* Horizontal Group */ +.ui.horizontal.segments { + display: flex; + flex-direction: row; + background-color: transparent; + border-radius: 0px; + padding: 0em; + background-color: $background; + box-shadow: $boxShadow; + margin: $margin; + border-radius: $borderRadius; + border: $border; +} + +/* Nested Horizontal Group */ +.ui.segments>.horizontal.segments { + margin: 0em; + background-color: transparent; + border-radius: 0px; + border: none; + box-shadow: none; + border-top: $groupedSegmentDivider; +} + +/* Horizontal Segment */ +.ui.horizontal.segments>.segment { + flex: 1 1 auto; + -ms-flex: 1 1 0px; + /* Solves #2550 MS Flex */ + margin: 0em; + min-width: 0px; + background-color: transparent; + border-radius: 0px; + border: none; + box-shadow: none; + border-left: $borderWidth solid colors.$borderColor; +} + +/* Border Fixes */ +.ui.segments>.horizontal.segments:first-child { + border-top: none; +} + +.ui.horizontal.segments>.segment:first-child { + border-left: none; +} + +/******************************* + States + *******************************/ + +/*-------------- + Disabled + ---------------*/ + +.ui.disabled.segment { + opacity: variables.$disabledOpacity; + color: colors.$disabledTextColor; +} + +/*-------------- + Loading + ---------------*/ + +.ui.loading.segment { + position: relative; + cursor: default; + pointer-events: none; + text-shadow: none !important; + color: transparent !important; + transition: all 0s linear; +} + +.ui.loading.segment:before { + position: absolute; + content: ""; + top: 0%; + left: 0%; + background: $loaderDimmerColor; + width: 100%; + height: 100%; + border-radius: $borderRadius; + z-index: $loaderDimmerZIndex; +} + +.ui.loading.segment:after { + position: absolute; + content: ""; + top: 50%; + left: 50%; + + margin: variables.$loaderMargin; + width: variables.$loaderSize; + height: variables.$loaderSize; + + animation: segment-spin variables.$loaderSpeed linear; + animation-iteration-count: infinite; + + border-radius: variables.$circularRadius; + + border-color: colors.$loaderLineColor colors.$loaderFillColor colors.$loaderFillColor colors.$loaderFillColor; + border-style: solid; + border-width: variables.$loaderLineWidth; + + box-shadow: 0px 0px 0px 1px transparent; + visibility: visible; + z-index: $loaderLineZIndex; +} + +@keyframes segment-spin { + from { + transform: rotate(0deg); + } + + to { + transform: rotate(360deg); + } +} + +/******************************* + Variations + *******************************/ + +/*------------------- + Basic + --------------------*/ + +.ui.basic.segment { + background: $basicBackground; + box-shadow: $basicBoxShadow; + border: $basicBorder; + border-radius: $basicBorderRadius; +} + +.ui.very.basic.segment { + padding: 0; +} + +/*------------------- + Clearing + --------------------*/ + +.ui.clearing.segment:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +/*------------------- + Colors + --------------------*/ + +/* Red */ +.ui.red.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$red !important; +} + +.ui.inverted.red.segment { + background-color: colors.$red !important; + color: colors.$white !important; +} + +/* Orange */ +.ui.orange.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$orange !important; +} + +.ui.inverted.orange.segment { + background-color: colors.$orange !important; + color: colors.$white !important; +} + +/* Yellow */ +.ui.yellow.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$yellow !important; +} + +.ui.inverted.yellow.segment { + background-color: colors.$yellow !important; + color: colors.$white !important; +} + +/* Olive */ +.ui.olive.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$olive !important; +} + +.ui.inverted.olive.segment { + background-color: colors.$olive !important; + color: colors.$white !important; +} + +/* Green */ +.ui.green.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$green !important; +} + +.ui.inverted.green.segment { + background-color: colors.$green !important; + color: colors.$white !important; +} + +/* Teal */ +.ui.teal.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$teal !important; +} + +.ui.inverted.teal.segment { + background-color: colors.$teal !important; + color: colors.$white !important; +} + +/* Blue */ +.ui.blue.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$blue !important; +} + +.ui.inverted.blue.segment { + background-color: colors.$blue !important; + color: colors.$white !important; +} + +/* Violet */ +.ui.violet.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$violet !important; +} + +.ui.inverted.violet.segment { + background-color: colors.$violet !important; + color: colors.$white !important; +} + +/* Purple */ +.ui.purple.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$purple !important; +} + +.ui.inverted.purple.segment { + background-color: colors.$purple !important; + color: colors.$white !important; +} + +/* Pink */ +.ui.pink.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$pink !important; +} + +.ui.inverted.pink.segment { + background-color: colors.$pink !important; + color: colors.$white !important; +} + +/* Brown */ +.ui.brown.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$brown !important; +} + +.ui.inverted.brown.segment { + background-color: colors.$brown !important; + color: colors.$white !important; +} + +/* Grey */ +.ui.grey.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$grey !important; +} + +// .ui.inverted.grey.segment { +// background-color: $grey !important; +// color: colors.$white !important; +// } +// Seth Addition: +.ui.inverted.grey.segment { + background-color: colors.$gray !important; + border: 1px solid colors.$grayLight; + color: colors.$black !important; +} + +/* Black */ +.ui.black.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$black !important; +} + +.ui.inverted.black.segment { + background-color: colors.$black !important; + color: colors.$white !important; +} + +// Seth Addition: +/* Oatmeal */ +.ui.oatmeal.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$oatmeal !important; +} + +.ui.inverted.oatmeal.segment { + color: colors.$black; + background: colors.$oatmeal !important; + border: 0px !important; +} + +// Seth Addition: +/* Beige */ +.ui.beige.segment:not(.inverted) { + border-top: $coloredBorderSize solid colors.$beigeDark !important; +} + +.ui.inverted.beige.segment { + color: colors.$black; + background: colors.$beige !important; + border-left: none !important; + border-right: none !important; + border-bottom: none !important; + + .header { + color: inherit !important; + } + + .content { + color: #6b6b6b; + } +} + +/*------------------- + Aligned + --------------------*/ + +.ui[class*="left aligned"].segment { + text-align: left; +} + +.ui[class*="right aligned"].segment { + text-align: right; +} + +.ui[class*="center aligned"].segment { + text-align: center; +} + +/*------------------- + Floated + --------------------*/ + +.ui.floated.segment, +.ui[class*="left floated"].segment { + float: left; + margin-right: $floatedDistance; +} + +.ui[class*="right floated"].segment { + float: right; + margin-left: $floatedDistance; +} + +div[data-align="left"]>.ui.segment, +div[data-align="right"]>.ui.segment { + max-width: 270px; +} + +/*------------------- + Inverted + --------------------*/ +.ui.inverted.segment:not(.inverted.beige) { + border: none; +} + +.ui.inverted.segment { + box-shadow: none; +} + +.ui.inverted.segment, +.ui.primary.inverted.segment { + background: $invertedBackground; + color: colors.$invertedTextColor; +} + +/* Nested */ +.ui.inverted.segment .segment { + color: colors.$textColor; +} + +.ui.inverted.segment .inverted.segment { + color: colors.$invertedTextColor; +} + +/* Attached */ +.ui.inverted.attached.segment { + border-color: colors.$solidWhiteBorderColor; +} + +/*------------------- + Emphasis + --------------------*/ + +/* Secondary */ +.ui.secondary.segment { + background: $secondaryBackground; + color: $secondaryColor; +} + +.ui.secondary.inverted.segment { + background: $secondaryInvertedBackground; + color: $secondaryInvertedColor; +} + +/* Tertiary */ +.ui.tertiary.segment { + background: $tertiaryBackground; + color: $tertiaryColor; +} + +.ui.tertiary.inverted.segment { + background: $tertiaryInvertedBackground; + color: $tertiaryInvertedColor; +} + +/*------------------- + Attached + --------------------*/ + +/* Middle */ +.ui.attached.segment { + top: 0px; + bottom: 0px; + border-radius: 0px; + margin: 0em $attachedHorizontalOffset; + width: $attachedWidth; + max-width: $attachedWidth; + box-shadow: $attachedBoxShadow; + border: $attachedBorder; +} + +.ui.attached:not(.message)+.ui.attached.segment:not(.top) { + border-top: none; +} + +/* Top */ +.ui[class*="top attached"].segment { + bottom: 0px; + margin-bottom: 0em; + top: $attachedTopOffset; + margin-top: $verticalMargin; + border-radius: $borderRadius $borderRadius 0em 0em; +} + +.ui.segment[class*="top attached"]:first-child { + margin-top: 0em; +} + +/* Bottom */ +.ui.segment[class*="bottom attached"] { + bottom: 0px; + margin-top: 0em; + top: $attachedBottomOffset; + margin-bottom: $verticalMargin; + box-shadow: $attachedBottomBoxShadow; + border-radius: 0em 0em $borderRadius $borderRadius; +} + +.ui.segment[class*="bottom attached"]:last-child { + margin-bottom: 0em; +} + +/*------------------- + Size + --------------------*/ +.ui.segment.size-200, +.ui.segment.size-310, +.ui.segment.size-420, +.ui.segment.size-640 { + width: 100%; +} + +.ui.segment.size-200 { + max-width: 200px !important; +} + +.ui.segment.size-310 { + max-width: 310px !important; +} + +.ui.segment.size-420 { + max-width: 420px !important; +} + +.ui.segment.size-640 { + max-width: 640px !important; +} + +.ui.mini.segments .segment, +.ui.mini.segment { + font-size: variables.$mini; +} + +.ui.tiny.segments .segment, +.ui.tiny.segment { + font-size: variables.$tiny; +} + +.ui.small.segments .segment, +.ui.small.segment { + font-size: variables.$small; +} + +.ui.segments .segment, +.ui.segment { + font-size: variables.$medium; +} + +.ui.large.segments .segment, +.ui.large.segment { + font-size: variables.$large; +} + +.ui.big.segments .segment, +.ui.big.segment { + font-size: variables.$big; +} + +.ui.huge.segments .segment, +.ui.huge.segment { + font-size: variables.$huge; +} + +.ui.massive.segments .segment, +.ui.massive.segment { + font-size: variables.$massive; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/shape.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/shape.scss new file mode 100644 index 00000000..5bb980f7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/shape.scss @@ -0,0 +1,192 @@ +/*! + * # Semantic UI - Shape + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use 'colors'; + +/******************************* + Shape + *******************************/ + +$display: inline-block; + +/* Animating */ +$perspective: 2000px; + +$duration: 0.6s; +$easing: ease-in-out; + +$hiddenSideOpacity: 0.6; +$animatingZIndex: 100; + +$transition: transform $duration $easing, +left $duration $easing, +width $duration $easing, +height $duration $easing; +$sideTransition: opacity $duration $easing; +$backfaceVisibility: hidden; + +/* Side */ +$sideMargin: 0em; + +/*-------------- + Types + ---------------*/ + +/* Cube */ +$cubeSize: 15em; +$cubeBackground: #E6E6E6; +$cubePadding: 2em; +$cubeTextColor: colors.$textColor; +$cubeBoxShadow: 0px 0px 2px rgba(0, 0, 0, 0.3); + +$cubeTextAlign: center; +$cubeFontSize: 2em; + + +/******************************* + Shape + *******************************/ + +.ui.shape { + position: relative; + vertical-align: top; + display: $display; + perspective: $perspective; + transition: $transition; +} + +.ui.shape .sides { + transform-style: preserve-3d; +} + +.ui.shape .side { + opacity: 1; + width: 100%; + + margin: $sideMargin !important; + backface-visibility: $backfaceVisibility; +} + +.ui.shape .side { + display: none; +} + +.ui.shape .side * { + backface-visibility: visible !important; +} + +/******************************* + Types + *******************************/ + +.ui.cube.shape .side { + min-width: $cubeSize; + height: $cubeSize; + + padding: $cubePadding; + + background-color: $cubeBackground; + color: $cubeTextColor; + box-shadow: $cubeBoxShadow; +} + +.ui.cube.shape .side>.content { + width: 100%; + height: 100%; + display: table; + + text-align: $cubeTextAlign; + user-select: text; +} + +.ui.cube.shape .side>.content>div { + display: table-cell; + vertical-align: middle; + font-size: $cubeFontSize; +} + +/******************************* + Variations + *******************************/ + +.ui.text.shape.animating .sides { + position: static; +} + +.ui.text.shape .side { + white-space: nowrap; +} + +.ui.text.shape .side>* { + white-space: normal; +} + +/******************************* + States + *******************************/ + +/*-------------- + Loading + ---------------*/ + +.ui.loading.shape { + position: absolute; + top: -9999px; + left: -9999px; +} + +/*-------------- + Animating + ---------------*/ + +.ui.shape .animating.side { + position: absolute; + top: 0px; + left: 0px; + display: block; + z-index: $animatingZIndex; +} + +.ui.shape .hidden.side { + opacity: $hiddenSideOpacity; +} + +/*-------------- + CSS + ---------------*/ + +.ui.shape.animating .sides { + position: absolute; +} + +.ui.shape.animating .sides { + transition: $transition; +} + +.ui.shape.animating .side { + transition: $sideTransition; +} + +/*-------------- + Active + ---------------*/ + +.ui.shape .active.side { + display: block; +} + +/*-------------- + Cards + ---------------*/ + +.sides>.side>.ui.card { + width: 100%; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/sticky.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/sticky.scss new file mode 100644 index 00000000..edc0f87d --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/sticky.scss @@ -0,0 +1,72 @@ +/*! + * # Semantic UI - Sticky + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; + +/******************************* + Sticky + *******************************/ + +$transitionDuration: variables.$defaultDuration; +$transition: none; +$zIndex: 800; + +/******************************* + Sticky + *******************************/ + +.ui.sticky { + position: static; + transition: $transition; + z-index: $zIndex; +} + +/******************************* + States + *******************************/ + +/* Bound */ +.ui.sticky.bound { + position: absolute; + left: auto; + right: auto; +} + +/* Fixed */ +.ui.sticky.fixed { + position: fixed; + left: auto; + right: auto; +} + +/* Bound/Fixed Position */ +.ui.sticky.bound.top, +.ui.sticky.fixed.top { + top: 0px; + bottom: auto; +} + +.ui.sticky.bound.bottom, +.ui.sticky.fixed.bottom { + top: auto; + bottom: 0px; +} + +/******************************* + Types + *******************************/ + +.ui.native.sticky { + position: -webkit-sticky; + position: -moz-sticky; + position: -ms-sticky; + position: -o-sticky; + position: sticky; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/style.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/style.scss new file mode 100644 index 00000000..ac2c75f3 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/style.scss @@ -0,0 +1,44 @@ + +@use "mixins"; +@use "master.variables"as variables; + + +@use "button"; +@use "checkbox"; +@use "colors"; +@use "container"; +@use "dimmer"; +@use "divider"; +@use "dropdown"; +@use "flag"; +@use "flex"; +@use "form"; +@use "grid-columns"; +@use "grid-core"; +@use "grid-responsive"; +@use "icon"; +@use "input"; +@use "label"; +@use "list"; +@use "loader"; +@use "menu"; +@use "message"; +@use "modal"; +@use "placeholder"; +@use "popup"; +@use "progress"; +@use "reveal"; +@use "segment"; +@use "shape"; +@use "sticky"; +@use "tab"; +@use "table"; +@use "transition"; + +.show-on-mobile { + display: none !important; + + @media only screen and (max-width: variables.$largestMobileScreen) { + display: inline-block !important; + } +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/tab.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/tab.scss new file mode 100644 index 00000000..2aca5d5a --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/tab.scss @@ -0,0 +1,99 @@ +/*! + * # Semantic UI - Tab + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use 'colors'; + +/******************************* + Tab + *******************************/ + +/* Loading */ +$loadingMinHeight: 250px; +$loadingContentPosition: relative; +$loadingContentOffset: -10000px; + +$loaderDistanceFromTop: 100px; +$loaderSize: 2.5em; + +/******************************* + UI Tabs + *******************************/ + +.ui.tab { + display: none; +} + +/******************************* + States + *******************************/ + +/*-------------------- + Active + ---------------------*/ + +.ui.tab.active, +.ui.tab.open { + display: block; +} + +/*-------------------- + Loading + ---------------------*/ + +.ui.tab.loading { + position: relative; + overflow: hidden; + display: block; + min-height: $loadingMinHeight; +} + +.ui.tab.loading * { + position: $loadingContentPosition !important; + left: $loadingContentOffset !important; +} + +.ui.tab.loading:before, +.ui.tab.loading.segment:before { + position: absolute; + content: ""; + top: $loaderDistanceFromTop; + left: 50%; + + margin: variables.$loaderMargin; + width: $loaderSize; + height: $loaderSize; + + border-radius: variables.$circularRadius; + border: variables.$loaderLineWidth solid colors.$loaderLineColor; +} + +.ui.tab.loading:after, +.ui.tab.loading.segment:after { + position: absolute; + content: ""; + top: $loaderDistanceFromTop; + left: 50%; + + margin: variables.$loaderMargin; + width: $loaderSize; + height: $loaderSize; + + animation: button-spin variables.$loaderSpeed linear; + animation-iteration-count: infinite; + + border-radius: variables.$circularRadius; + + border-color: colors.$loaderLineColor transparent transparent; + border-style: solid; + border-width: variables.$loaderLineWidth; + + box-shadow: 0px 0px 0px 1px transparent; +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/table.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/table.scss new file mode 100644 index 00000000..5eb92d34 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/table.scss @@ -0,0 +1,1582 @@ +/*! + * # Semantic UI - Table + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; +@use 'colors'; + +/******************************* + Table + *******************************/ + +/*------------------- + Element + --------------------*/ + +$verticalMargin: 1em; +$horizontalMargin: 0em; +$margin: $verticalMargin $horizontalMargin; +$borderCollapse: separate; +$borderSpacing: 0px; +$borderRadius: 0; //$defaultBorderRadius; +$transition: background variables.$defaultDuration variables.$defaultEasing, +color variables.$defaultDuration variables.$defaultEasing; +$background: colors.$white; +$color: colors.$textColor; +$borderWidth: 1px; +$border: $borderWidth solid colors.$borderColor; +$boxShadow: none; +$textAlign: left; + +/*-------------- + Parts + ---------------*/ + +/* Table Row */ +// $rowBorder: 1px solid colors.$internalBorderColor; +$rowBorder: 1px dotted colors.$grayLight; + +/* Table Cell */ +$cellVerticalPadding: variables.$relativeMini; +$cellHorizontalPadding: variables.$relativeMini; +$cellVerticalAlign: inherit; +$cellTextAlign: inherit; +$cellBorder: 1px solid colors.$internalBorderColor; + +/* Table Header */ +// $headerBorder: 1px solid colors.$internalBorderColor; +$headerBorder: none; +$headerDivider: none; +$headerBackground: colors.$offWhite; +$headerAlign: inherit; +// $headerVerticalAlign: inherit; +$headerVerticalAlign: bottom; +$headerColor: colors.$textColor; +$headerVerticalPadding: variables.$relativeSmall; +$headerHorizontalPadding: $cellHorizontalPadding; +$headerFontStyle: none; +$headerFontWeight: variables.$bold; +$headerTextTransform: none; +$headerBoxShadow: none; + +/* Table Footer */ +$footerBoxShadow: none; +$footerBorder: 1px solid colors.$borderColor; +$footerDivider: none; +$footerBackground: colors.$offWhite; +$footerAlign: inherit; +$footerVerticalAlign: middle; +$footerColor: colors.$textColor; +$footerVerticalPadding: $cellVerticalPadding; +$footerHorizontalPadding: $cellHorizontalPadding; +$footerFontStyle: variables.$normal; +$footerFontWeight: variables.$normal; +$footerTextTransform: none; + +/* Responsive Size */ +$responsiveHeaderDisplay: block; +$responsiveFooterDisplay: block; +$responsiveRowVerticalPadding: 1em; +$responsiveRowBoxShadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; +$responsiveCellVerticalPadding: 0.25em; +$responsiveCellHorizontalPadding: 0.75em; +$responsiveCellBoxShadow: none !important; +$responsiveCellHeaderFontWeight: variables.$bold; + +/*------------------- + Types + --------------------*/ + +/* Definition */ +$definitionPageBackground: colors.$white; + +$definitionHeaderBackground: transparent; +$definitionHeaderColor: colors.$unselectedTextColor; +$definitionHeaderFontWeight: variables.$normal; + +$definitionFooterBackground: $definitionHeaderBackground; +$definitionFooterColor: $definitionHeaderColor; +$definitionFooterFontWeight: $definitionHeaderFontWeight; + +$definitionColumnBackground: colors.$subtleTransparentBlack; +$definitionColumnFontWeight: variables.$bold; +$definitionColumnColor: colors.$selectedTextColor; +$definitionColumnFontSize: variables.$relativeMedium; +$definitionColumnTextTransform: ""; +$definitionColumnBoxShadow: ""; +$definitionColumnTextAlign: ""; +$definitionColumnHorizontalPadding: ""; + +/*-------------- + Couplings + ---------------*/ + +$iconVerticalAlign: baseline; + +/*-------------- + States + ---------------*/ + +$stateMarkerWidth: 0px; + +/* Positive */ +$positiveColor: colors.$positiveTextColor; +$positiveBoxShadow: $stateMarkerWidth 0px 0px colors.$positiveBorderColor inset; +$positiveBackgroundHover: darken(colors.$positiveBackgroundColor, 3); +$positiveColorHover: darken($positiveColor, 3); + +/* Negative */ +$negativeColor: colors.$negativeTextColor; +$negativeBoxShadow: $stateMarkerWidth 0px 0px colors.$negativeBorderColor inset; +$negativeBackgroundHover: darken(colors.$negativeBackgroundColor, 3); +$negativeColorHover: darken($negativeColor, 3); + +/* Error */ +$errorColor: colors.$errorTextColor; +$errorBoxShadow: $stateMarkerWidth 0px 0px colors.$errorBorderColor inset; +$errorBackgroundHover: darken(colors.$errorBackgroundColor, 3); +$errorColorHover: darken($errorColor, 3); + +/* Warning */ +$warningColor: colors.$warningTextColor; +$warningBoxShadow: $stateMarkerWidth 0px 0px colors.$warningBorderColor inset; +$warningBackgroundHover: darken(colors.$warningBackgroundColor, 3); +$warningColorHover: darken($warningColor, 3); + +/* Active */ +$activeColor: colors.$textColor; +$activeBackgroundColor: #e0e0e0; +$activeBoxShadow: $stateMarkerWidth 0px 0px $activeColor inset; + +$activeBackgroundHover: #efefef; +$activeColorHover: colors.$selectedTextColor; + +/*-------------- + Types + ---------------*/ + +/* Attached */ +$attachedTopOffset: 0px; +$attachedBottomOffset: 0px; +$attachedHorizontalOffset: -$borderWidth; +$attachedWidth: calc(100% - (#{$attachedHorizontalOffset} * 2)); +$attachedBoxShadow: none; +$attachedBorder: $borderWidth solid colors.$solidBorderColor; +$attachedBottomBoxShadow: $boxShadow, +$attachedBoxShadow; + +/* Striped */ +// $stripedBackground: rgba(0, 0, 50, 0.02); +$stripedBackground: colors.$oatmealLight; +$invertedStripedBackground: rgba(255, 255, 255, 0.05); + +/* Selectable */ +// $selectableBackground: colors.$transparentBlack; +$selectableBackground: colors.$oatmeal; +$selectableTextColor: colors.$selectedTextColor; +$selectableInvertedBackground: colors.$transparentWhite; +$selectableInvertedTextColor: colors.$invertedSelectedTextColor; + +/* Sortable */ +$sortableBackground: ""; +$sortableColor: colors.$textColor; + +$sortableBorder: 1px solid colors.$borderColor; +$sortableIconWidth: auto; +$sortableIconDistance: 0.5em; +$sortableIconOpacity: 0.8; +$sortableIconFont: "Icons"; +$sortableIconAscending: "\f0d8"; +$sortableIconDescending: "\f0d7"; +$sortableDisabledColor: colors.$disabledTextColor; + +$sortableHoverBackground: colors.$transparentBlack; +$sortableHoverColor: colors.$hoveredTextColor; + +$sortableActiveBackground: colors.$transparentBlack; +$sortableActiveColor: colors.$selectedTextColor; + +$sortableActiveHoverBackground: colors.$transparentBlack; +$sortableActiveHoverColor: colors.$selectedTextColor; + +$sortableInvertedBorderColor: transparent; +$sortableInvertedHoverBackground: colors.$transparentWhite variables.$subtleGradient; +$sortableInvertedHoverColor: colors.$invertedHoveredTextColor; +$sortableInvertedActiveBackground: colors.$strongTransparentWhite variables.$subtleGradient; +$sortableInvertedActiveColor: colors.$invertedSelectedTextColor; + +/* Colors */ +$coloredBorderSize: 0.2em; +$coloredBorderRadius: 0em 0em $borderRadius $borderRadius; + +/* Inverted */ +$invertedBackground: #333333; +$invertedBorder: none; +$invertedCellBorderColor: colors.$whiteBorderColor; +$invertedCellColor: colors.$invertedTextColor; + +$invertedHeaderBackground: colors.$veryStrongTransparentBlack; +$invertedHeaderColor: colors.$invertedTextColor; +$invertedHeaderBorderColor: $invertedCellBorderColor; + +$invertedDefinitionColumnBackground: colors.$subtleTransparentWhite; +$invertedDefinitionColumnColor: colors.$invertedSelectedTextColor; +$invertedDefinitionColumnFontWeight: variables.$bold; + +/* Basic */ +$basicTableBackground: transparent; +$basicTableBorder: $borderWidth solid colors.$borderColor; +$basicBoxShadow: none; + +$basicTableHeaderBackground: transparent; +$basicTableCellBackground: transparent; +$basicTableHeaderDivider: none; +$basicTableCellBorder: 1px solid rgba(0, 0, 0, 0.1); +$basicTableCellPadding: ""; +// $basicTableStripedBackground: colors.$transparentBlack; +$basicTableStripedBackground: $stripedBackground; + +/* Padded */ +$paddedVerticalPadding: 1em; +$paddedHorizontalPadding: 1em; +$veryPaddedVerticalPadding: 1.5em; +$veryPaddedHorizontalPadding: 1.5em; + +/* Compact */ +$compactVerticalPadding: 0.5em; +$compactHorizontalPadding: 0.7em; +$veryCompactVerticalPadding: 0.4em; +$veryCompactHorizontalPadding: 0.6em; + +/* Sizes */ +// $small: 0.9em; +$small: 0.857rem; +$medium: 1em; +$large: 1.1em; + + +/******************************* + Table + *******************************/ + +/* Prototype */ +.ui.table { + width: 100%; + background: $background; + margin: $margin; + border: $border; + box-shadow: $boxShadow; + border-radius: $borderRadius; + text-align: $textAlign; + color: $color; + border-collapse: $borderCollapse; + border-spacing: $borderSpacing; + // Seth Addition: + font-family: variables.$sansSerifFont; + + &:first-child { + margin-top: 0em; + } + + &:last-child { + margin-bottom: 0em; + } +} + +/******************************* + Parts + *******************************/ +.ui.table { + + /* Table Content */ + th, + td { + transition: $transition; + } + + /* Headers */ + thead { + box-shadow: $headerBoxShadow; + + th { + cursor: auto; + background: $headerBackground; + text-align: $headerAlign; + color: $headerColor; + padding: $headerVerticalPadding $headerHorizontalPadding; + vertical-align: $headerVerticalAlign; + font-style: $headerFontStyle; + font-weight: $headerFontWeight; + text-transform: $headerTextTransform; + border-bottom: $headerBorder; + border-left: $headerDivider; + } + + tr>th:first-child { + border-left: none; + } + + tr:first-child>th:first-child { + border-radius: $borderRadius 0em 0em 0em; + } + + tr:first-child>th:last-child { + border-radius: 0em $borderRadius 0em 0em; + } + + tr:first-child>th:only-child { + border-radius: $borderRadius $borderRadius 0em 0em; + } + } + + /* Footer */ + tfoot { + box-shadow: $footerBoxShadow; + + th { + cursor: auto; + border-top: $footerBorder; + background: $footerBackground; + text-align: $footerAlign; + color: $footerColor; + padding: $footerVerticalPadding $footerHorizontalPadding; + vertical-align: $footerVerticalAlign; + font-style: $footerFontStyle; + font-weight: $footerFontWeight; + text-transform: $footerTextTransform; + } + + tr>th:first-child { + border-left: none; + } + + tr:first-child>th:first-child { + border-radius: 0em 0em 0em $borderRadius; + } + + tr:first-child>th:last-child { + border-radius: 0em 0em $borderRadius 0em; + } + + tr:first-child>th:only-child { + border-radius: 0em 0em $borderRadius $borderRadius; + } + } + + /* Table Row */ + tr td { + border-top: $rowBorder; + } + + tr:first-child td { + border-top: none; + } + + /* Repeated tbody */ + tbody+tbody tr:first-child td { + border-top: $rowBorder; + } + + /* Table Cells */ + td { + padding: $cellVerticalPadding $cellHorizontalPadding; + text-align: $cellTextAlign; + } +} + + + + + + + + +/* Icons */ +.ui.table>.icon { + vertical-align: $iconVerticalAlign; +} + +.ui.table>.icon:only-child { + margin: 0em; +} + +/* Table Segment */ +.ui.table.segment { + padding: 0em; +} + +.ui.table.segment:after { + display: none; +} + +.ui.table.segment.stacked:after { + display: block; +} + +/* Responsive */ +@media only screen and (max-width: variables.$largestMobileScreen) { + .ui.table:not(.unstackable) { + width: 100%; + } + + .ui.table:not(.unstackable) tbody, + .ui.table:not(.unstackable) tr, + .ui.table:not(.unstackable) tr>th, + .ui.table:not(.unstackable) tr>td { + display: block !important; + width: auto !important; + display: block !important; + } + + .ui.table:not(.unstackable) { + padding: 0em; + } + + .ui.table:not(.unstackable) thead { + display: $responsiveHeaderDisplay; + } + + .ui.table:not(.unstackable) tfoot { + display: $responsiveFooterDisplay; + } + + .ui.table:not(.unstackable) tr { + padding-top: $responsiveRowVerticalPadding; + padding-bottom: $responsiveRowVerticalPadding; + box-shadow: $responsiveRowBoxShadow; + } + + .ui.table:not(.unstackable) tr>th, + .ui.table:not(.unstackable) tr>td { + background: none; + border: none !important; + padding: $responsiveCellVerticalPadding $responsiveCellHorizontalPadding !important; + box-shadow: $responsiveCellBoxShadow; + } + + .ui.table:not(.unstackable) th:first-child, + .ui.table:not(.unstackable) td:first-child { + font-weight: $responsiveCellHeaderFontWeight; + } + + /* Definition Table */ + .ui.definition.table:not(.unstackable) thead th:first-child { + box-shadow: none !important; + } +} + +/******************************* + Coupling + *******************************/ + +/* UI Image */ +// .ui.table th .image, +// .ui.table th .image img, +// .ui.table td .image, +// .ui.table td .image img { +// max-width: none; +// } + +/******************************* + Types + *******************************/ + +/*-------------- + Complex + ---------------*/ + +.ui.structured.table { + border-collapse: collapse; +} + +.ui.structured.table thead th { + border-left: $headerDivider; + border-right: $headerDivider; +} + +.ui.structured.sortable.table thead th { + border-left: $sortableBorder; + border-right: $sortableBorder; +} + +.ui.structured.basic.table th { + border-left: $basicTableHeaderDivider; + border-right: $basicTableHeaderDivider; +} + +.ui.structured.celled.table tr th, +.ui.structured.celled.table tr td { + border-left: $cellBorder; + border-right: $cellBorder; +} + +/*-------------- + Definition + ---------------*/ + +.ui.definition.table thead:not(.full-width) th:first-child { + pointer-events: none; + background: $definitionHeaderBackground; + font-weight: $definitionHeaderFontWeight; + color: $definitionHeaderColor; + box-shadow: -$borderWidth -$borderWidth 0px $borderWidth $definitionPageBackground; +} + +.ui.definition.table tfoot:not(.full-width) th:first-child { + pointer-events: none; + background: $definitionFooterBackground; + font-weight: $definitionFooterColor; + color: $definitionFooterFontWeight; + box-shadow: $borderWidth $borderWidth 0px $borderWidth $definitionPageBackground; +} + +/* Remove Border */ +.ui.celled.definition.table thead:not(.full-width) th:first-child { + box-shadow: 0px -$borderWidth 0px $borderWidth $definitionPageBackground; +} + +.ui.celled.definition.table tfoot:not(.full-width) th:first-child { + box-shadow: 0px $borderWidth 0px $borderWidth $definitionPageBackground; +} + +/* Highlight Defining Column */ +.ui.definition.table tr td:first-child:not(.ignored), +.ui.definition.table tr td.definition { + background: $definitionColumnBackground; + font-weight: $definitionColumnFontWeight; + color: $definitionColumnColor; + text-transform: $definitionColumnTextTransform; + box-shadow: $definitionColumnBoxShadow; + text-align: $definitionColumnTextAlign; + font-size: $definitionColumnFontSize; + padding-left: $definitionColumnHorizontalPadding; + padding-right: $definitionColumnHorizontalPadding; +} + +/* Fix 2nd Column */ +.ui.definition.table thead:not(.full-width) th:nth-child(2) { + border-left: $borderWidth solid colors.$borderColor; +} + +.ui.definition.table tfoot:not(.full-width) th:nth-child(2) { + border-left: $borderWidth solid colors.$borderColor; +} + +.ui.definition.table td:nth-child(2) { + border-left: $borderWidth solid colors.$borderColor; +} + +/******************************* + States + *******************************/ + +/*-------------- + Positive + ---------------*/ + +.ui.table tr.positive, +.ui.table td.positive { + box-shadow: $positiveBoxShadow; +} + +.ui.table tr.positive, +.ui.table td.positive { + background: colors.$positiveBackgroundColor !important; + color: $positiveColor !important; +} + +/*-------------- + Negative + ---------------*/ + +.ui.table tr.negative, +.ui.table td.negative { + box-shadow: $negativeBoxShadow; +} + +.ui.table tr.negative, +.ui.table td.negative { + background: colors.$negativeBackgroundColor !important; + color: $negativeColor !important; +} + +/*-------------- + Error + ---------------*/ + +.ui.table tr.error, +.ui.table td.error { + box-shadow: $errorBoxShadow; +} + +.ui.table tr.error, +.ui.table td.error { + background: colors.$errorBackgroundColor !important; + color: $errorColor !important; +} + +/*-------------- + Warning + ---------------*/ + +.ui.table tr.warning, +.ui.table td.warning { + box-shadow: $warningBoxShadow; +} + +.ui.table tr.warning, +.ui.table td.warning { + background: colors.$warningBackgroundColor !important; + color: $warningColor !important; +} + +/*-------------- + Active + ---------------*/ + +.ui.table tr.active, +.ui.table td.active { + box-shadow: $activeBoxShadow; +} + +.ui.table tr.active, +.ui.table td.active { + background: $activeBackgroundColor !important; + color: $activeColor !important; +} + +/*-------------- + Disabled + ---------------*/ + +.ui.table tr.disabled td, +.ui.table tr td.disabled, +.ui.table tr.disabled:hover, +.ui.table tr:hover td.disabled { + pointer-events: none; + color: colors.$disabledTextColor; +} + +/******************************* + Variations + *******************************/ + +/*-------------- + Stackable + ---------------*/ + +@media only screen and (max-width: variables.$largestTabletScreen) { + + .ui[class*="tablet stackable"].table, + .ui[class*="tablet stackable"].table tbody, + .ui[class*="tablet stackable"].table tr, + .ui[class*="tablet stackable"].table tr>th, + .ui[class*="tablet stackable"].table tr>td { + display: block !important; + width: 100% !important; + display: block !important; + } + + .ui[class*="tablet stackable"].table { + padding: 0em; + } + + .ui[class*="tablet stackable"].table thead { + display: $responsiveHeaderDisplay; + } + + .ui[class*="tablet stackable"].table tfoot { + display: $responsiveFooterDisplay; + } + + .ui[class*="tablet stackable"].table tr { + padding-top: $responsiveRowVerticalPadding; + padding-bottom: $responsiveRowVerticalPadding; + box-shadow: $responsiveRowBoxShadow; + } + + .ui[class*="tablet stackable"].table tr>th, + .ui[class*="tablet stackable"].table tr>td { + background: none; + border: none !important; + padding: $responsiveCellVerticalPadding $responsiveCellHorizontalPadding; + box-shadow: $responsiveCellBoxShadow; + } + + /* Definition Table */ + .ui.definition[class*="tablet stackable"].table thead th:first-child { + box-shadow: none !important; + } +} + +/*-------------- + Text Alignment + ---------------*/ + +.ui.table[class*="left aligned"], +.ui.table [class*="left aligned"] { + text-align: left; +} + +.ui.table[class*="center aligned"], +.ui.table [class*="center aligned"] { + text-align: center; +} + +.ui.table[class*="right aligned"], +.ui.table [class*="right aligned"] { + text-align: right; +} + +/*------------------ + Vertical Alignment + ------------------*/ + +.ui.table[class*="top aligned"], +.ui.table [class*="top aligned"] { + vertical-align: top; +} + +.ui.table[class*="middle aligned"], +.ui.table [class*="middle aligned"] { + vertical-align: middle; +} + +.ui.table[class*="bottom aligned"], +.ui.table [class*="bottom aligned"] { + vertical-align: bottom; +} + +/*-------------- + Collapsing + ---------------*/ + +.ui.table th.collapsing, +.ui.table td.collapsing { + width: 1px; + white-space: nowrap; +} + +/*-------------- + Fixed + ---------------*/ + +.ui.fixed.table { + table-layout: fixed; +} + +.ui.fixed.table th, +.ui.fixed.table td { + overflow: hidden; + text-overflow: ellipsis; +} + +/*-------------- + Selectable + ---------------*/ + +.ui.selectable.table tbody tr:hover, +.ui.table tbody tr td.selectable:hover { + background: $selectableBackground !important; + color: $selectableTextColor !important; +} + +.ui.selectable.inverted.table tbody tr:hover, +.ui.inverted.table tbody tr td.selectable:hover { + background: $selectableInvertedBackground !important; + color: $selectableInvertedTextColor !important; +} + +/* Selectable Cell Link */ +.ui.table tbody tr td.selectable { + padding: 0em; +} + +.ui.table tbody tr td.selectable>a:not(.ui) { + display: block; + color: inherit; + padding: $cellVerticalPadding $cellHorizontalPadding; +} + +/* Other States */ +.ui.selectable.table tr.error:hover, +.ui.table tr td.selectable.error:hover, +.ui.selectable.table tr:hover td.error { + background: $errorBackgroundHover !important; + color: $errorColorHover !important; +} + +.ui.selectable.table tr.warning:hover, +.ui.table tr td.selectable.warning:hover, +.ui.selectable.table tr:hover td.warning { + background: $warningBackgroundHover !important; + color: $warningColorHover !important; +} + +.ui.selectable.table tr.active:hover, +.ui.table tr td.selectable.active:hover, +.ui.selectable.table tr:hover td.active { + background: $activeBackgroundColor !important; + color: $activeColor !important; +} + +.ui.selectable.table tr.positive:hover, +.ui.table tr td.selectable.positive:hover, +.ui.selectable.table tr:hover td.positive { + background: $positiveBackgroundHover !important; + color: $positiveColorHover !important; +} + +.ui.selectable.table tr.negative:hover, +.ui.table tr td.selectable.negative:hover, +.ui.selectable.table tr:hover td.negative { + background: $negativeBackgroundHover !important; + color: $negativeColorHover !important; +} + +/*------------------- + Attached + --------------------*/ + +/* Middle */ +.ui.attached.table { + top: 0px; + bottom: 0px; + border-radius: 0px; + margin: 0em $attachedHorizontalOffset; + width: $attachedWidth; + max-width: $attachedWidth; + box-shadow: $attachedBoxShadow; + border: $attachedBorder; +} + +.ui.attached+.ui.attached.table:not(.top) { + border-top: none; +} + +/* Top */ +.ui[class*="top attached"].table { + bottom: 0px; + margin-bottom: 0em; + top: $attachedTopOffset; + margin-top: $verticalMargin; + border-radius: $borderRadius $borderRadius 0em 0em; +} + +.ui.table[class*="top attached"]:first-child { + margin-top: 0em; +} + +/* Bottom */ +.ui[class*="bottom attached"].table { + bottom: 0px; + margin-top: 0em; + top: $attachedBottomOffset; + margin-bottom: $verticalMargin; + box-shadow: $attachedBottomBoxShadow; + border-radius: 0em 0em $borderRadius $borderRadius; +} + +.ui[class*="bottom attached"].table:last-child { + margin-bottom: 0em; +} + +/*-------------- + Striped + ---------------*/ + +/* Table Striping */ +.ui.striped.table>tr:nth-child(2n), +.ui.striped.table tbody tr:nth-child(2n) { + background-color: $stripedBackground; +} + +/* Stripes */ +.ui.inverted.striped.table>tr:nth-child(2n), +.ui.inverted.striped.table tbody tr:nth-child(2n) { + background-color: $invertedStripedBackground; +} + +/* Allow striped active hover */ +.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover { + background: $activeBackgroundHover !important; + color: $activeColorHover !important; +} + +// Seth Addition: +/* States */ +.ui.basic.striped.table tbody tr.negative:nth-child(2n) { + background-color: colors.$negativeBackgroundColor !important; +} + +.ui.basic.striped.table tbody tr.positive:nth-child(2n) { + background-color: colors.$positiveBackgroundColor !important; +} + +/*-------------- + Single Line + ---------------*/ + +.ui.table[class*="single line"], +.ui.table [class*="single line"] { + white-space: nowrap; +} + +.ui.table[class*="single line"], +.ui.table [class*="single line"] { + white-space: nowrap; +} + +/*-------------- + Sortable + ---------------*/ + +.ui.sortable.table thead th { + cursor: pointer; + white-space: nowrap; + border-left: $sortableBorder; + color: $sortableColor; +} + +.ui.sortable.table thead th:first-child { + border-left: none; +} + +.ui.sortable.table thead th.sorted, +.ui.sortable.table thead th.sorted:hover { + user-select: none; +} + +.ui.sortable.table thead th:after { + display: none; + font-style: normal; + font-weight: variables.$normal; + text-decoration: inherit; + content: ""; + height: 1em; + width: $sortableIconWidth; + opacity: $sortableIconOpacity; + margin: 0em 0em 0em $sortableIconDistance; + font-family: $sortableIconFont; +} + +.ui.sortable.table thead th.ascending:after { + content: $sortableIconAscending; +} + +.ui.sortable.table thead th.descending:after { + content: $sortableIconDescending; +} + +/* Hover */ +.ui.sortable.table th.disabled:hover { + cursor: auto; + color: $sortableDisabledColor; +} + +.ui.sortable.table thead th:hover { + background: $sortableHoverBackground; + color: $sortableHoverColor; +} + +/* Sorted */ +.ui.sortable.table thead th.sorted { + background: $sortableActiveBackground; + color: $sortableActiveColor; +} + +.ui.sortable.table thead th.sorted:after { + display: inline-block; +} + +/* Sorted Hover */ +.ui.sortable.table thead th.sorted:hover { + background: $sortableActiveHoverBackground; + color: $sortableActiveHoverColor; +} + +/* Inverted */ +.ui.inverted.sortable.table thead th.sorted { + background: $sortableInvertedActiveBackground; + color: $sortableInvertedActiveColor; +} + +.ui.inverted.sortable.table thead th:hover { + background: $sortableInvertedHoverBackground; + color: $sortableInvertedHoverColor; +} + +.ui.inverted.sortable.table thead th { + border-left-color: $sortableInvertedBorderColor; + border-right-color: $sortableInvertedBorderColor; +} + +/*-------------- + Inverted + ---------------*/ + +/* Text Color */ +.ui.inverted.table { + background: $invertedBackground; + color: $invertedCellColor; + border: $invertedBorder; +} + +.ui.inverted.table th { + background-color: $invertedHeaderBackground; + border-color: $invertedHeaderBorderColor !important; + color: $invertedHeaderColor !important; +} + +.ui.inverted.table tr td { + border-color: $invertedCellBorderColor !important; +} + +.ui.inverted.table tr.disabled td, +.ui.inverted.table tr td.disabled, +.ui.inverted.table tr.disabled:hover td, +.ui.inverted.table tr:hover td.disabled { + pointer-events: none; + color: colors.$invertedDisabledTextColor; +} + +/* Definition */ +.ui.inverted.definition.table tfoot:not(.full-width) th:first-child, +.ui.inverted.definition.table thead:not(.full-width) th:first-child { + background: $definitionPageBackground; +} + +.ui.inverted.definition.table tr td:first-child { + background: $invertedDefinitionColumnBackground; + color: $invertedDefinitionColumnColor; +} + +/*-------------- + Collapsing + ---------------*/ + +.ui.collapsing.table { + width: auto; +} + +/*-------------- + Basic + ---------------*/ + +.ui.basic.table { + background: $basicTableBackground; + border: $basicTableBorder; + box-shadow: $basicBoxShadow; +} + +.ui.basic.table thead, +.ui.basic.table tfoot { + box-shadow: none; +} + +.ui.basic.table th { + background: $basicTableHeaderBackground; + border-left: $basicTableHeaderDivider; +} + +.ui.basic.table tbody tr { + border-bottom: $basicTableCellBorder; +} + +.ui.basic.table td { + background: $basicTableCellBackground; +} + +.ui.basic.striped.table tbody tr:nth-child(2n) { + background-color: $basicTableStripedBackground !important; +} + +/* Very Basic */ +.ui[class*="very basic"].table { + border: none; +} + +.ui[class*="very basic"].table:not(.sortable):not(.striped) th, +.ui[class*="very basic"].table:not(.sortable):not(.striped) td { + padding: $basicTableCellPadding; +} + +.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child, +.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child { + padding-left: 0em; +} + +.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child, +.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child { + padding-right: 0em; +} + +.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th { + padding-top: 0em; +} + +/*-------------- + Celled + ---------------*/ + +.ui.celled.table tr th, +.ui.celled.table tr td { + border-left: $cellBorder; +} + +.ui.celled.table tr th:first-child, +.ui.celled.table tr td:first-child { + border-left: none; +} + +/*-------------- + Padded + ---------------*/ + +.ui.padded.table th { + padding-left: $paddedHorizontalPadding; + padding-right: $paddedHorizontalPadding; +} + +.ui.padded.table th, +.ui.padded.table td { + padding: $paddedVerticalPadding $paddedHorizontalPadding; +} + +/* Very */ +.ui[class*="very padded"].table th { + padding-left: $veryPaddedHorizontalPadding; + padding-right: $veryPaddedHorizontalPadding; +} + +.ui[class*="very padded"].table td { + padding: $veryPaddedVerticalPadding $veryPaddedHorizontalPadding; +} + +/*-------------- + Compact + ---------------*/ + +.ui.compact.table th { + padding-left: $compactHorizontalPadding; + padding-right: $compactHorizontalPadding; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.ui.compact.table td { + padding: $compactVerticalPadding $compactHorizontalPadding; +} + +/* Very */ +.ui[class*="very compact"].table th { + padding-left: $veryCompactHorizontalPadding; + padding-right: $veryCompactHorizontalPadding; +} + +.ui[class*="very compact"].table td { + padding: $veryCompactVerticalPadding $veryCompactHorizontalPadding; +} + +/*-------------- + Sizes + (These are being sized down a level corresponding to their name, post CSS refactor, could change back later if theres a single story page redesign) + ---------------*/ + +/* Small */ +.ui.small.table { + font-size: variables.$tiny; +} + +/* Standard */ +.ui.table { + font-size: variables.$small; +} + +/* Large */ +.ui.large.table { + font-size: variables.$medium; +} + +/*-------------- + DataTables + ---------------*/ + +.ui.table.dataTable { + width: 100% !important; + + th.sorting, + th.sorting_asc, + th.sorting_desc { + cursor: pointer; + } + + th:after { + top: 0px !important; + } + + thead { + &.ui.sticky.fixed { + background: white; + } + + th { + line-height: 1rem; + } + } +} + +table.dataTable.table { + margin: 0; +} + +table.dataTable.table thead th, +table.dataTable.table thead td { + position: relative; +} + +// table.dataTable.table thead th.sorting, +// table.dataTable.table thead th.sorting_asc, +// table.dataTable.table thead th.sorting_desc, +// table.dataTable.table thead td.sorting, +// table.dataTable.table thead td.sorting_asc, +// table.dataTable.table thead td.sorting_desc { +// padding-right: 20px; +// } +table.dataTable.table thead th.sorting:after, +table.dataTable.table thead th.sorting_asc:after, +table.dataTable.table thead th.sorting_desc:after, +table.dataTable.table thead td.sorting:after, +table.dataTable.table thead td.sorting_asc:after, +table.dataTable.table thead td.sorting_desc:after { + display: inline-block; + margin-left: 5px; + float: right; + font-family: Icons; +} + +table.dataTable.table thead th.sorting:after, +table.dataTable.table thead td.sorting:after { + content: "\ea6d"; + color: #ddd; + font-size: 0.8em; +} + +table.dataTable.table thead th.sorting_asc:after, +table.dataTable.table thead td.sorting_asc:after { + content: "\ea6d"; +} + +table.dataTable.table thead th.sorting_desc:after, +table.dataTable.table thead td.sorting_desc:after { + content: "\ea74"; +} + +table.dataTable.table td, +table.dataTable.table th { + -webkit-box-sizing: content-box; + box-sizing: content-box; +} + +table.dataTable.table td.dataTables_empty, +table.dataTable.table th.dataTables_empty { + text-align: center; +} + +table.dataTable.table.nowrap th, +table.dataTable.table.nowrap td { + white-space: nowrap; +} + +div.dataTables_wrapper div.dataTables_length select { + vertical-align: middle; + min-height: 2.7142em; +} + +div.dataTables_wrapper div.dataTables_length .ui.selection.dropdown { + min-width: 0; +} + +div.dataTables_wrapper div.dataTables_filter input { + margin-left: 0.5em; +} + +div.dataTables_wrapper div.dataTables_info { + padding-top: 13px; + white-space: nowrap; +} + +div.dataTables_wrapper div.dataTables_processing { + position: absolute; + top: 50%; + left: 50%; + width: 200px; + margin-left: -100px; + text-align: center; +} + +div.dataTables_wrapper div.row.dt-table { + padding: 0; +} + +div.dataTables_wrapper div.dataTables_scrollHead table.dataTable { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + border-bottom: none; +} + +div.dataTables_wrapper div.dataTables_scrollBody thead .sorting:after, +div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_asc:after, +div.dataTables_wrapper div.dataTables_scrollBody thead .sorting_desc:after { + display: none; +} + +div.dataTables_wrapper div.dataTables_scrollBody table.dataTable { + border-radius: 0; + border-top: none; + border-bottom-width: 0; +} + +div.dataTables_wrapper div.dataTables_scrollBody table.dataTable.no-footer { + border-bottom-width: 1px; +} + +div.dataTables_wrapper div.dataTables_scrollFoot table.dataTable { + border-top-right-radius: 0; + border-top-left-radius: 0; + border-top: none; +} + +/* Responsive */ + +// 1. Inline +table.dataTable.dtr-inline.collapsed>tbody>tr>td.child, +table.dataTable.dtr-inline.collapsed>tbody>tr>th.child, +table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty { + cursor: default !important; +} + +table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before, +table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before, +table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before { + display: none !important; +} + +table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child, +table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child { + position: relative; + padding-left: 30px; + cursor: pointer; +} + +table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before, +table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before { + top: 9px; + left: 4px; + height: 14px; + width: 14px; + margin-right: 0.5rem; + display: inline; + color: black; + border: none; + box-sizing: content-box; + text-align: center; + text-indent: 0 !important; + font-family: "Courier New", Courier, monospace; + line-height: 14px; + content: "+"; +} + +table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, +table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before { + content: "-"; +} + +table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child, +table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child { + padding-left: 27px; +} + +table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before, +table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before { + top: 5px; + left: 4px; + height: 14px; + width: 14px; + border-radius: 14px; + line-height: 14px; + text-indent: 3px; +} + +// 2. Column +table.dataTable.dtr-column>tbody>tr>td.control, +table.dataTable.dtr-column>tbody>tr>th.control { + position: relative; + cursor: pointer; +} + +table.dataTable.dtr-column>tbody>tr>td.control:before, +table.dataTable.dtr-column>tbody>tr>th.control:before { + top: 50%; + left: 50%; + height: 16px; + width: 16px; + margin-top: -10px; + margin-left: -10px; + display: block; + position: absolute; + color: white; + border: 2px solid white; + border-radius: 14px; + box-shadow: 0 0 3px #444; + box-sizing: content-box; + text-align: center; + text-indent: 0 !important; + font-family: "Courier New", Courier, monospace; + line-height: 14px; + content: "+"; + background-color: #21ba45; +} + +table.dataTable.dtr-column>tbody>tr.parent td.control:before, +table.dataTable.dtr-column>tbody>tr.parent th.control:before { + content: "-"; +} + +// 3. Child Row +table.dataTable>tbody>tr.child { + padding: 0.5em 1em; + + &:hover { + background: transparent !important; + } + + ul.dtr-details { + display: block; + list-style-type: none; + width: 100%; + margin: 0; + padding: 0; + + &>li { + list-style: none; + margin: 0; + margin-left: 1.3rem; + padding: $compactVerticalPadding 0; + + &:first-child { + padding-top: 0; + } + + &:last-child { + border-bottom: none; + } + } + } + + span.dtr-title { + display: inline-block; + min-width: 75px; + font-weight: bold; + } +} + +// 4. Modal +div.dtr-modal { + position: fixed; + box-sizing: border-box; + top: 0; + left: 0; + height: 100%; + width: 100%; + z-index: 100; + padding: 10em 1em; +} + +div.dtr-modal div.dtr-modal-display { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + width: 50%; + height: 50%; + overflow: auto; + margin: auto; + z-index: 102; + overflow: auto; + background-color: #f5f5f7; + border: 1px solid black; + border-radius: 0.5em; + box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); +} + +div.dtr-modal div.dtr-modal-content { + position: relative; + padding: 1em; +} + +div.dtr-modal div.dtr-modal-close { + position: absolute; + top: 6px; + right: 6px; + width: 22px; + height: 22px; + border: 1px solid #eaeaea; + background-color: #f9f9f9; + text-align: center; + border-radius: 3px; + cursor: pointer; + z-index: 12; +} + +div.dtr-modal div.dtr-modal-close:hover { + background-color: #eaeaea; +} + +div.dtr-modal div.dtr-modal-background { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 101; + background: rgba(0, 0, 0, 0.6); +} + +@media screen and (max-width: 767px) { + div.dtr-modal div.dtr-modal-display { + width: 95%; + } +} + +div.dtr-bs-modal table.table tr:first-child td { + border-top: none; +} + +/*-------------- + PRC Table Dropdown + ---------------*/ + +#js-prc-table-dropdown { + margin-bottom: 1rem; + + &>div:first-of-type { + margin-right: 1rem; + } + + &>div { + display: flex; + + &>.ui.button { + display: flex; + align-items: center; + } + } +} diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/transition.scss b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/transition.scss new file mode 100644 index 00000000..7a6b58c7 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/src/transition.scss @@ -0,0 +1,1228 @@ +/*! + * # Semantic UI - Transition + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + +@use "master.variables"as variables; + +/******************************* + Transition + *******************************/ + +$transitionDefaultEasing: variables.$defaultEasing; +$transitionDefaultFill: both; +$transitionDefaultDuration: 300ms; + +$use3DAcceleration: translateZ(0); +$backfaceVisibility: hidden; + +/******************************* + Transitions + *******************************/ + +.transition { + animation-iteration-count: 1; + animation-duration: $transitionDefaultDuration; + animation-timing-function: $transitionDefaultEasing; + animation-fill-mode: $transitionDefaultFill; +} + +/******************************* + States + *******************************/ + +/* Animating */ +.animating.transition { + backface-visibility: $backfaceVisibility; + visibility: visible !important; +} + +/* Loading */ +.loading.transition { + position: absolute; + top: -99999px; + left: -99999px; +} + +/* Hidden */ +.hidden.transition { + display: none; + visibility: hidden; +} + +/* Visible */ +.visible.transition { + display: block !important; + visibility: visible !important; + /* backface-visibility: $backfaceVisibility; + transform: $use3DAcceleration;*/ +} + +/* Disabled */ +.disabled.transition { + animation-play-state: paused; +} + +/******************************* + Variations + *******************************/ + +.looping.transition { + animation-iteration-count: infinite; +} + +/******************************* + Transitions + *******************************/ + +/* + Some transitions adapted from Animate CSS + https://github.com/daneden/animate.css + + Additional transitions adapted from Glide + by Nick Pettit - https://github.com/nickpettit/glide + */ + +/*-------------- + Browse + ---------------*/ + +.transition.browse { + animation-duration: 500ms; +} + +.transition.browse.in { + animation-name: browseIn; +} + +.transition.browse.out, +.transition.browse.left.out { + animation-name: browseOutLeft; +} + +.transition.browse.right.out { + animation-name: browseOutRight; +} + +/* In */ +@keyframes browseIn { + 0% { + transform: scale(0.8) translateZ(0px); + z-index: -1; + } + + 10% { + transform: scale(0.8) translateZ(0px); + z-index: -1; + opacity: 0.7; + } + + 80% { + transform: scale(1.05) translateZ(0px); + opacity: 1; + z-index: 999; + } + + 100% { + transform: scale(1) translateZ(0px); + z-index: 999; + } +} + +/* Out */ +@keyframes browseOutLeft { + 0% { + z-index: 999; + transform: translateX(0%) rotateY(0deg) rotateX(0deg); + } + + 50% { + z-index: -1; + transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); + } + + 80% { + opacity: 1; + } + + 100% { + z-index: -1; + transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); + opacity: 0; + } +} + +@keyframes browseOutRight { + 0% { + z-index: 999; + transform: translateX(0%) rotateY(0deg) rotateX(0deg); + } + + 50% { + z-index: 1; + transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); + } + + 80% { + opacity: 1; + } + + 100% { + z-index: 1; + transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); + opacity: 0; + } +} + +/*-------------- + Drop + ---------------*/ + +.drop.transition { + transform-origin: top center; + animation-duration: 400ms; + animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1); +} + +.drop.transition.in { + animation-name: dropIn; +} + +.drop.transition.out { + animation-name: dropOut; +} + +/* Drop */ +@keyframes dropIn { + 0% { + opacity: 0; + transform: scale(0); + } + + 100% { + opacity: 1; + transform: scale(1); + } +} + +@keyframes dropOut { + 0% { + opacity: 1; + transform: scale(1); + } + + 100% { + opacity: 0; + transform: scale(0); + } +} + +/*-------------- + Fade + ---------------*/ + +.transition.fade.in { + animation-name: fadeIn; +} + +.transition[class*="fade up"].in { + animation-name: fadeInUp; +} + +.transition[class*="fade down"].in { + animation-name: fadeInDown; +} + +.transition[class*="fade left"].in { + animation-name: fadeInLeft; +} + +.transition[class*="fade right"].in { + animation-name: fadeInRight; +} + +.transition.fade.out { + animation-name: fadeOut; +} + +.transition[class*="fade up"].out { + animation-name: fadeOutUp; +} + +.transition[class*="fade down"].out { + animation-name: fadeOutDown; +} + +.transition[class*="fade left"].out { + animation-name: fadeOutLeft; +} + +.transition[class*="fade right"].out { + animation-name: fadeOutRight; +} + +/* In */ +@keyframes fadeIn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes fadeInUp { + 0% { + opacity: 0; + transform: translateY(10%); + } + + 100% { + opacity: 1; + transform: translateY(0%); + } +} + +@keyframes fadeInDown { + 0% { + opacity: 0; + transform: translateY(-10%); + } + + 100% { + opacity: 1; + transform: translateY(0%); + } +} + +@keyframes fadeInLeft { + 0% { + opacity: 0; + transform: translateX(10%); + } + + 100% { + opacity: 1; + transform: translateX(0%); + } +} + +@keyframes fadeInRight { + 0% { + opacity: 0; + transform: translateX(-10%); + } + + 100% { + opacity: 1; + transform: translateX(0%); + } +} + +/* Out */ +@keyframes fadeOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes fadeOutUp { + 0% { + opacity: 1; + transform: translateY(0%); + } + + 100% { + opacity: 0; + transform: translateY(5%); + } +} + +@keyframes fadeOutDown { + 0% { + opacity: 1; + transform: translateY(0%); + } + + 100% { + opacity: 0; + transform: translateY(-5%); + } +} + +@keyframes fadeOutLeft { + 0% { + opacity: 1; + transform: translateX(0%); + } + + 100% { + opacity: 0; + transform: translateX(5%); + } +} + +@keyframes fadeOutRight { + 0% { + opacity: 1; + transform: translateX(0%); + } + + 100% { + opacity: 0; + transform: translateX(-5%); + } +} + +/*-------------- + Flips + ---------------*/ + +.flip.transition.in, +.flip.transition.out { + animation-duration: 600ms; +} + +.horizontal.flip.transition.in { + animation-name: horizontalFlipIn; +} + +.horizontal.flip.transition.out { + animation-name: horizontalFlipOut; +} + +.vertical.flip.transition.in { + animation-name: verticalFlipIn; +} + +.vertical.flip.transition.out { + animation-name: verticalFlipOut; +} + +/* In */ +@keyframes horizontalFlipIn { + 0% { + transform: perspective(2000px) rotateY(-90deg); + opacity: 0; + } + + 100% { + transform: perspective(2000px) rotateY(0deg); + opacity: 1; + } +} + +@keyframes verticalFlipIn { + 0% { + transform: perspective(2000px) rotateX(-90deg); + opacity: 0; + } + + 100% { + transform: perspective(2000px) rotateX(0deg); + opacity: 1; + } +} + +/* Out */ +@keyframes horizontalFlipOut { + 0% { + transform: perspective(2000px) rotateY(0deg); + opacity: 1; + } + + 100% { + transform: perspective(2000px) rotateY(90deg); + opacity: 0; + } +} + +@keyframes verticalFlipOut { + 0% { + transform: perspective(2000px) rotateX(0deg); + opacity: 1; + } + + 100% { + transform: perspective(2000px) rotateX(-90deg); + opacity: 0; + } +} + +/*-------------- + Scale + ---------------*/ + +.scale.transition.in { + animation-name: scaleIn; +} + +.scale.transition.out { + animation-name: scaleOut; +} + +@keyframes scaleIn { + 0% { + opacity: 0; + transform: scale(0.8); + } + + 100% { + opacity: 1; + transform: scale(1); + } +} + +/* Out */ +@keyframes scaleOut { + 0% { + opacity: 1; + transform: scale(1); + } + + 100% { + opacity: 0; + transform: scale(0.9); + } +} + +/*-------------- + Fly + ---------------*/ + +/* Inward */ +.transition.fly { + animation-duration: 0.6s; + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); +} + +.transition.fly.in { + animation-name: flyIn; +} + +.transition[class*="fly up"].in { + animation-name: flyInUp; +} + +.transition[class*="fly down"].in { + animation-name: flyInDown; +} + +.transition[class*="fly left"].in { + animation-name: flyInLeft; +} + +.transition[class*="fly right"].in { + animation-name: flyInRight; +} + +/* Outward */ +.transition.fly.out { + animation-name: flyOut; +} + +.transition[class*="fly up"].out { + animation-name: flyOutUp; +} + +.transition[class*="fly down"].out { + animation-name: flyOutDown; +} + +.transition[class*="fly left"].out { + animation-name: flyOutLeft; +} + +.transition[class*="fly right"].out { + animation-name: flyOutRight; +} + +/* In */ +@keyframes flyIn { + 0% { + opacity: 0; + transform: scale3d(0.3, 0.3, 0.3); + } + + 20% { + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + transform: scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + transform: scale3d(0.97, 0.97, 0.97); + } + + 100% { + opacity: 1; + transform: scale3d(1, 1, 1); + } +} + +@keyframes flyInUp { + 0% { + opacity: 0; + transform: translate3d(0, 1500px, 0); + } + + 60% { + opacity: 1; + transform: translate3d(0, -20px, 0); + } + + 75% { + transform: translate3d(0, 10px, 0); + } + + 90% { + transform: translate3d(0, -5px, 0); + } + + 100% { + transform: translate3d(0, 0, 0); + } +} + +@keyframes flyInDown { + 0% { + opacity: 0; + transform: translate3d(0, -1500px, 0); + } + + 60% { + opacity: 1; + transform: translate3d(0, 25px, 0); + } + + 75% { + transform: translate3d(0, -10px, 0); + } + + 90% { + transform: translate3d(0, 5px, 0); + } + + 100% { + transform: none; + } +} + +@keyframes flyInLeft { + 0% { + opacity: 0; + transform: translate3d(1500px, 0, 0); + } + + 60% { + opacity: 1; + transform: translate3d(-25px, 0, 0); + } + + 75% { + transform: translate3d(10px, 0, 0); + } + + 90% { + transform: translate3d(-5px, 0, 0); + } + + 100% { + transform: none; + } +} + +@keyframes flyInRight { + 0% { + opacity: 0; + transform: translate3d(-1500px, 0, 0); + } + + 60% { + opacity: 1; + transform: translate3d(25px, 0, 0); + } + + 75% { + transform: translate3d(-10px, 0, 0); + } + + 90% { + transform: translate3d(5px, 0, 0); + } + + 100% { + transform: none; + } +} + +/* Out */ +@keyframes flyOut { + 20% { + transform: scale3d(0.9, 0.9, 0.9); + } + + 50%, + 55% { + opacity: 1; + transform: scale3d(1.1, 1.1, 1.1); + } + + 100% { + opacity: 0; + transform: scale3d(0.3, 0.3, 0.3); + } +} + +@keyframes flyOutUp { + 20% { + transform: translate3d(0, 10px, 0); + } + + 40%, + 45% { + opacity: 1; + transform: translate3d(0, -20px, 0); + } + + 100% { + opacity: 0; + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes flyOutDown { + 20% { + transform: translate3d(0, -10px, 0); + } + + 40%, + 45% { + opacity: 1; + transform: translate3d(0, 20px, 0); + } + + 100% { + opacity: 0; + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes flyOutRight { + 20% { + opacity: 1; + transform: translate3d(20px, 0, 0); + } + + 100% { + opacity: 0; + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes flyOutLeft { + 20% { + opacity: 1; + transform: translate3d(-20px, 0, 0); + } + + 100% { + opacity: 0; + transform: translate3d(2000px, 0, 0); + } +} + +/*-------------- + Slide + ---------------*/ + +.transition.slide.in, +.transition[class*="slide down"].in { + animation-name: slideInY; + transform-origin: top center; +} + +.transition[class*="slide up"].in { + animation-name: slideInY; + transform-origin: bottom center; +} + +.transition[class*="slide left"].in { + animation-name: slideInX; + transform-origin: center right; +} + +.transition[class*="slide right"].in { + animation-name: slideInX; + transform-origin: center left; +} + +.transition.slide.out, +.transition[class*="slide down"].out { + animation-name: slideOutY; + transform-origin: top center; +} + +.transition[class*="slide up"].out { + animation-name: slideOutY; + transform-origin: bottom center; +} + +.transition[class*="slide left"].out { + animation-name: slideOutX; + transform-origin: center right; +} + +.transition[class*="slide right"].out { + animation-name: slideOutX; + transform-origin: center left; +} + +/* In */ +@keyframes slideInY { + 0% { + opacity: 0; + transform: scaleY(0); + } + + 100% { + opacity: 1; + transform: scaleY(1); + } +} + +@keyframes slideInX { + 0% { + opacity: 0; + transform: scaleX(0); + } + + 100% { + opacity: 1; + transform: scaleX(1); + } +} + +/* Out */ +@keyframes slideOutY { + 0% { + opacity: 1; + transform: scaleY(1); + } + + 100% { + opacity: 0; + transform: scaleY(0); + } +} + +@keyframes slideOutX { + 0% { + opacity: 1; + transform: scaleX(1); + } + + 100% { + opacity: 0; + transform: scaleX(0); + } +} + +/*-------------- + Swing + ---------------*/ + +.transition.swing { + animation-duration: 800ms; +} + +.transition[class*="swing down"].in { + animation-name: swingInX; + transform-origin: top center; +} + +.transition[class*="swing up"].in { + animation-name: swingInX; + transform-origin: bottom center; +} + +.transition[class*="swing left"].in { + animation-name: swingInY; + transform-origin: center right; +} + +.transition[class*="swing right"].in { + animation-name: swingInY; + transform-origin: center left; +} + +.transition.swing.out, +.transition[class*="swing down"].out { + animation-name: swingOutX; + transform-origin: top center; +} + +.transition[class*="swing up"].out { + animation-name: swingOutX; + transform-origin: bottom center; +} + +.transition[class*="swing left"].out { + animation-name: swingOutY; + transform-origin: center right; +} + +.transition[class*="swing right"].out { + animation-name: swingOutY; + transform-origin: center left; +} + +/* In */ +@keyframes swingInX { + 0% { + transform: perspective(1000px) rotateX(90deg); + opacity: 0; + } + + 40% { + transform: perspective(1000px) rotateX(-30deg); + opacity: 1; + } + + 60% { + transform: perspective(1000px) rotateX(15deg); + } + + 80% { + transform: perspective(1000px) rotateX(-7.5deg); + } + + 100% { + transform: perspective(1000px) rotateX(0deg); + } +} + +@keyframes swingInY { + 0% { + transform: perspective(1000px) rotateY(-90deg); + opacity: 0; + } + + 40% { + transform: perspective(1000px) rotateY(30deg); + opacity: 1; + } + + 60% { + transform: perspective(1000px) rotateY(-17.5deg); + } + + 80% { + transform: perspective(1000px) rotateY(7.5deg); + } + + 100% { + transform: perspective(1000px) rotateY(0deg); + } +} + +/* Out */ +@keyframes swingOutX { + 0% { + transform: perspective(1000px) rotateX(0deg); + } + + 40% { + transform: perspective(1000px) rotateX(-7.5deg); + } + + 60% { + transform: perspective(1000px) rotateX(17.5deg); + } + + 80% { + transform: perspective(1000px) rotateX(-30deg); + opacity: 1; + } + + 100% { + transform: perspective(1000px) rotateX(90deg); + opacity: 0; + } +} + +@keyframes swingOutY { + 0% { + transform: perspective(1000px) rotateY(0deg); + } + + 40% { + transform: perspective(1000px) rotateY(7.5deg); + } + + 60% { + transform: perspective(1000px) rotateY(-10deg); + } + + 80% { + transform: perspective(1000px) rotateY(30deg); + opacity: 1; + } + + 100% { + transform: perspective(1000px) rotateY(-90deg); + opacity: 0; + } +} + +/*-------------- + Zoom + ---------------*/ + +.transition.zoom.in { + animation-name: zoomIn; +} + +.transition.zoom.out { + animation-name: zoomOut; +} + +@keyframes zoomIn { + 0% { + opacity: 1; + transform: scale(0); + } + + 100% { + opacity: 1; + transform: scale(1); + } +} + +@keyframes zoomOut { + 0% { + opacity: 1; + transform: scale(1); + } + + 100% { + opacity: 1; + transform: scale(0); + } +} + +/******************************* + Static Animations + *******************************/ + +/*-------------- + Emphasis + ---------------*/ + +.flash.transition { + animation-duration: 750ms; + animation-name: flash; +} + +.shake.transition { + animation-duration: 750ms; + animation-name: shake; +} + +.bounce.transition { + animation-duration: 750ms; + animation-name: bounce; +} + +.tada.transition { + animation-duration: 750ms; + animation-name: tada; +} + +.pulse.transition { + animation-duration: 500ms; + animation-name: pulse; +} + +.jiggle.transition { + animation-duration: 750ms; + animation-name: jiggle; +} + +.transition.glow { + animation-duration: 2000ms; + animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); +} + +.transition.glow { + animation-name: glow; +} + +/* Flash */ +@keyframes flash { + + 0%, + 50%, + 100% { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} + +/* Shake */ +@keyframes shake { + + 0%, + 100% { + transform: translateX(0); + } + + 10%, + 30%, + 50%, + 70%, + 90% { + transform: translateX(-10px); + } + + 20%, + 40%, + 60%, + 80% { + transform: translateX(10px); + } +} + +/* Bounce */ +@keyframes bounce { + + 0%, + 20%, + 50%, + 80%, + 100% { + transform: translateY(0); + } + + 40% { + transform: translateY(-30px); + } + + 60% { + transform: translateY(-15px); + } +} + +/* Tada */ +@keyframes tada { + 0% { + transform: scale(1); + } + + 10%, + 20% { + transform: scale(0.9) rotate(-3deg); + } + + 30%, + 50%, + 70%, + 90% { + transform: scale(1.1) rotate(3deg); + } + + 40%, + 60%, + 80% { + transform: scale(1.1) rotate(-3deg); + } + + 100% { + transform: scale(1) rotate(0); + } +} + +/* Pulse */ +@keyframes pulse { + 0% { + transform: scale(1); + opacity: 1; + } + + 50% { + transform: scale(0.9); + opacity: 0.7; + } + + 100% { + transform: scale(1); + opacity: 1; + } +} + +/* Jiggle */ +@keyframes jiggle { + 0% { + transform: scale3d(1, 1, 1); + } + + 30% { + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + transform: scale3d(1.05, 0.95, 1); + } + + 100% { + transform: scale3d(1, 1, 1); + } +} + +/* Glow */ +@keyframes glow { + 0% { + background-color: #fcfcfd; + } + + 30% { + background-color: #fff6cd; + } + + 100% { + background-color: #fcfcfd; + } +} \ No newline at end of file diff --git a/includes/interactives/legacy-containment-system/semantic-ui-css-shim/webpack.config.js b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/webpack.config.js new file mode 100644 index 00000000..71523753 --- /dev/null +++ b/includes/interactives/legacy-containment-system/semantic-ui-css-shim/webpack.config.js @@ -0,0 +1,25 @@ +const MiniCssExtractPlugin = require('mini-css-extract-plugin'); + +module.exports = { + module: { + rules: [ + { + test: /\.s[ac]ss$/i, + use: [ + // Extracts CSS into separate files + MiniCssExtractPlugin.loader, + // Translates CSS into CommonJS + 'css-loader', + // Compiles Sass to CSS + 'sass-loader', + ], + }, + ], + }, + plugins: [ + new MiniCssExtractPlugin({ + filename: '[name].css', + chunkFilename: '[id].css', + }), + ], +}; diff --git a/includes/taxonomies/topic-category/package.json b/includes/taxonomies/topic-category/package.json index e57f623c..0dede4c5 100644 --- a/includes/taxonomies/topic-category/package.json +++ b/includes/taxonomies/topic-category/package.json @@ -1,5 +1,5 @@ { - "name": "@pewresearch/taxonomies", + "name": "@pewresearch/taxonomies-category", "description": "Taxonomies for PRC Platform", "license": "GPL-2.0-or-later", "devDependencies": { diff --git a/package-lock.json b/package-lock.json index 43616a4a..65b97dff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,12 +7,7 @@ "name": "@pewresearch/prc-platform-core", "license": "GPL-2.0-or-later", "devDependencies": { - "@playwright/test": "^1.41.2", - "@wordpress/e2e-test-utils-playwright": "^0.18.0", - "@wordpress/e2e-tests": "^7.21.1", - "@wordpress/env": "^9.2.0", "@wordpress/scripts": "^27.1.0", - "eslint-plugin-playwright": "^0.22.2", "react": "^18.2.0", "react-dom": "^18.2.0", "taffydb": "^2.7.3", @@ -42,21 +37,6 @@ "node": ">=6.0.0" } }, - "node_modules/@axe-core/puppeteer": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/@axe-core/puppeteer/-/puppeteer-4.8.4.tgz", - "integrity": "sha512-qkHLqCMUK/YPerSss8IlrgVIo91cE2fqkF1V1rxUaJ7tYmNntbnbfgtw1uJh+yMSqgW1Ee5KWH7Z4Ge4h+DPDw==", - "dev": true, - "dependencies": { - "axe-core": "~4.8.3" - }, - "engines": { - "node": ">=6.4.0" - }, - "peerDependencies": { - "puppeteer": ">=1.10.0" - } - }, "node_modules/@babel/code-frame": { "version": "7.23.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", @@ -2791,21 +2771,6 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@kwsites/file-exists": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz", - "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==", - "dev": true, - "dependencies": { - "debug": "^4.1.1" - } - }, - "node_modules/@kwsites/promise-deferred": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz", - "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==", - "dev": true - }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", @@ -2873,6 +2838,7 @@ "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.41.2.tgz", "integrity": "sha512-qQB9h7KbibJzrDpkXkYvsmiDJK14FULCCZgEcoe2AvFAS64oCirWTwzTlAYEbKaRxWs5TFesE1Na6izMv3HfGg==", "dev": true, + "peer": true, "dependencies": { "playwright": "1.41.2" }, @@ -2939,75 +2905,6 @@ "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==", "dev": true }, - "node_modules/@preact/signals": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@preact/signals/-/signals-1.2.2.tgz", - "integrity": "sha512-ColCqdo4cRP18bAuIR4Oik5rDpiyFtPIJIygaYPMEAwTnl4buWkBOflGBSzhYyPyJfKpkwlekrvK+1pzQ2ldWw==", - "dev": true, - "dependencies": { - "@preact/signals-core": "^1.4.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - }, - "peerDependencies": { - "preact": "10.x" - } - }, - "node_modules/@preact/signals-core": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/@preact/signals-core/-/signals-core-1.5.1.tgz", - "integrity": "sha512-dE6f+WCX5ZUDwXzUIWNMhhglmuLpqJhuy3X3xHrhZYI0Hm2LyQwOu0l9mdPiWrVNsE+Q7txOnJPgtIqHCYoBVA==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, - "node_modules/@puppeteer/browsers": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.0.0.tgz", - "integrity": "sha512-3PS82/5+tnpEaUWonjAFFvlf35QHF15xqyGd34GBa5oP5EPVfFXRsbSxIGYf1M+vZlqBZ3oxT1kRg9OYhtt8ng==", - "dev": true, - "peer": true, - "dependencies": { - "debug": "4.3.4", - "extract-zip": "2.0.1", - "progress": "2.0.3", - "proxy-agent": "6.3.1", - "tar-fs": "3.0.4", - "unbzip2-stream": "1.4.3", - "yargs": "17.7.2" - }, - "bin": { - "browsers": "lib/cjs/main-cli.js" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@puppeteer/browsers/node_modules/extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "dev": true, - "peer": true, - "dependencies": { - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - }, - "engines": { - "node": ">= 10.17.0" - }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" - } - }, "node_modules/@sentry/core": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/core/-/core-6.19.7.tgz", @@ -3150,18 +3047,6 @@ "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, "node_modules/@sinonjs/commons": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", @@ -3437,18 +3322,6 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "dev": true, - "dependencies": { - "defer-to-connect": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@tannin/compile": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz", @@ -3564,18 +3437,6 @@ "@types/node": "*" } }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dev": true, - "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, "node_modules/@types/connect": { "version": "3.4.38", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", @@ -3664,12 +3525,6 @@ "@types/node": "*" } }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", - "dev": true - }, "node_modules/@types/http-errors": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", @@ -3732,15 +3587,6 @@ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "dev": true }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/mime": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", @@ -3801,15 +3647,6 @@ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true }, - "node_modules/@types/responselike": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", - "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", @@ -4547,28 +4384,6 @@ "webpack": "^5.0.0" } }, - "node_modules/@wordpress/e2e-test-utils": { - "version": "10.21.0", - "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils/-/e2e-test-utils-10.21.0.tgz", - "integrity": "sha512-Oh62GkqAKBIyD0IO3/Oa0l42yL/jbpTRDyh8H+t6gZbHWYTDvEGEr/LOqI9bk5Lwk7Jt5jpN6136FDwyMzHSXw==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/api-fetch": "^6.47.0", - "@wordpress/keycodes": "^3.50.0", - "@wordpress/url": "^3.51.0", - "change-case": "^4.1.2", - "form-data": "^4.0.0", - "node-fetch": "^2.6.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "jest": ">=29", - "puppeteer-core": ">=11" - } - }, "node_modules/@wordpress/e2e-test-utils-playwright": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.18.0.tgz", @@ -4592,59 +4407,6 @@ "@playwright/test": ">=1" } }, - "node_modules/@wordpress/e2e-tests": { - "version": "7.21.1", - "resolved": "https://registry.npmjs.org/@wordpress/e2e-tests/-/e2e-tests-7.21.1.tgz", - "integrity": "sha512-EZjTc4IzTqRY3neW5nuixzViP5RSKczLq2+Voi3ndcZ/FVT05UBfRbgle1cGx5pESv7b3/K+bUXSvpwMWcbk5A==", - "dev": true, - "dependencies": { - "@wordpress/e2e-test-utils": "^10.21.0", - "@wordpress/interactivity": "^4.0.1", - "@wordpress/interactivity-router": "^1.0.1", - "@wordpress/jest-console": "^7.21.0", - "@wordpress/jest-puppeteer-axe": "^6.21.0", - "@wordpress/scripts": "^27.1.0", - "@wordpress/url": "^3.51.0", - "chalk": "^4.0.0", - "expect-puppeteer": "^4.4.0", - "filenamify": "^4.2.0", - "jest-message-util": "^29.6.2", - "jest-snapshot": "^29.6.2", - "uuid": "^9.0.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "jest": ">=29", - "puppeteer-core": ">=11", - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@wordpress/env": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-9.2.0.tgz", - "integrity": "sha512-2gl65WYbkuTjnW2SHKjeqdpLTgnPc/xVvFiwG+2p/RJwDHSuw1xXSdFqFUh3+wC/4cuXy9b2ZBm/SYsBoc8DDw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "copy-dir": "^1.3.0", - "docker-compose": "^0.24.3", - "extract-zip": "^1.6.7", - "got": "^11.8.5", - "inquirer": "^7.1.0", - "js-yaml": "^3.13.1", - "ora": "^4.0.2", - "rimraf": "^3.0.2", - "simple-git": "^3.5.0", - "terminal-link": "^2.0.0", - "yargs": "^17.3.0" - }, - "bin": { - "wp-env": "bin/wp-env" - } - }, "node_modules/@wordpress/eslint-plugin": { "version": "17.7.0", "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-17.7.0.tgz", @@ -4778,32 +4540,6 @@ "node": ">=12" } }, - "node_modules/@wordpress/interactivity": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@wordpress/interactivity/-/interactivity-4.0.1.tgz", - "integrity": "sha512-sw9Cqoj+MNF9FAU5nJC3nAqoH7kgUvh6HwaEMaLdSlK0qEcp05ba5x7geDSNi5cUWY4QSk1r9DH2jKUg9zfpNg==", - "dev": true, - "dependencies": { - "@preact/signals": "^1.2.2", - "deepsignal": "^1.4.0", - "preact": "^10.19.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@wordpress/interactivity-router": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@wordpress/interactivity-router/-/interactivity-router-1.0.1.tgz", - "integrity": "sha512-XShZV0+Sqs+1C26nVyns6nT8kjAGRBJNArVPceZlkkpsX7DIRZcEZ2larWxOuQFWk67lzIRiXd5V51L71b8XrQ==", - "dev": true, - "dependencies": { - "@wordpress/interactivity": "^4.0.1" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/@wordpress/jest-console": { "version": "7.21.0", "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.21.0.tgz", @@ -4837,28 +4573,6 @@ "jest": ">=29" } }, - "node_modules/@wordpress/jest-puppeteer-axe": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-puppeteer-axe/-/jest-puppeteer-axe-6.21.0.tgz", - "integrity": "sha512-Rj07W3VY+g87EcPneS48IOcV40g9i1M9q6yAAMMGuY78UsQHt+RZEIr3FlE9lytUw8E83RPBiWcXMm2kFGrFcw==", - "dev": true, - "dependencies": { - "@axe-core/puppeteer": "^4.0.0", - "@babel/runtime": "^7.16.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "jest": ">=29", - "puppeteer": ">=11" - }, - "peerDependenciesMeta": { - "puppeteer": { - "optional": true - } - } - }, "node_modules/@wordpress/keycodes": { "version": "3.50.0", "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-3.50.0.tgz", @@ -5749,15 +5463,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/axe-core": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.3.tgz", - "integrity": "sha512-d5ZQHPSPkF9Tw+yfyDcRoUOc4g/8UloJJe5J8m4L5+c7AtDdjDLRxew/knnI4CxvtdxEUVgWz4x3OIQUIFiMfw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/axios": { "version": "1.6.7", "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", @@ -6275,33 +5980,6 @@ "node": ">= 0.8" } }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "dev": true, - "engines": { - "node": ">=10.6.0" - } - }, - "node_modules/cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", - "dev": true, - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/call-bind": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", @@ -6470,12 +6148,6 @@ "node": ">=10" } }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, "node_modules/check-node-version": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/check-node-version/-/check-node-version-4.2.1.tgz", @@ -6581,20 +6253,6 @@ "node": ">=6.0" } }, - "node_modules/chromium-bidi": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.8.tgz", - "integrity": "sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==", - "dev": true, - "peer": true, - "dependencies": { - "mitt": "3.0.1", - "urlpattern-polyfill": "10.0.0" - }, - "peerDependencies": { - "devtools-protocol": "*" - } - }, "node_modules/ci-info": { "version": "3.9.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", @@ -6632,39 +6290,6 @@ "webpack": "*" } }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -6679,15 +6304,6 @@ "node": ">=12" } }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, "node_modules/clone-deep": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", @@ -6704,18 +6320,6 @@ "node": ">=0.10.0" } }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "dependencies": { - "mimic-response": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -6861,21 +6465,6 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, "node_modules/configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", @@ -6967,12 +6556,6 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "node_modules/copy-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/copy-dir/-/copy-dir-1.3.0.tgz", - "integrity": "sha512-Q4+qBFnN4bwGwvtXXzbp4P/4iNk0MaiGAzvQ8OiMtlLjkIKjmNN689uVzShSM0908q7GoFHXIPx4zi75ocoaHw==", - "dev": true - }, "node_modules/copy-webpack-plugin": { "version": "10.2.4", "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", @@ -7630,33 +7213,6 @@ "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", "dev": true }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/dedent": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", @@ -7695,32 +7251,6 @@ "node": ">=0.10.0" } }, - "node_modules/deepsignal": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/deepsignal/-/deepsignal-1.5.0.tgz", - "integrity": "sha512-bFywDpBUUWMs576H2dgLFLLFuQ/UWXbzHfKD98MZTfGsl7+twIzvz4ihCNrRrZ/Emz3kqJaNIAp5eBWUEWhnAw==", - "dev": true, - "peerDependencies": { - "@preact/signals": "^1.1.4", - "@preact/signals-core": "^1.5.1", - "@preact/signals-react": "^1.3.8 || ^2.0.0", - "preact": "^10.16.0" - }, - "peerDependenciesMeta": { - "@preact/signals": { - "optional": true - }, - "@preact/signals-core": { - "optional": true - }, - "@preact/signals-react": { - "optional": true - }, - "preact": { - "optional": true - } - } - }, "node_modules/default-gateway": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", @@ -7733,27 +7263,6 @@ "node": ">= 10" } }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, "node_modules/define-data-property": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", @@ -7966,27 +7475,6 @@ "node": ">=6" } }, - "node_modules/docker-compose": { - "version": "0.24.3", - "resolved": "https://registry.npmjs.org/docker-compose/-/docker-compose-0.24.3.tgz", - "integrity": "sha512-x3/QN3AIOMe7j2c8f/jcycizMft7dl8MluoB9OGPAYCyKHHiPUFqI9GjCcsU0kYy24vYKMCcfR6+5ZaEyQlrxg==", - "dev": true, - "dependencies": { - "yaml": "^2.2.2" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/docker-compose/node_modules/yaml": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", - "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", - "dev": true, - "engines": { - "node": ">= 14" - } - }, "node_modules/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", @@ -8199,16 +7687,6 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/envinfo": { "version": "7.11.1", "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.1.tgz", @@ -8907,51 +8385,6 @@ "node": "*" } }, - "node_modules/eslint-plugin-playwright": { - "version": "0.22.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-playwright/-/eslint-plugin-playwright-0.22.2.tgz", - "integrity": "sha512-LtOB9myIX1O7HHqg9vtvBLjvXq1MXKuXIcD1nS+qZiMUJV6s9HBdilURAr9pIFc9kEelbVF54hOJ8pMxHvJP7g==", - "dev": true, - "dependencies": { - "globals": "^13.23.0" - }, - "peerDependencies": { - "eslint": ">=7", - "eslint-plugin-jest": ">=25" - }, - "peerDependenciesMeta": { - "eslint-plugin-jest": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-playwright/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint-plugin-playwright/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/eslint-plugin-prettier": { "version": "5.1.3", "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", @@ -9553,62 +8986,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/external-editor/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extract-zip": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", - "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", - "dev": true, - "dependencies": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - } - }, - "node_modules/extract-zip/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/extract-zip/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -9715,30 +9092,6 @@ "pend": "~1.2.0" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -10391,31 +9744,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "dev": true, - "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=10.19.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -10649,12 +9977,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", @@ -10744,19 +10066,6 @@ } } }, - "node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "dev": true, - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -10971,30 +10280,6 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, - "node_modules/inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" - }, - "engines": { - "node": ">=8.0.0" - } - }, "node_modules/internal-slot": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", @@ -11285,15 +10570,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/is-map": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", @@ -13111,15 +12387,6 @@ "tslib": "^2.0.3" } }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/lru_map": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", @@ -13515,15 +12782,6 @@ "node": ">=6" } }, - "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", @@ -13668,13 +12926,6 @@ "node": ">=0.10.0" } }, - "node_modules/mitt": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", - "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", - "dev": true, - "peer": true - }, "node_modules/mixin-object": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", @@ -13697,18 +12948,6 @@ "node": ">=0.10.0" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, "node_modules/mkdirp-classic": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", @@ -13743,12 +12982,6 @@ "multicast-dns": "cli.js" } }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, "node_modules/nanoid": { "version": "3.3.7", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", @@ -13936,18 +13169,6 @@ "node": ">=0.10.0" } }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/npm-bundled": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", @@ -14313,161 +13534,25 @@ "node": ">= 0.8.0" } }, - "node_modules/ora": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", - "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.2.0", - "is-interactive": "^1.0.0", - "log-symbols": "^3.0.0", - "mute-stream": "0.0.8", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/ora/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/ora/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/ora/node_modules/log-symbols": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", - "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", - "dev": true, - "dependencies": { - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/log-symbols/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ora/node_modules/log-symbols/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ora/node_modules/log-symbols/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -14872,6 +13957,7 @@ "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.41.2.tgz", "integrity": "sha512-v0bOa6H2GJChDL8pAeLa/LZC4feoAMbSQm1/jF/ySsWWoaNItvrMP7GEkvEEFyCTUYKMxjQKaTSg5up7nR6/8A==", "dev": true, + "peer": true, "dependencies": { "playwright-core": "1.41.2" }, @@ -14907,6 +13993,7 @@ "os": [ "darwin" ], + "peer": true, "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -14916,6 +14003,7 @@ "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.41.2.tgz", "integrity": "sha512-VaTvwCA4Y8kxEe+kfm2+uUUw5Lubf38RxF7FpBxLPmGe5sdNkSg5e3ChEigaGrX7qdqT3pt2m/98LiyvU2x6CA==", "dev": true, + "peer": true, "bin": { "playwright-core": "cli.js" }, @@ -15576,16 +14664,6 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, - "node_modules/preact": { - "version": "10.19.3", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.19.3.tgz", - "integrity": "sha512-nHHTeFVBTHRGxJXKkKu5hT8C/YWBkPso4/Gad6xuj5dbptt9iF9NZr9pHbPhBrnT2klheu7mHTxTZ/LjwJiEiQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -15716,77 +14794,6 @@ "node": ">= 0.10" } }, - "node_modules/proxy-agent": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.1.tgz", - "integrity": "sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==", - "dev": true, - "peer": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "lru-cache": "^7.14.1", - "pac-proxy-agent": "^7.0.1", - "proxy-from-env": "^1.1.0", - "socks-proxy-agent": "^8.0.2" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, - "peer": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dev": true, - "peer": true, - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dev": true, - "peer": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - } - }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -15836,97 +14843,6 @@ "node": ">=6" } }, - "node_modules/puppeteer": { - "version": "22.0.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-22.0.0.tgz", - "integrity": "sha512-zYVnjwJngnSB4dbkWp7DHFSIc3nqHvZzrdHyo9+ugV1nq1Lm8obOMcmCFaGfR3PJs0EmYNz+/skBeO45yvASCQ==", - "dev": true, - "hasInstallScript": true, - "peer": true, - "dependencies": { - "@puppeteer/browsers": "2.0.0", - "cosmiconfig": "9.0.0", - "puppeteer-core": "22.0.0" - }, - "bin": { - "puppeteer": "lib/esm/puppeteer/node/cli.js" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/puppeteer-core": { - "version": "22.0.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.0.0.tgz", - "integrity": "sha512-S3s91rLde0A86PWVeNY82h+P0fdS7CTiNWAicCVH/bIspRP4nS2PnO5j+VTFqCah0ZJizGzpVPAmxVYbLxTc9w==", - "dev": true, - "peer": true, - "dependencies": { - "@puppeteer/browsers": "2.0.0", - "chromium-bidi": "0.5.8", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1232444", - "ws": "8.16.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/puppeteer-core/node_modules/devtools-protocol": { - "version": "0.0.1232444", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1232444.tgz", - "integrity": "sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==", - "dev": true, - "peer": true - }, - "node_modules/puppeteer/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "peer": true - }, - "node_modules/puppeteer/node_modules/cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", - "dev": true, - "peer": true, - "dependencies": { - "env-paths": "^2.2.1", - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/puppeteer/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "peer": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/pure-rand": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", @@ -15990,18 +14906,6 @@ "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", "dev": true }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -16448,12 +15352,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, "node_modules/resolve-bin": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/resolve-bin/-/resolve-bin-0.4.3.tgz", @@ -16506,31 +15404,6 @@ "node": ">=10" } }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dev": true, - "dependencies": { - "lowercase-keys": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -16574,15 +15447,6 @@ "node": ">=10.0.0" } }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, "node_modules/run-con": { "version": "1.2.12", "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz", @@ -16630,24 +15494,6 @@ "queue-microtask": "^1.2.2" } }, - "node_modules/rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", - "dev": true, - "dependencies": { - "tslib": "^1.9.0" - }, - "engines": { - "npm": ">=2.0.0" - } - }, - "node_modules/rxjs/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, "node_modules/safe-array-concat": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", @@ -17129,21 +15975,6 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/simple-git": { - "version": "3.22.0", - "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-3.22.0.tgz", - "integrity": "sha512-6JujwSs0ac82jkGjMHiCnTifvf1crOiY/+tfs/Pqih6iow7VrpNKRRNdWm6RtaXpvvv/JGNYhlUtLhGFqHF+Yw==", - "dev": true, - "dependencies": { - "@kwsites/file-exists": "^1.1.1", - "@kwsites/promise-deferred": "^1.1.1", - "debug": "^4.3.4" - }, - "funding": { - "type": "github", - "url": "https://github.com/steveukx/git-js?sponsor=1" - } - }, "node_modules/sirv": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", @@ -18070,22 +16901,6 @@ "streamx": "^2.15.0" } }, - "node_modules/terminal-link": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.27.0", "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", @@ -18252,18 +17067,6 @@ "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -18567,12 +17370,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -18797,13 +17594,6 @@ "requires-port": "^1.0.0" } }, - "node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", - "dev": true, - "peer": true - }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -18964,15 +17754,6 @@ "minimalistic-assert": "^1.0.0" } }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, "node_modules/web-vitals": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz",